2022-10-08 01:05:53 +00:00
|
|
|
#ifndef DUST3D_APPLICATION_COMPONENT_PROPERTY_WIDGET_H_
|
|
|
|
#define DUST3D_APPLICATION_COMPONENT_PROPERTY_WIDGET_H_
|
|
|
|
|
|
|
|
#include <dust3d/base/uuid.h>
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
class Document;
|
2022-10-14 11:11:41 +00:00
|
|
|
class SkeletonPart;
|
2022-10-08 01:05:53 +00:00
|
|
|
|
|
|
|
class ComponentPropertyWidget: public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2022-10-08 03:46:57 +00:00
|
|
|
signals:
|
|
|
|
void beginColorPicking();
|
|
|
|
void endColorPicking();
|
|
|
|
void setPartColorState(const dust3d::Uuid &partId, bool hasColor, const QColor &color);
|
2022-10-14 11:11:41 +00:00
|
|
|
void setPartDeformThickness(const dust3d::Uuid &partId, float thickness);
|
|
|
|
void setPartDeformWidth(const dust3d::Uuid &partId, float width);
|
|
|
|
void setPartDeformUnified(const dust3d::Uuid &partId, bool unified);
|
2022-10-16 09:55:04 +00:00
|
|
|
void setPartSubdivState(const dust3d::Uuid &partId, bool subdived);
|
|
|
|
void setPartChamferState(const dust3d::Uuid &partId, bool chamfered);
|
2022-10-14 11:11:41 +00:00
|
|
|
void setPartCutRotation(const dust3d::Uuid &partId, float cutRotation);
|
2022-10-08 03:46:57 +00:00
|
|
|
void groupOperationAdded();
|
2022-10-08 01:05:53 +00:00
|
|
|
public:
|
2022-10-08 03:46:57 +00:00
|
|
|
ComponentPropertyWidget(Document *document,
|
|
|
|
const std::vector<dust3d::Uuid> &componentIds,
|
|
|
|
QWidget *parent=nullptr);
|
2022-10-08 01:05:53 +00:00
|
|
|
public slots:
|
2022-10-08 03:46:57 +00:00
|
|
|
void showColorDialog();
|
2022-10-08 01:05:53 +00:00
|
|
|
private:
|
|
|
|
Document *m_document = nullptr;
|
|
|
|
std::vector<dust3d::Uuid> m_componentIds;
|
2022-10-08 03:46:57 +00:00
|
|
|
std::vector<dust3d::Uuid> m_partIds;
|
2022-10-14 11:11:41 +00:00
|
|
|
dust3d::Uuid m_partId;
|
|
|
|
const SkeletonPart *m_part = nullptr;
|
2022-10-08 03:46:57 +00:00
|
|
|
QColor m_color;
|
|
|
|
QColor lastColor();
|
|
|
|
void preparePartIds();
|
2022-10-08 01:05:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|