ArchitectureColoredPainting/qt-material-widgets/examples/checkboxsettingseditor.cpp

113 lines
3.9 KiB
C++

#include "checkboxsettingseditor.h"
#include <QVBoxLayout>
#include <QColorDialog>
#include <qtmaterialcheckbox.h>
CheckBoxSettingsEditor::CheckBoxSettingsEditor(QWidget *parent)
: QWidget(parent),
ui(new Ui::CheckBoxSettingsForm),
m_checkBox(new QtMaterialCheckBox)
{
QVBoxLayout *layout = new QVBoxLayout;
setLayout(layout);
QWidget *widget = new QWidget;
layout->addWidget(widget);
QWidget *canvas = new QWidget;
canvas->setStyleSheet("QWidget { background: white; }");
layout->addWidget(canvas);
ui->setupUi(widget);
layout->setContentsMargins(20, 20, 20, 20);
m_checkBox->setText("Extra cheese");
m_checkBox->setChecked(true);
layout = new QVBoxLayout;
canvas->setLayout(layout);
layout->addWidget(m_checkBox);
layout->setAlignment(m_checkBox, Qt::AlignCenter);
setupForm();
connect(ui->disabledCheckBox, SIGNAL(toggled(bool)), this, SLOT(updateWidget()));
connect(ui->labelPositionComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(updateWidget()));
connect(ui->labelTextLineEdit, SIGNAL(textChanged(QString)), this, SLOT(updateWidget()));
connect(ui->useThemeColorsCheckBox, SIGNAL(toggled(bool)), this, SLOT(updateWidget()));
connect(ui->checkedCheckBox, SIGNAL(toggled(bool)), this, SLOT(updateWidget()));
connect(ui->textColorToolButton, SIGNAL(pressed()), this, SLOT(selectColor()));
connect(ui->disabledColorToolButton, SIGNAL(pressed()), this, SLOT(selectColor()));
connect(ui->checkedColorToolButton, SIGNAL(pressed()), this, SLOT(selectColor()));
connect(ui->uncheckedColorToolButton, SIGNAL(pressed()), this, SLOT(selectColor()));
connect(m_checkBox, SIGNAL(toggled(bool)), this, SLOT(setupForm()));
}
CheckBoxSettingsEditor::~CheckBoxSettingsEditor()
{
delete ui;
}
void CheckBoxSettingsEditor::setupForm()
{
switch (m_checkBox->labelPosition())
{
case QtMaterialCheckable::LabelPositionLeft:
ui->labelPositionComboBox->setCurrentIndex(0);
break;
case QtMaterialCheckable::LabelPositionRight:
ui->labelPositionComboBox->setCurrentIndex(1);
break;
default:
break;
}
ui->disabledCheckBox->setChecked(!m_checkBox->isEnabled());
ui->labelTextLineEdit->setText(m_checkBox->text());
ui->useThemeColorsCheckBox->setChecked(m_checkBox->useThemeColors());
ui->checkedCheckBox->setChecked(m_checkBox->isChecked());
}
void CheckBoxSettingsEditor::updateWidget()
{
switch (ui->labelPositionComboBox->currentIndex())
{
case 0:
m_checkBox->setLabelPosition(QtMaterialCheckable::LabelPositionLeft);
break;
case 1:
m_checkBox->setLabelPosition(QtMaterialCheckable::LabelPositionRight);
break;
default:
break;
}
m_checkBox->setDisabled(ui->disabledCheckBox->isChecked());
m_checkBox->setText(ui->labelTextLineEdit->text());
m_checkBox->setUseThemeColors(ui->useThemeColorsCheckBox->isChecked());
m_checkBox->setChecked(ui->checkedCheckBox->isChecked());
}
void CheckBoxSettingsEditor::selectColor()
{
QColorDialog dialog;
if (dialog.exec()) {
QColor color = dialog.selectedColor();
QString senderName = sender()->objectName();
if ("textColorToolButton" == senderName) {
m_checkBox->setTextColor(color);
ui->textColorLineEdit->setText(color.name(QColor::HexRgb));
} else if ("disabledColorToolButton" == senderName) {
m_checkBox->setDisabledColor(color);
ui->disabledColorLineEdit->setText(color.name(QColor::HexRgb));
} else if ("checkedColorToolButton" == senderName) {
m_checkBox->setCheckedColor(color);
ui->checkedColorLineEdit->setText(color.name(QColor::HexRgb));
} else if ("uncheckedColorToolButton" == senderName) {
m_checkBox->setUncheckedColor(color);
ui->uncheckedColorLineEdit->setText(color.name(QColor::HexRgb));
}
}
setupForm();
}