Tue, 07 Jun 2022 21:35:29 +0300
Move editing modes tool bar, tool options widget stack and model list view into the main window
#include "colorindexinput.h" #include "ui_colorindexinput.h" #include "colorselectdialog.h" #include "uiutilities.h" ColorIndexInput::ColorIndexInput(EditorTabWidget *document, ldraw::Color color, QWidget *parent) : QWidget{parent}, document{document}, ui{*new Ui_ColorIndexInput} { this->ui.setupUi(this); connect(this->ui.button, &QPushButton::clicked, [this]() { ColorSelectDialog dialog{this->document->colorTable, this->document}; const int result = dialog.exec(); if (result == QDialog::Accepted) { this->ui.index->setValue(dialog.currentColor().index); } }); connect(this->ui.index, qOverload<int>(&QSpinBox::valueChanged), [this](int value) { this->ui.button->setText(ldraw::colorDisplayName({value}, this->document->colorTable)); uiutilities::colorizeWidget(this->ui.button, ldraw::colorFace({value}, this->document->colorTable)); Q_EMIT this->colorChanged({value}); }); this->ui.index->setValue(color.index); } ColorIndexInput::~ColorIndexInput() { delete &this->ui; } ldraw::Color ColorIndexInput::selectedColor() const { return {this->ui.index->value()}; } void ColorIndexInput::setSelectedColor(ldraw::Color color) { this->ui.index->setValue(color.index); }