2018-04-07 11:51:33 +00:00
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QHBoxLayout>
|
2018-08-27 08:50:40 +00:00
|
|
|
#include <QAction>
|
2018-04-17 13:13:32 +00:00
|
|
|
#include <QMenu>
|
|
|
|
#include <QWidgetAction>
|
2018-04-26 02:23:22 +00:00
|
|
|
#include <QColorDialog>
|
2018-05-10 09:16:22 +00:00
|
|
|
#include <QSizePolicy>
|
2018-10-09 02:19:12 +00:00
|
|
|
#include <QFileDialog>
|
2018-10-25 00:19:38 +00:00
|
|
|
#include "partwidget.h"
|
2018-04-07 08:44:39 +00:00
|
|
|
#include "theme.h"
|
2018-04-17 13:13:32 +00:00
|
|
|
#include "floatnumberwidget.h"
|
2018-10-09 02:19:12 +00:00
|
|
|
#include "materiallistwidget.h"
|
|
|
|
#include "infolabel.h"
|
2018-04-07 08:44:39 +00:00
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
PartWidget::PartWidget(const Document *document, QUuid partId) :
|
2018-04-07 08:44:39 +00:00
|
|
|
m_document(document),
|
|
|
|
m_partId(partId)
|
|
|
|
{
|
2018-05-10 09:16:22 +00:00
|
|
|
QSizePolicy retainSizePolicy = sizePolicy();
|
|
|
|
retainSizePolicy.setRetainSizeWhenHidden(true);
|
|
|
|
|
2018-04-08 01:30:55 +00:00
|
|
|
m_visibleButton = new QPushButton();
|
2018-05-10 09:16:22 +00:00
|
|
|
m_visibleButton->setSizePolicy(retainSizePolicy);
|
2018-04-08 01:30:55 +00:00
|
|
|
initButton(m_visibleButton);
|
2018-04-07 08:44:39 +00:00
|
|
|
|
2018-04-08 01:30:55 +00:00
|
|
|
m_lockButton = new QPushButton();
|
2018-05-10 09:16:22 +00:00
|
|
|
m_lockButton->setSizePolicy(retainSizePolicy);
|
2018-04-08 01:30:55 +00:00
|
|
|
initButton(m_lockButton);
|
2018-04-07 12:30:26 +00:00
|
|
|
|
2018-04-08 01:30:55 +00:00
|
|
|
m_subdivButton = new QPushButton();
|
2018-05-10 09:16:22 +00:00
|
|
|
m_subdivButton->setSizePolicy(retainSizePolicy);
|
2018-04-08 01:30:55 +00:00
|
|
|
initButton(m_subdivButton);
|
2018-04-07 12:30:26 +00:00
|
|
|
|
2018-04-11 09:19:27 +00:00
|
|
|
m_disableButton = new QPushButton();
|
2018-05-10 09:16:22 +00:00
|
|
|
m_disableButton->setSizePolicy(retainSizePolicy);
|
2018-04-11 09:19:27 +00:00
|
|
|
initButton(m_disableButton);
|
|
|
|
|
2018-04-15 12:11:51 +00:00
|
|
|
m_xMirrorButton = new QPushButton();
|
2018-05-10 09:16:22 +00:00
|
|
|
m_xMirrorButton->setSizePolicy(retainSizePolicy);
|
2018-04-15 12:11:51 +00:00
|
|
|
initButton(m_xMirrorButton);
|
|
|
|
|
2018-04-17 16:14:31 +00:00
|
|
|
m_deformButton = new QPushButton();
|
2018-05-10 09:16:22 +00:00
|
|
|
m_deformButton->setSizePolicy(retainSizePolicy);
|
2018-04-17 16:14:31 +00:00
|
|
|
initButton(m_deformButton);
|
2018-04-15 12:11:51 +00:00
|
|
|
|
2018-04-26 02:23:22 +00:00
|
|
|
m_roundButton = new QPushButton;
|
2018-05-10 09:16:22 +00:00
|
|
|
m_roundButton->setSizePolicy(retainSizePolicy);
|
2018-04-26 02:23:22 +00:00
|
|
|
initButton(m_roundButton);
|
|
|
|
|
|
|
|
m_colorButton = new QPushButton;
|
2018-05-10 09:16:22 +00:00
|
|
|
m_colorButton->setSizePolicy(retainSizePolicy);
|
2018-04-26 02:23:22 +00:00
|
|
|
initButton(m_colorButton);
|
|
|
|
|
2018-08-31 04:54:32 +00:00
|
|
|
m_wrapButton = new QPushButton;
|
|
|
|
m_wrapButton->setSizePolicy(retainSizePolicy);
|
|
|
|
initButton(m_wrapButton);
|
|
|
|
|
2018-09-18 06:22:29 +00:00
|
|
|
m_previewWidget = new ModelWidget;
|
2018-10-25 07:03:51 +00:00
|
|
|
m_previewWidget->setAttribute(Qt::WA_TransparentForMouseEvents);
|
2018-09-18 06:22:29 +00:00
|
|
|
m_previewWidget->enableMove(false);
|
|
|
|
m_previewWidget->enableZoom(false);
|
2018-09-21 07:10:18 +00:00
|
|
|
m_previewWidget->setFixedSize(Theme::partPreviewImageSize, Theme::partPreviewImageSize);
|
2018-04-07 08:44:39 +00:00
|
|
|
|
2018-04-23 00:10:01 +00:00
|
|
|
QWidget *hrLightWidget = new QWidget;
|
|
|
|
hrLightWidget->setFixedHeight(1);
|
|
|
|
hrLightWidget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
2018-05-10 09:16:22 +00:00
|
|
|
//hrLightWidget->setStyleSheet(QString("background-color: #565656;"));
|
2018-04-23 00:10:01 +00:00
|
|
|
hrLightWidget->setContentsMargins(0, 0, 0, 0);
|
|
|
|
|
2018-04-08 01:30:55 +00:00
|
|
|
QWidget *hrWidget = new QWidget;
|
|
|
|
hrWidget->setFixedHeight(1);
|
|
|
|
hrWidget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
2018-05-10 09:16:22 +00:00
|
|
|
//hrWidget->setStyleSheet(QString("background-color: #1a1a1a;"));
|
2018-04-08 01:30:55 +00:00
|
|
|
hrWidget->setContentsMargins(0, 0, 0, 0);
|
|
|
|
|
2018-08-27 08:50:40 +00:00
|
|
|
QGridLayout *toolsLayout = new QGridLayout;
|
2018-04-23 00:10:01 +00:00
|
|
|
toolsLayout->setSpacing(0);
|
2018-08-27 08:50:40 +00:00
|
|
|
toolsLayout->setContentsMargins(0, 0, 5, 0);
|
|
|
|
int row = 0;
|
|
|
|
int col = 0;
|
|
|
|
toolsLayout->addWidget(m_lockButton, row, col++, Qt::AlignBottom);
|
|
|
|
toolsLayout->addWidget(m_disableButton, row, col++, Qt::AlignBottom);
|
2018-08-31 04:54:32 +00:00
|
|
|
toolsLayout->addWidget(m_wrapButton, row, col++, Qt::AlignBottom);
|
2018-08-27 08:50:40 +00:00
|
|
|
toolsLayout->addWidget(m_colorButton, row, col++, Qt::AlignBottom);
|
|
|
|
row++;
|
|
|
|
col = 0;
|
|
|
|
toolsLayout->addWidget(m_subdivButton, row, col++, Qt::AlignTop);
|
|
|
|
toolsLayout->addWidget(m_deformButton, row, col++, Qt::AlignTop);
|
|
|
|
toolsLayout->addWidget(m_xMirrorButton, row, col++, Qt::AlignTop);
|
|
|
|
toolsLayout->addWidget(m_roundButton, row, col++, Qt::AlignTop);
|
|
|
|
|
2018-08-31 04:54:32 +00:00
|
|
|
m_visibleButton->setContentsMargins(0, 0, 0, 0);
|
|
|
|
|
2018-08-27 08:50:40 +00:00
|
|
|
QHBoxLayout *previewAndToolsLayout = new QHBoxLayout;
|
|
|
|
previewAndToolsLayout->setSpacing(0);
|
|
|
|
previewAndToolsLayout->setContentsMargins(0, 0, 0, 0);
|
2018-08-31 04:54:32 +00:00
|
|
|
previewAndToolsLayout->addWidget(m_visibleButton);
|
2018-09-18 06:22:29 +00:00
|
|
|
previewAndToolsLayout->addWidget(m_previewWidget);
|
2018-08-27 08:50:40 +00:00
|
|
|
previewAndToolsLayout->addLayout(toolsLayout);
|
|
|
|
previewAndToolsLayout->setStretch(0, 0);
|
|
|
|
previewAndToolsLayout->setStretch(1, 0);
|
2018-08-31 04:54:32 +00:00
|
|
|
previewAndToolsLayout->setStretch(2, 1);
|
2018-04-23 00:10:01 +00:00
|
|
|
|
|
|
|
QWidget *backgroundWidget = new QWidget;
|
2018-08-27 08:50:40 +00:00
|
|
|
backgroundWidget->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
|
2018-09-21 07:10:18 +00:00
|
|
|
backgroundWidget->setFixedSize(preferredSize().width(), Theme::partPreviewImageSize);
|
2018-04-23 00:10:01 +00:00
|
|
|
backgroundWidget->setObjectName("background");
|
|
|
|
m_backgroundWidget = backgroundWidget;
|
2018-08-27 08:50:40 +00:00
|
|
|
backgroundWidget->setLayout(previewAndToolsLayout);
|
2018-04-23 00:10:01 +00:00
|
|
|
|
|
|
|
QHBoxLayout *backgroundLayout = new QHBoxLayout;
|
|
|
|
backgroundLayout->setSpacing(0);
|
2018-08-27 08:50:40 +00:00
|
|
|
backgroundLayout->setContentsMargins(0, 0, 0, 0);
|
2018-04-23 00:10:01 +00:00
|
|
|
backgroundLayout->addWidget(backgroundWidget);
|
2018-08-27 08:50:40 +00:00
|
|
|
backgroundLayout->addSpacing(10);
|
2018-04-23 00:10:01 +00:00
|
|
|
|
2018-04-07 11:51:33 +00:00
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout;
|
|
|
|
mainLayout->setSpacing(0);
|
|
|
|
mainLayout->setContentsMargins(0, 0, 0, 0);
|
2018-04-23 00:10:01 +00:00
|
|
|
mainLayout->addWidget(hrLightWidget);
|
|
|
|
mainLayout->addSpacing(3);
|
|
|
|
mainLayout->addLayout(backgroundLayout);
|
|
|
|
mainLayout->addSpacing(3);
|
2018-04-08 01:30:55 +00:00
|
|
|
mainLayout->addWidget(hrWidget);
|
2018-04-07 08:44:39 +00:00
|
|
|
|
|
|
|
setLayout(mainLayout);
|
2018-04-08 01:30:55 +00:00
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
connect(this, &PartWidget::setPartLockState, m_document, &Document::setPartLockState);
|
|
|
|
connect(this, &PartWidget::setPartVisibleState, m_document, &Document::setPartVisibleState);
|
|
|
|
connect(this, &PartWidget::setPartSubdivState, m_document, &Document::setPartSubdivState);
|
|
|
|
connect(this, &PartWidget::setPartDisableState, m_document, &Document::setPartDisableState);
|
|
|
|
connect(this, &PartWidget::setPartXmirrorState, m_document, &Document::setPartXmirrorState);
|
|
|
|
connect(this, &PartWidget::setPartDeformThickness, m_document, &Document::setPartDeformThickness);
|
|
|
|
connect(this, &PartWidget::setPartDeformWidth, m_document, &Document::setPartDeformWidth);
|
|
|
|
connect(this, &PartWidget::setPartRoundState, m_document, &Document::setPartRoundState);
|
|
|
|
connect(this, &PartWidget::setPartWrapState, m_document, &Document::setPartWrapState);
|
|
|
|
connect(this, &PartWidget::setPartColorState, m_document, &Document::setPartColorState);
|
|
|
|
connect(this, &PartWidget::setPartMaterialId, m_document, &Document::setPartMaterialId);
|
|
|
|
connect(this, &PartWidget::checkPart, m_document, &Document::checkPart);
|
|
|
|
connect(this, &PartWidget::enableBackgroundBlur, m_document, &Document::enableBackgroundBlur);
|
|
|
|
connect(this, &PartWidget::disableBackgroundBlur, m_document, &Document::disableBackgroundBlur);
|
|
|
|
|
|
|
|
connect(this, &PartWidget::groupOperationAdded, m_document, &Document::saveSnapshot);
|
2018-04-18 02:37:50 +00:00
|
|
|
|
2018-04-08 01:30:55 +00:00
|
|
|
connect(m_lockButton, &QPushButton::clicked, [=]() {
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-15 12:11:51 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
2018-04-08 01:30:55 +00:00
|
|
|
}
|
2018-04-15 12:11:51 +00:00
|
|
|
emit setPartLockState(m_partId, !part->locked);
|
2018-08-31 12:19:56 +00:00
|
|
|
emit groupOperationAdded();
|
2018-04-08 01:30:55 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
connect(m_visibleButton, &QPushButton::clicked, [=]() {
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-15 12:11:51 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
2018-04-08 01:30:55 +00:00
|
|
|
}
|
2018-04-15 12:11:51 +00:00
|
|
|
emit setPartVisibleState(m_partId, !part->visible);
|
2018-08-31 12:19:56 +00:00
|
|
|
emit groupOperationAdded();
|
2018-04-08 01:30:55 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
connect(m_subdivButton, &QPushButton::clicked, [=]() {
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-15 12:11:51 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
2018-04-08 01:30:55 +00:00
|
|
|
}
|
2018-04-15 12:11:51 +00:00
|
|
|
emit setPartSubdivState(m_partId, !part->subdived);
|
2018-04-18 02:37:50 +00:00
|
|
|
emit groupOperationAdded();
|
2018-04-08 01:30:55 +00:00
|
|
|
});
|
2018-04-11 09:19:27 +00:00
|
|
|
|
|
|
|
connect(m_disableButton, &QPushButton::clicked, [=]() {
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-15 12:11:51 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
emit setPartDisableState(m_partId, !part->disabled);
|
2018-04-18 02:37:50 +00:00
|
|
|
emit groupOperationAdded();
|
2018-04-15 12:11:51 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
connect(m_xMirrorButton, &QPushButton::clicked, [=]() {
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-15 12:11:51 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
2018-04-11 09:19:27 +00:00
|
|
|
}
|
2018-04-15 12:11:51 +00:00
|
|
|
emit setPartXmirrorState(m_partId, !part->xMirrored);
|
2018-04-18 02:37:50 +00:00
|
|
|
emit groupOperationAdded();
|
2018-04-15 12:11:51 +00:00
|
|
|
});
|
|
|
|
|
2018-04-17 16:14:31 +00:00
|
|
|
connect(m_deformButton, &QPushButton::clicked, [=]() {
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-15 12:11:51 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
2018-04-17 16:14:31 +00:00
|
|
|
showDeformSettingPopup(mapFromGlobal(QCursor::pos()));
|
2018-04-26 02:23:22 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
connect(m_roundButton, &QPushButton::clicked, [=]() {
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-26 02:23:22 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
emit setPartRoundState(m_partId, !part->rounded);
|
2018-04-18 02:37:50 +00:00
|
|
|
emit groupOperationAdded();
|
2018-04-11 09:19:27 +00:00
|
|
|
});
|
2018-04-26 02:23:22 +00:00
|
|
|
|
|
|
|
connect(m_colorButton, &QPushButton::clicked, [=]() {
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-26 02:23:22 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
showColorSettingPopup(mapFromGlobal(QCursor::pos()));
|
|
|
|
});
|
|
|
|
|
2018-08-31 04:54:32 +00:00
|
|
|
connect(m_wrapButton, &QPushButton::clicked, [=]() {
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-08-31 04:54:32 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
emit setPartWrapState(m_partId, !part->wrapped);
|
|
|
|
emit groupOperationAdded();
|
|
|
|
});
|
|
|
|
|
2018-08-27 08:50:40 +00:00
|
|
|
setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
|
|
|
|
setFixedSize(preferredSize());
|
2018-05-10 09:16:22 +00:00
|
|
|
|
|
|
|
updateAllButtons();
|
2018-08-27 08:50:40 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
ModelWidget *PartWidget::previewWidget()
|
2018-09-18 06:22:29 +00:00
|
|
|
{
|
|
|
|
return m_previewWidget;
|
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
QSize PartWidget::preferredSize()
|
2018-08-27 08:50:40 +00:00
|
|
|
{
|
2018-09-21 07:10:18 +00:00
|
|
|
return QSize(Theme::miniIconSize + Theme::partPreviewImageSize + Theme::miniIconSize * 4 + 5 + 2, Theme::partPreviewImageSize + 6);
|
2018-05-10 09:16:22 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::updateAllButtons()
|
2018-05-10 09:16:22 +00:00
|
|
|
{
|
|
|
|
updateVisibleButton();
|
|
|
|
updateLockButton();
|
|
|
|
updateSubdivButton();
|
|
|
|
updateDisableButton();
|
|
|
|
updateXmirrorButton();
|
|
|
|
updateDeformButton();
|
|
|
|
updateRoundButton();
|
|
|
|
updateColorButton();
|
2018-08-31 04:54:32 +00:00
|
|
|
updateWrapButton();
|
2018-04-26 02:23:22 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::updateCheckedState(bool checked)
|
2018-04-23 00:10:01 +00:00
|
|
|
{
|
|
|
|
if (checked)
|
2018-09-07 10:13:55 +00:00
|
|
|
m_backgroundWidget->setStyleSheet("QWidget#background {border: 1px solid " + Theme::red.name() + ";}");
|
2018-04-23 00:10:01 +00:00
|
|
|
else
|
|
|
|
m_backgroundWidget->setStyleSheet("QWidget#background {border: 1px solid transparent;}");
|
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::mouseDoubleClickEvent(QMouseEvent *event)
|
2018-04-18 01:49:23 +00:00
|
|
|
{
|
|
|
|
QWidget::mouseDoubleClickEvent(event);
|
|
|
|
emit checkPart(m_partId);
|
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::initToolButtonWithoutFont(QPushButton *button)
|
2018-04-17 16:14:31 +00:00
|
|
|
{
|
2018-09-06 15:04:59 +00:00
|
|
|
Theme::initAwesomeToolButtonWithoutFont(button);
|
2018-04-17 16:14:31 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::initToolButton(QPushButton *button)
|
2018-04-26 02:23:22 +00:00
|
|
|
{
|
2018-09-06 15:04:59 +00:00
|
|
|
Theme::initAwesomeToolButton(button);
|
2018-04-26 02:23:22 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::showColorSettingPopup(const QPoint &pos)
|
2018-04-26 02:23:22 +00:00
|
|
|
{
|
|
|
|
QMenu popupMenu;
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-26 02:23:22 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Find part failed:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget *popup = new QWidget;
|
|
|
|
|
|
|
|
QPushButton *colorEraser = new QPushButton(QChar(fa::eraser));
|
|
|
|
initToolButton(colorEraser);
|
|
|
|
|
|
|
|
QPushButton *pickButton = new QPushButton();
|
|
|
|
initToolButtonWithoutFont(pickButton);
|
|
|
|
QPalette palette = pickButton->palette();
|
|
|
|
QColor choosenColor = part->hasColor ? part->color : Theme::white;
|
|
|
|
palette.setColor(QPalette::Window, choosenColor);
|
|
|
|
palette.setColor(QPalette::Button, choosenColor);
|
|
|
|
pickButton->setPalette(palette);
|
|
|
|
|
2018-10-04 12:51:01 +00:00
|
|
|
QHBoxLayout *colorLayout = new QHBoxLayout;
|
|
|
|
colorLayout->addWidget(colorEraser);
|
|
|
|
colorLayout->addWidget(pickButton);
|
|
|
|
colorLayout->addStretch();
|
2018-04-26 02:23:22 +00:00
|
|
|
|
|
|
|
connect(colorEraser, &QPushButton::clicked, [=]() {
|
|
|
|
emit setPartColorState(m_partId, false, Theme::white);
|
2018-08-31 12:19:56 +00:00
|
|
|
emit groupOperationAdded();
|
2018-04-26 02:23:22 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
connect(pickButton, &QPushButton::clicked, [=]() {
|
|
|
|
emit disableBackgroundBlur();
|
|
|
|
QColor color = QColorDialog::getColor(part->color, this);
|
|
|
|
emit enableBackgroundBlur();
|
|
|
|
if(color.isValid()) {
|
|
|
|
emit setPartColorState(m_partId, true, color);
|
2018-08-31 12:19:56 +00:00
|
|
|
emit groupOperationAdded();
|
2018-04-26 02:23:22 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-10-04 12:51:01 +00:00
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout;
|
|
|
|
mainLayout->addLayout(colorLayout);
|
2018-10-09 02:19:12 +00:00
|
|
|
|
|
|
|
if (m_document->materialIdList.empty()) {
|
|
|
|
InfoLabel *infoLabel = new InfoLabel;
|
|
|
|
infoLabel->setText(tr("Missing Materials"));
|
|
|
|
mainLayout->addWidget(infoLabel);
|
|
|
|
} else {
|
|
|
|
MaterialListWidget *materialListWidget = new MaterialListWidget(m_document);
|
|
|
|
materialListWidget->enableMultipleSelection(false);
|
|
|
|
materialListWidget->selectMaterial(part->materialId);
|
|
|
|
connect(materialListWidget, &MaterialListWidget::currentSelectedMaterialChanged, this, [=](QUuid materialId) {
|
|
|
|
emit setPartMaterialId(m_partId, materialId);
|
|
|
|
emit groupOperationAdded();
|
|
|
|
});
|
|
|
|
mainLayout->addWidget(materialListWidget);
|
|
|
|
}
|
2018-10-04 12:51:01 +00:00
|
|
|
|
|
|
|
popup->setLayout(mainLayout);
|
2018-04-26 02:23:22 +00:00
|
|
|
|
|
|
|
QWidgetAction *action = new QWidgetAction(this);
|
|
|
|
action->setDefaultWidget(popup);
|
|
|
|
|
|
|
|
popupMenu.addAction(action);
|
|
|
|
|
|
|
|
popupMenu.exec(mapToGlobal(pos));
|
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::showDeformSettingPopup(const QPoint &pos)
|
2018-04-17 13:13:32 +00:00
|
|
|
{
|
|
|
|
QMenu popupMenu;
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-17 13:13:32 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Find part failed:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-17 16:14:31 +00:00
|
|
|
QWidget *popup = new QWidget;
|
|
|
|
|
|
|
|
FloatNumberWidget *thicknessWidget = new FloatNumberWidget;
|
2018-09-06 15:04:59 +00:00
|
|
|
thicknessWidget->setItemName(tr("Thickness"));
|
2018-04-17 16:14:31 +00:00
|
|
|
thicknessWidget->setRange(0, 2);
|
|
|
|
thicknessWidget->setValue(part->deformThickness);
|
|
|
|
|
|
|
|
connect(thicknessWidget, &FloatNumberWidget::valueChanged, [=](float value) {
|
|
|
|
emit setPartDeformThickness(m_partId, value);
|
2018-09-06 15:04:59 +00:00
|
|
|
emit groupOperationAdded();
|
2018-04-17 16:14:31 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
FloatNumberWidget *widthWidget = new FloatNumberWidget;
|
2018-09-06 15:04:59 +00:00
|
|
|
widthWidget->setItemName(tr("Width"));
|
2018-04-17 16:14:31 +00:00
|
|
|
widthWidget->setRange(0, 2);
|
|
|
|
widthWidget->setValue(part->deformWidth);
|
2018-04-17 13:13:32 +00:00
|
|
|
|
2018-04-17 16:14:31 +00:00
|
|
|
connect(widthWidget, &FloatNumberWidget::valueChanged, [=](float value) {
|
|
|
|
emit setPartDeformWidth(m_partId, value);
|
2018-08-31 12:19:56 +00:00
|
|
|
emit groupOperationAdded();
|
2018-04-17 13:13:32 +00:00
|
|
|
});
|
|
|
|
|
2018-04-17 16:14:31 +00:00
|
|
|
QPushButton *thicknessEraser = new QPushButton(QChar(fa::eraser));
|
|
|
|
initToolButton(thicknessEraser);
|
|
|
|
|
|
|
|
connect(thicknessEraser, &QPushButton::clicked, [=]() {
|
|
|
|
thicknessWidget->setValue(1.0);
|
2018-09-06 15:04:59 +00:00
|
|
|
emit groupOperationAdded();
|
2018-04-17 16:14:31 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
QPushButton *widthEraser = new QPushButton(QChar(fa::eraser));
|
|
|
|
initToolButton(widthEraser);
|
|
|
|
|
|
|
|
connect(widthEraser, &QPushButton::clicked, [=]() {
|
|
|
|
widthWidget->setValue(1.0);
|
2018-09-06 15:04:59 +00:00
|
|
|
emit groupOperationAdded();
|
2018-04-17 16:14:31 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout;
|
|
|
|
QHBoxLayout *thicknessLayout = new QHBoxLayout;
|
|
|
|
QHBoxLayout *widthLayout = new QHBoxLayout;
|
|
|
|
thicknessLayout->addWidget(thicknessEraser);
|
|
|
|
thicknessLayout->addWidget(thicknessWidget);
|
|
|
|
widthLayout->addWidget(widthEraser);
|
|
|
|
widthLayout->addWidget(widthWidget);
|
|
|
|
layout->addLayout(thicknessLayout);
|
|
|
|
layout->addLayout(widthLayout);
|
|
|
|
|
|
|
|
popup->setLayout(layout);
|
|
|
|
|
2018-09-06 15:04:59 +00:00
|
|
|
QWidgetAction action(this);
|
|
|
|
action.setDefaultWidget(popup);
|
2018-04-17 13:13:32 +00:00
|
|
|
|
2018-09-06 15:04:59 +00:00
|
|
|
popupMenu.addAction(&action);
|
2018-04-17 13:13:32 +00:00
|
|
|
|
|
|
|
popupMenu.exec(mapToGlobal(pos));
|
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::initButton(QPushButton *button)
|
2018-04-07 08:44:39 +00:00
|
|
|
{
|
2018-09-06 15:04:59 +00:00
|
|
|
Theme::initAwesomeMiniButton(button);
|
2018-04-07 08:44:39 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::updateButton(QPushButton *button, QChar icon, bool highlighted)
|
2018-04-08 01:30:55 +00:00
|
|
|
{
|
2018-09-06 15:04:59 +00:00
|
|
|
Theme::updateAwesomeMiniButton(button, icon, highlighted);
|
2018-04-08 01:30:55 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::updatePreview()
|
2018-04-07 08:44:39 +00:00
|
|
|
{
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-07 08:44:39 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
2018-09-18 06:22:29 +00:00
|
|
|
//m_previewLabel->setPixmap(QPixmap::fromImage(part->preview));
|
|
|
|
MeshLoader *previewMesh = part->takePreviewMesh();
|
|
|
|
m_previewWidget->updateMesh(previewMesh);
|
2018-04-07 08:44:39 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::updateLockButton()
|
2018-04-08 01:30:55 +00:00
|
|
|
{
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-08 01:30:55 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (part->locked)
|
|
|
|
updateButton(m_lockButton, QChar(fa::lock), true);
|
|
|
|
else
|
|
|
|
updateButton(m_lockButton, QChar(fa::unlock), false);
|
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::updateVisibleButton()
|
2018-04-08 01:30:55 +00:00
|
|
|
{
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-08 01:30:55 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (part->visible)
|
|
|
|
updateButton(m_visibleButton, QChar(fa::eye), false);
|
|
|
|
else
|
|
|
|
updateButton(m_visibleButton, QChar(fa::eyeslash), true);
|
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::updateSubdivButton()
|
2018-04-08 01:30:55 +00:00
|
|
|
{
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-08 01:30:55 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (part->subdived)
|
2018-04-23 00:10:01 +00:00
|
|
|
updateButton(m_subdivButton, QChar(fa::circleo), true);
|
2018-04-08 01:30:55 +00:00
|
|
|
else
|
2018-04-23 00:10:01 +00:00
|
|
|
updateButton(m_subdivButton, QChar(fa::squareo), false);
|
2018-04-08 01:30:55 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::updateDisableButton()
|
2018-04-11 09:19:27 +00:00
|
|
|
{
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-11 09:19:27 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (part->disabled)
|
|
|
|
updateButton(m_disableButton, QChar(fa::unlink), true);
|
|
|
|
else
|
|
|
|
updateButton(m_disableButton, QChar(fa::link), false);
|
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::updateXmirrorButton()
|
2018-04-15 12:11:51 +00:00
|
|
|
{
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-15 12:11:51 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (part->xMirrored)
|
2018-04-16 12:06:48 +00:00
|
|
|
updateButton(m_xMirrorButton, QChar(fa::balancescale), true);
|
2018-04-15 12:11:51 +00:00
|
|
|
else
|
2018-04-16 12:06:48 +00:00
|
|
|
updateButton(m_xMirrorButton, QChar(fa::balancescale), false);
|
2018-04-15 12:11:51 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::updateDeformButton()
|
2018-04-15 12:11:51 +00:00
|
|
|
{
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-15 12:11:51 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
2018-04-17 16:14:31 +00:00
|
|
|
if (part->deformAdjusted())
|
|
|
|
updateButton(m_deformButton, QChar(fa::handlizardo), true);
|
2018-04-15 12:11:51 +00:00
|
|
|
else
|
2018-04-17 16:14:31 +00:00
|
|
|
updateButton(m_deformButton, QChar(fa::handlizardo), false);
|
2018-04-15 12:11:51 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::updateRoundButton()
|
2018-04-26 02:23:22 +00:00
|
|
|
{
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-26 02:23:22 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (part->rounded)
|
|
|
|
updateButton(m_roundButton, QChar(fa::magnet), true);
|
|
|
|
else
|
|
|
|
updateButton(m_roundButton, QChar(fa::magnet), false);
|
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::updateColorButton()
|
2018-04-26 02:23:22 +00:00
|
|
|
{
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-04-26 02:23:22 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
2018-10-04 12:51:01 +00:00
|
|
|
if (part->hasColor || part->materialAdjusted())
|
2018-04-26 02:23:22 +00:00
|
|
|
updateButton(m_colorButton, QChar(fa::eyedropper), true);
|
|
|
|
else
|
|
|
|
updateButton(m_colorButton, QChar(fa::eyedropper), false);
|
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::updateWrapButton()
|
2018-08-31 04:54:32 +00:00
|
|
|
{
|
2018-10-25 00:19:38 +00:00
|
|
|
const Part *part = m_document->findPart(m_partId);
|
2018-08-31 04:54:32 +00:00
|
|
|
if (!part) {
|
|
|
|
qDebug() << "Part not found:" << m_partId;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (part->wrapped)
|
|
|
|
updateButton(m_wrapButton, QChar(fa::cube), true);
|
|
|
|
else
|
|
|
|
updateButton(m_wrapButton, QChar(fa::cube), false);
|
|
|
|
}
|
|
|
|
|
2018-10-25 00:19:38 +00:00
|
|
|
void PartWidget::reload()
|
2018-04-08 01:30:55 +00:00
|
|
|
{
|
|
|
|
updatePreview();
|
2018-08-31 04:54:32 +00:00
|
|
|
updateAllButtons();
|
2018-04-08 01:30:55 +00:00
|
|
|
}
|