Home
last modified time | relevance | path

Searched refs:m_foreground_width (Results 1 – 2 of 2) sorted by relevance

/dports/editors/focuswriter/focuswriter-1.7.6/src/
H A Dtheme_dialog.cpp166 m_foreground_width = new QSpinBox(foreground_group); in ThemeDialog()
167 m_foreground_width->setCorrectionMode(QSpinBox::CorrectToNearestValue); in ThemeDialog()
168 m_foreground_width->setSuffix(tr(" pixels")); in ThemeDialog()
169m_foreground_width->setRange(theme.foregroundWidth().minimumValue(), theme.foregroundWidth().maxim… in ThemeDialog()
170 m_foreground_width->setValue(m_theme.foregroundWidth()); in ThemeDialog()
171 m_foreground_width->setEnabled(m_theme.foregroundPosition() != 3); in ThemeDialog()
172 …connect(m_foreground_width, QOverload<int>::of(&QSpinBox::valueChanged), this, &ThemeDialog::rende… in ThemeDialog()
179 foreground_layout->addRow(tr("Width:"), m_foreground_width); in ThemeDialog()
500 m_foreground_width->setEnabled(index != 3); in positionChanged()
549 theme.setForegroundWidth(m_foreground_width->value()); in setValues()
H A Dtheme_dialog.h91 QSpinBox* m_foreground_width; variable