Better control over toolbox icon size.
This commit is contained in:
parent
8476b50a24
commit
a49f156ce0
|
@ -133,6 +133,7 @@ PreferencesConfigurationPage::PreferencesConfigurationPage(QWidget *parent)
|
|||
|
||||
//----------------------- Toolbar
|
||||
ui->toolBarStyleCheck->setChecked(settings->GetToolBarStyle());
|
||||
ui->radioButtonToolboxIconSizeSmall->setChecked(settings->GetToolboxIconSizeSmall());
|
||||
|
||||
// Theme
|
||||
SetThemeModeComboBox();
|
||||
|
@ -195,6 +196,7 @@ auto PreferencesConfigurationPage::Apply() -> QStringList
|
|||
|
||||
settings->SetOsSeparator(ui->osOptionCheck->isChecked());
|
||||
settings->SetToolBarStyle(ui->toolBarStyleCheck->isChecked());
|
||||
settings->SetToolboxIconSizeSmall(ui->radioButtonToolboxIconSizeSmall->isChecked());
|
||||
|
||||
auto themeMode = static_cast<VThemeMode>(ui->comboBoxThemeMode->currentData().toInt());
|
||||
if (settings->GetThemeMode() != themeMode)
|
||||
|
|
|
@ -33,9 +33,9 @@
|
|||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>-70</y>
|
||||
<y>0</y>
|
||||
<width>624</width>
|
||||
<height>873</height>
|
||||
<height>904</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
|
@ -284,6 +284,53 @@
|
|||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||
<item>
|
||||
<widget class="QLabel" name="label_17">
|
||||
<property name="text">
|
||||
<string>Toolbox icon size:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="radioButtonToolboxIconSizeSmall">
|
||||
<property name="text">
|
||||
<string>Small</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<attribute name="buttonGroup">
|
||||
<string notr="true">buttonGroupToolBoxIconSize</string>
|
||||
</attribute>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="radioButtonToolboxIconSizeNormal">
|
||||
<property name="text">
|
||||
<string>Normal</string>
|
||||
</property>
|
||||
<attribute name="buttonGroup">
|
||||
<string notr="true">buttonGroupToolBoxIconSize</string>
|
||||
</attribute>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -581,4 +628,7 @@
|
|||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
<buttongroups>
|
||||
<buttongroup name="buttonGroupToolBoxIconSize"/>
|
||||
</buttongroups>
|
||||
</ui>
|
||||
|
|
|
@ -5503,6 +5503,8 @@ void MainWindow::ReadSettings()
|
|||
// Text under tool buton icon
|
||||
ToolBarStyles();
|
||||
|
||||
ToolboxIconSize();
|
||||
|
||||
QFont f = ui->plainTextEditPatternMessages->font();
|
||||
f.setPointSize(settings->GetPatternMessageFontSize(f.pointSize()));
|
||||
ui->plainTextEditPatternMessages->setFont(f);
|
||||
|
@ -6419,6 +6421,24 @@ void MainWindow::ToolBarStyles()
|
|||
MainWindow::ToolBarStyle(ui->mainToolBar);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
void MainWindow::ToolboxIconSize()
|
||||
{
|
||||
auto SetIconSize = [](QToolBar *bar)
|
||||
{
|
||||
VCommonSettings *settings = VAbstractApplication::VApp()->Settings();
|
||||
QSize size = settings->GetToolboxIconSizeSmall() ? QSize(24, 24) : QSize(32, 32);
|
||||
bar->setIconSize(size);
|
||||
};
|
||||
|
||||
SetIconSize(ui->toolBarCurveTools);
|
||||
SetIconSize(ui->toolBarDetailTools);
|
||||
SetIconSize(ui->toolBarLineTools);
|
||||
SetIconSize(ui->toolBarOperationTools);
|
||||
SetIconSize(ui->toolBarPointTools);
|
||||
SetIconSize(ui->toolBarSelectingTools);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
void MainWindow::ShowPaper(int index)
|
||||
{
|
||||
|
@ -6450,6 +6470,7 @@ void MainWindow::Preferences()
|
|||
connect(dlg.data(), &DialogPreferences::UpdateProperties, m_toolOptions,
|
||||
&VToolOptionsPropertyBrowser::RefreshOptions);
|
||||
connect(dlg.data(), &DialogPreferences::UpdateProperties, this, &MainWindow::ToolBarStyles);
|
||||
connect(dlg.data(), &DialogPreferences::UpdateProperties, this, &MainWindow::ToolboxIconSize);
|
||||
connect(dlg.data(), &DialogPreferences::UpdateProperties, this, [this]() { emit doc->FullUpdateFromFile(); });
|
||||
connect(dlg.data(), &DialogPreferences::UpdateProperties, ui->view,
|
||||
&VMainGraphicsView::ResetScrollingAnimation);
|
||||
|
|
|
@ -133,6 +133,7 @@ private slots:
|
|||
void PreviousPatternPiece();
|
||||
void NextPatternPiece();
|
||||
void ToolBarStyles();
|
||||
void ToolboxIconSize();
|
||||
void ShowPaper(int index);
|
||||
void Preferences();
|
||||
#if defined(Q_OS_MAC)
|
||||
|
|
|
@ -122,6 +122,9 @@ Q_GLOBAL_STATIC_WITH_ARGS(const QString, settingConfigurationAskContinueIfLayout
|
|||
Q_GLOBAL_STATIC_WITH_ARGS(const QString, settingConfigurationToolBarStyle,
|
||||
(QLatin1String("configuration/tool_bar_style")))
|
||||
// NOLINTNEXTLINE
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(const QString, settingConfigurationToolboxIconSizeSmall,
|
||||
(QLatin1String("configuration/toolboxIconSizeSmall")))
|
||||
// NOLINTNEXTLINE
|
||||
Q_GLOBAL_STATIC_WITH_ARGS(const QString, settingConfigurationFreeCurveMode,
|
||||
(QLatin1String("configuration/freeCurveMode")))
|
||||
// NOLINTNEXTLINE
|
||||
|
@ -721,6 +724,18 @@ void VCommonSettings::SetToolBarStyle(const bool &value)
|
|||
setValue(*settingConfigurationToolBarStyle, value);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
auto VCommonSettings::GetToolboxIconSizeSmall() const -> bool
|
||||
{
|
||||
return value(*settingConfigurationToolboxIconSizeSmall, 1).toBool();
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
void VCommonSettings::SetToolboxIconSizeSmall(bool value)
|
||||
{
|
||||
setValue(*settingConfigurationToolboxIconSizeSmall, value);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------------------------------------------------
|
||||
auto VCommonSettings::GetThemeMode() const -> VThemeMode
|
||||
{
|
||||
|
|
|
@ -128,6 +128,9 @@ public:
|
|||
auto GetToolBarStyle() const -> bool;
|
||||
void SetToolBarStyle(const bool &value);
|
||||
|
||||
auto GetToolboxIconSizeSmall() const -> bool;
|
||||
void SetToolboxIconSizeSmall(bool value);
|
||||
|
||||
auto GetThemeMode() const -> VThemeMode;
|
||||
void SetThemeMode(VThemeMode mode);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user