void Theme::setPrimaryColor(const QColor &primaryColor) { if (m_primaryColor!=primaryColor) { m_primaryColor = primaryColor; emit primaryColorChanged(); } }
void Theme::reloadTheme() { m_primaryColor = QColor(0,0,0); if (m_currentTheme==LightTheme) m_secondaryColor = QColor(255,0,0); else m_secondaryColor = QColor(0,255,0); emit primaryColorChanged(); emit secondaryColorChanged(); }
void ToolBar::initializeItems() { mCursorButton = createToolButton(mActMap[CURSOR]); mEraserButton = createToolButton(mActMap[ERASER]); mPenButton = createToolButton(mActMap[PEN]); mLineButton = createToolButton(mActMap[LINE]); mColorPickerButton = createToolButton(mActMap[COLORPICKER]); mMagnifierButton = createToolButton(mActMap[MAGNIFIER]); mSprayButton = createToolButton(mActMap[SPRAY]); mFillButton = createToolButton(mActMap[FILL]); mRectangleButton = createToolButton(mActMap[RECTANGLE]); mEllipseButton = createToolButton(mActMap[ELLIPSE]); mCurveButton = createToolButton(mActMap[CURVELINE]); mTextButton = createToolButton(mActMap[TEXT]); QGridLayout *bLayout = new QGridLayout(); bLayout->setMargin(3); bLayout->addWidget(mCursorButton, 0, 0); bLayout->addWidget(mEraserButton, 0, 1); bLayout->addWidget(mColorPickerButton, 1, 0); bLayout->addWidget(mMagnifierButton, 1, 1); bLayout->addWidget(mPenButton, 2, 0); bLayout->addWidget(mLineButton, 2, 1); bLayout->addWidget(mSprayButton, 3, 0); bLayout->addWidget(mFillButton, 3, 1); bLayout->addWidget(mRectangleButton, 4, 0); bLayout->addWidget(mEllipseButton, 4, 1); bLayout->addWidget(mCurveButton, 5, 0); bLayout->addWidget(mTextButton, 5, 1); QWidget *bWidget = new QWidget(); bWidget->setLayout(bLayout); mPColorChooser = new ColorChooser(0, 0, 0, this); mPColorChooser->setStatusTip(tr("Primary color")); mPColorChooser->setToolTip(tr("Primary color")); connect(mPColorChooser, SIGNAL(sendColor(QColor)), this, SLOT(primaryColorChanged(QColor))); connect(mPColorChooser, SIGNAL(colorDialogClosed()), this, SIGNAL(colorDialogClosed())); mSColorChooser = new ColorChooser(255, 255, 255, this); mSColorChooser->setStatusTip(tr("Secondary color")); mSColorChooser->setToolTip(tr("Secondary color")); connect(mSColorChooser, SIGNAL(sendColor(QColor)), this, SLOT(secondaryColorChanged(QColor))); connect(mSColorChooser, SIGNAL(colorDialogClosed()), this, SIGNAL(colorDialogClosed())); QSpinBox *penSizeSpin = new QSpinBox(); penSizeSpin->setRange(1, 20); penSizeSpin->setValue(1); penSizeSpin->setStatusTip(tr("Pen size")); penSizeSpin->setToolTip(tr("Pen size")); connect(penSizeSpin, SIGNAL(valueChanged(int)), this, SLOT(penValueChanged(int))); QGridLayout *tLayout = new QGridLayout(); tLayout->setMargin(3); tLayout->addWidget(mPColorChooser, 0, 0); tLayout->addWidget(mSColorChooser, 0, 1); tLayout->addWidget(penSizeSpin, 1, 0, 1, 2); QWidget *tWidget = new QWidget(); tWidget->setLayout(tLayout); addWidget(bWidget); addSeparator(); addWidget(tWidget); }