220 lines
9.3 KiB
C++
220 lines
9.3 KiB
C++
#include <QVBoxLayout>
|
|
#include <QWidgetAction>
|
|
#include <QMenu>
|
|
#include "part_manage_widget.h"
|
|
#include "component_preview_grid_widget.h"
|
|
#include "component_property_widget.h"
|
|
#include "component_list_model.h"
|
|
#include "theme.h"
|
|
#include "document.h"
|
|
|
|
PartManageWidget::PartManageWidget(Document *document, QWidget *parent):
|
|
QWidget(parent),
|
|
m_document(document)
|
|
{
|
|
QHBoxLayout *toolsLayout = new QHBoxLayout;
|
|
toolsLayout->setSpacing(0);
|
|
toolsLayout->setMargin(0);
|
|
|
|
setStyleSheet("QPushButton:disabled {border: 0; color: " + Theme::gray.name() + "}");
|
|
|
|
auto createButton = [](QChar icon, const QString &title) {
|
|
QPushButton *button = new QPushButton(icon);
|
|
button->setFixedSize(Theme::toolIconSize, Theme::toolIconSize);
|
|
button->setToolTip(title);
|
|
return button;
|
|
};
|
|
|
|
m_levelUpButton = createButton(QChar(fa::levelup), tr("Go level up"));
|
|
m_selectButton = createButton(QChar(fa::objectgroup), tr("Select them on canvas"));
|
|
m_lockButton = createButton(QChar(fa::lock), tr("Lock them on canvas"));
|
|
m_unlockButton = createButton(QChar(fa::unlock), tr("Unlock them on canvas"));
|
|
m_showButton = createButton(QChar(fa::eye), tr("Show them on canvas"));
|
|
m_hideButton = createButton(QChar(fa::eyeslash), tr("Hide them on canvas"));
|
|
m_unlinkButton = createButton(QChar(fa::unlink), tr("Exclude them from result generation"));
|
|
m_linkButton = createButton(QChar(fa::link), tr("Include them in result generation"));
|
|
m_propertyButton = createButton(QChar(fa::sliders), tr("Configure properties"));
|
|
|
|
toolsLayout->addWidget(m_levelUpButton);
|
|
toolsLayout->addWidget(m_selectButton);
|
|
toolsLayout->addWidget(m_hideButton);
|
|
toolsLayout->addWidget(m_showButton);
|
|
toolsLayout->addWidget(m_lockButton);
|
|
toolsLayout->addWidget(m_unlockButton);
|
|
toolsLayout->addWidget(m_unlinkButton);
|
|
toolsLayout->addWidget(m_linkButton);
|
|
toolsLayout->addWidget(m_propertyButton);
|
|
toolsLayout->addStretch();
|
|
|
|
m_componentPreviewGridWidget = new ComponentPreviewGridWidget(document);
|
|
|
|
connect(m_componentPreviewGridWidget->selectionModel(), &QItemSelectionModel::selectionChanged, this, &PartManageWidget::updateToolButtons);
|
|
connect(m_componentPreviewGridWidget->componentListModel(), &ComponentListModel::listingComponentChanged, this, &PartManageWidget::updateLevelUpButton);
|
|
connect(m_componentPreviewGridWidget, &ComponentPreviewGridWidget::unselectAllOnCanvas, this, &PartManageWidget::unselectAllOnCanvas);
|
|
connect(m_componentPreviewGridWidget, &ComponentPreviewGridWidget::selectPartOnCanvas, this, &PartManageWidget::selectPartOnCanvas);
|
|
|
|
//connect(m_componentPreviewGridWidget->selectionModel(), &QItemSelectionModel::selectionChanged, this, &PartManageWidget::showSelectedComponentProperties);
|
|
|
|
connect(m_levelUpButton, &QPushButton::clicked, [this]() {
|
|
const auto &parent = m_document->findComponentParent(this->m_componentPreviewGridWidget->componentListModel()->listingComponentId());
|
|
if (nullptr == parent)
|
|
return;
|
|
this->m_componentPreviewGridWidget->componentListModel()->setListingComponentId(parent->id);
|
|
});
|
|
|
|
connect(m_hideButton, &QPushButton::clicked, [this]() {
|
|
for (const auto &partId: this->m_componentPreviewGridWidget->getSelectedPartIds())
|
|
this->m_document->setPartVisibleState(partId, false);
|
|
this->m_document->saveSnapshot();
|
|
});
|
|
connect(m_showButton, &QPushButton::clicked, [this]() {
|
|
for (const auto &partId: this->m_componentPreviewGridWidget->getSelectedPartIds())
|
|
this->m_document->setPartVisibleState(partId, true);
|
|
this->m_document->saveSnapshot();
|
|
});
|
|
|
|
connect(m_unlockButton, &QPushButton::clicked, [this]() {
|
|
for (const auto &partId: this->m_componentPreviewGridWidget->getSelectedPartIds())
|
|
this->m_document->setPartLockState(partId, false);
|
|
this->m_document->saveSnapshot();
|
|
});
|
|
connect(m_lockButton, &QPushButton::clicked, [this]() {
|
|
for (const auto &partId: this->m_componentPreviewGridWidget->getSelectedPartIds())
|
|
this->m_document->setPartLockState(partId, true);
|
|
this->m_document->saveSnapshot();
|
|
});
|
|
|
|
connect(m_unlinkButton, &QPushButton::clicked, [this]() {
|
|
for (const auto &partId: this->m_componentPreviewGridWidget->getSelectedPartIds())
|
|
this->m_document->setPartDisableState(partId, true);
|
|
this->m_document->saveSnapshot();
|
|
});
|
|
connect(m_linkButton, &QPushButton::clicked, [this]() {
|
|
for (const auto &partId: this->m_componentPreviewGridWidget->getSelectedPartIds())
|
|
this->m_document->setPartDisableState(partId, false);
|
|
this->m_document->saveSnapshot();
|
|
});
|
|
|
|
connect(m_selectButton, &QPushButton::clicked, [this]() {
|
|
for (const auto &componentId: this->m_componentPreviewGridWidget->getSelectedComponentIds()) {
|
|
std::vector<dust3d::Uuid> partIds;
|
|
this->m_document->collectComponentDescendantParts(componentId, partIds);
|
|
for (const auto &partId: partIds)
|
|
emit this->selectPartOnCanvas(partId);
|
|
}
|
|
});
|
|
|
|
connect(m_propertyButton, &QPushButton::clicked, this, &PartManageWidget::showSelectedComponentProperties);
|
|
|
|
connect(m_document, &Document::partLockStateChanged, this, &PartManageWidget::updateToolButtons);
|
|
connect(m_document, &Document::partVisibleStateChanged, this, &PartManageWidget::updateToolButtons);
|
|
connect(m_document, &Document::partDisableStateChanged, this, &PartManageWidget::updateToolButtons);
|
|
connect(m_document, &Document::componentChildrenChanged, this, &PartManageWidget::updateToolButtons);
|
|
|
|
QVBoxLayout *mainLayout = new QVBoxLayout;
|
|
mainLayout->addLayout(toolsLayout);
|
|
mainLayout->addWidget(m_componentPreviewGridWidget);
|
|
|
|
setLayout(mainLayout);
|
|
|
|
updateToolButtons();
|
|
updateLevelUpButton();
|
|
}
|
|
|
|
void PartManageWidget::showSelectedComponentProperties()
|
|
{
|
|
auto componentIds = m_componentPreviewGridWidget->getSelectedComponentIds();
|
|
if (componentIds.empty())
|
|
return;
|
|
|
|
auto *propertyWidget = new ComponentPropertyWidget(m_document, componentIds);
|
|
|
|
auto menu = std::make_unique<QMenu>(this->parentWidget());
|
|
QWidgetAction *widgetAction = new QWidgetAction(menu.get());
|
|
widgetAction->setDefaultWidget(propertyWidget);
|
|
menu->addAction(widgetAction);
|
|
|
|
auto x = mapToGlobal(QPoint(0, 0)).x();
|
|
if (x <= 0)
|
|
x = QCursor::pos().x();
|
|
menu->exec(QPoint(
|
|
x - propertyWidget->width(),
|
|
QCursor::pos().y()
|
|
));
|
|
}
|
|
|
|
void PartManageWidget::selectComponentByPartId(const dust3d::Uuid &partId)
|
|
{
|
|
const auto &part = m_document->findPart(partId);
|
|
if (nullptr == part)
|
|
return;
|
|
auto componentId = part->componentId;
|
|
QModelIndex index = m_componentPreviewGridWidget->componentListModel()->componentIdToIndex(componentId);
|
|
if (index.isValid()) {
|
|
m_componentPreviewGridWidget->selectionModel()->select(index, QItemSelectionModel::ClearAndSelect);
|
|
m_componentPreviewGridWidget->scrollTo(index);
|
|
return;
|
|
}
|
|
const auto &component = m_document->findComponent(componentId);
|
|
if (nullptr == component)
|
|
return;
|
|
m_componentPreviewGridWidget->componentListModel()->setListingComponentId(component->parentId);
|
|
index = m_componentPreviewGridWidget->componentListModel()->componentIdToIndex(componentId);
|
|
if (index.isValid()) {
|
|
m_componentPreviewGridWidget->selectionModel()->select(index, QItemSelectionModel::ClearAndSelect);
|
|
m_componentPreviewGridWidget->scrollTo(index);
|
|
return;
|
|
}
|
|
dust3dDebug << "Unable to select component:" << componentId.toString();
|
|
}
|
|
|
|
void PartManageWidget::updateLevelUpButton()
|
|
{
|
|
const auto &parent = m_document->findComponentParent(m_componentPreviewGridWidget->componentListModel()->listingComponentId());
|
|
m_levelUpButton->setEnabled(nullptr != parent);
|
|
}
|
|
|
|
void PartManageWidget::updateToolButtons()
|
|
{
|
|
auto selectedComponents = m_componentPreviewGridWidget->getSelectedComponents();
|
|
bool enableHideButton = false;
|
|
bool enableSelectButton = false;
|
|
bool enableShowButton = false;
|
|
bool enableLockButton = false;
|
|
bool enableUnlockButton = false;
|
|
bool enableUnlinkButton = false;
|
|
bool enableLinkButton = false;
|
|
bool enablePropertyButton = false;
|
|
for (const auto &component: selectedComponents) {
|
|
enablePropertyButton = true;
|
|
enableSelectButton = true;
|
|
if (component->linkToPartId.isNull()) {
|
|
continue;
|
|
}
|
|
const auto &part = m_document->findPart(component->linkToPartId);
|
|
if (part->visible) {
|
|
enableHideButton = true;
|
|
} else {
|
|
enableShowButton = true;
|
|
}
|
|
if (part->locked) {
|
|
enableUnlockButton = true;
|
|
} else {
|
|
enableLockButton = true;
|
|
}
|
|
if (part->disabled) {
|
|
enableLinkButton = true;
|
|
} else {
|
|
enableUnlinkButton = true;
|
|
}
|
|
}
|
|
m_selectButton->setEnabled(enableSelectButton);
|
|
m_hideButton->setEnabled(enableHideButton);
|
|
m_showButton->setEnabled(enableShowButton);
|
|
m_lockButton->setEnabled(enableLockButton);
|
|
m_unlockButton->setEnabled(enableUnlockButton);
|
|
m_unlinkButton->setEnabled(enableUnlinkButton);
|
|
m_linkButton->setEnabled(enableLinkButton);
|
|
m_propertyButton->setEnabled(enablePropertyButton);
|
|
}
|