58 lines
1.6 KiB
C++
58 lines
1.6 KiB
C++
#ifndef SKELETON_PART_LIST_WIDGET_H
|
|
#define SKELETON_PART_LIST_WIDGET_H
|
|
#include <QListWidget>
|
|
#include <map>
|
|
#include <QLabel>
|
|
#include <QPushButton>
|
|
#include "skeletondocument.h"
|
|
|
|
class SkeletonPartWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
signals:
|
|
void setPartLockState(QUuid partId, bool locked);
|
|
void setPartVisibleState(QUuid partId, bool visible);
|
|
void setPartSubdivState(QUuid partId, bool subdived);
|
|
void setPartDisableState(QUuid partId, bool disabled);
|
|
public:
|
|
SkeletonPartWidget(const SkeletonDocument *document, QUuid partId);
|
|
void reload();
|
|
void updatePreview();
|
|
void updateLockButton();
|
|
void updateVisibleButton();
|
|
void updateSubdivButton();
|
|
void updateDisableButton();
|
|
private:
|
|
const SkeletonDocument *m_document;
|
|
QUuid m_partId;
|
|
QLabel *m_previewLabel;
|
|
QPushButton *m_visibleButton;
|
|
QPushButton *m_lockButton;
|
|
QPushButton *m_subdivButton;
|
|
QPushButton *m_disableButton;
|
|
QLabel *m_nameLabel;
|
|
private:
|
|
void initButton(QPushButton *button);
|
|
void updateButton(QPushButton *button, QChar icon, bool highlighted);
|
|
};
|
|
|
|
class SkeletonPartListWidget : public QListWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SkeletonPartListWidget(const SkeletonDocument *document);
|
|
public slots:
|
|
void partChanged(QUuid partId);
|
|
void partListChanged();
|
|
void partPreviewChanged(QUuid partid);
|
|
void partLockStateChanged(QUuid partId);
|
|
void partVisibleStateChanged(QUuid partId);
|
|
void partSubdivStateChanged(QUuid partId);
|
|
void partDisableStateChanged(QUuid partId);
|
|
private:
|
|
const SkeletonDocument *m_document;
|
|
std::map<QUuid, QListWidgetItem *> m_itemMap;
|
|
};
|
|
|
|
#endif
|