mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 07:45:33 +01:00
InterfacePane: Add BalloonTip to focused hotkeys checkbox
This commit is contained in:
parent
afe5bfd512
commit
78ab53a6e4
@ -161,7 +161,8 @@ void InterfacePane::CreateUI()
|
|||||||
m_checkbox_use_covers =
|
m_checkbox_use_covers =
|
||||||
new QCheckBox(tr("Download Game Covers from GameTDB.com for Use in Grid Mode"));
|
new QCheckBox(tr("Download Game Covers from GameTDB.com for Use in Grid Mode"));
|
||||||
m_checkbox_show_debugging_ui = new ToolTipCheckBox(tr("Enable Debugging UI"));
|
m_checkbox_show_debugging_ui = new ToolTipCheckBox(tr("Enable Debugging UI"));
|
||||||
m_checkbox_focused_hotkeys = new QCheckBox(tr("Hotkeys Require Window Focus"));
|
m_checkbox_focused_hotkeys =
|
||||||
|
new ConfigBool(tr("Hotkeys Require Window Focus"), Config::MAIN_FOCUSED_HOTKEYS);
|
||||||
m_checkbox_disable_screensaver = new QCheckBox(tr("Inhibit Screensaver During Emulation"));
|
m_checkbox_disable_screensaver = new QCheckBox(tr("Inhibit Screensaver During Emulation"));
|
||||||
|
|
||||||
groupbox_layout->addWidget(m_checkbox_use_builtin_title_database);
|
groupbox_layout->addWidget(m_checkbox_use_builtin_title_database);
|
||||||
@ -230,7 +231,6 @@ void InterfacePane::ConnectLayout()
|
|||||||
connect(m_checkbox_disable_screensaver, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig);
|
connect(m_checkbox_disable_screensaver, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig);
|
||||||
connect(m_checkbox_show_debugging_ui, &QCheckBox::toggled, &Settings::Instance(),
|
connect(m_checkbox_show_debugging_ui, &QCheckBox::toggled, &Settings::Instance(),
|
||||||
&Settings::SetDebugModeEnabled);
|
&Settings::SetDebugModeEnabled);
|
||||||
connect(m_checkbox_focused_hotkeys, &QCheckBox::toggled, this, &InterfacePane::OnSaveConfig);
|
|
||||||
connect(m_combobox_theme, &QComboBox::currentIndexChanged, this,
|
connect(m_combobox_theme, &QComboBox::currentIndexChanged, this,
|
||||||
[this](int index) { Settings::Instance().TriggerThemeChanged(); });
|
[this](int index) { Settings::Instance().TriggerThemeChanged(); });
|
||||||
connect(m_combobox_userstyle, &QComboBox::currentIndexChanged, this,
|
connect(m_combobox_userstyle, &QComboBox::currentIndexChanged, this,
|
||||||
@ -307,7 +307,6 @@ void InterfacePane::LoadConfig()
|
|||||||
SignalBlocking(m_checkbox_pause_on_focus_lost)
|
SignalBlocking(m_checkbox_pause_on_focus_lost)
|
||||||
->setChecked(Config::Get(Config::MAIN_PAUSE_ON_FOCUS_LOST));
|
->setChecked(Config::Get(Config::MAIN_PAUSE_ON_FOCUS_LOST));
|
||||||
SignalBlocking(m_checkbox_use_covers)->setChecked(Config::Get(Config::MAIN_USE_GAME_COVERS));
|
SignalBlocking(m_checkbox_use_covers)->setChecked(Config::Get(Config::MAIN_USE_GAME_COVERS));
|
||||||
SignalBlocking(m_checkbox_focused_hotkeys)->setChecked(Config::Get(Config::MAIN_FOCUSED_HOTKEYS));
|
|
||||||
SignalBlocking(m_radio_cursor_visible_movement)
|
SignalBlocking(m_radio_cursor_visible_movement)
|
||||||
->setChecked(Settings::Instance().GetCursorVisibility() == Config::ShowCursor::OnMovement);
|
->setChecked(Settings::Instance().GetCursorVisibility() == Config::ShowCursor::OnMovement);
|
||||||
SignalBlocking(m_radio_cursor_visible_always)
|
SignalBlocking(m_radio_cursor_visible_always)
|
||||||
@ -347,7 +346,6 @@ void InterfacePane::OnSaveConfig()
|
|||||||
Settings::Instance().RefreshMetadata();
|
Settings::Instance().RefreshMetadata();
|
||||||
}
|
}
|
||||||
|
|
||||||
Config::SetBase(Config::MAIN_FOCUSED_HOTKEYS, m_checkbox_focused_hotkeys->isChecked());
|
|
||||||
Config::SetBase(Config::MAIN_DISABLE_SCREENSAVER, m_checkbox_disable_screensaver->isChecked());
|
Config::SetBase(Config::MAIN_DISABLE_SCREENSAVER, m_checkbox_disable_screensaver->isChecked());
|
||||||
|
|
||||||
Config::Save();
|
Config::Save();
|
||||||
@ -390,6 +388,9 @@ void InterfacePane::AddDescriptions()
|
|||||||
"Sets the language displayed by Dolphin's User Interface."
|
"Sets the language displayed by Dolphin's User Interface."
|
||||||
"<br><br>Changes to this setting only take effect once Dolphin is restarted."
|
"<br><br>Changes to this setting only take effect once Dolphin is restarted."
|
||||||
"<br><br><dolphin_emphasis>If unsure, select <System Language>.</dolphin_emphasis>");
|
"<br><br><dolphin_emphasis>If unsure, select <System Language>.</dolphin_emphasis>");
|
||||||
|
static constexpr char TR_FOCUSED_HOTKEYS_DESCRIPTION[] =
|
||||||
|
QT_TR_NOOP("Requires the render window to be focused for hotkeys to take effect."
|
||||||
|
"<br><br><dolphin_emphasis>If unsure, leave this checked.</dolphin_emphasis>");
|
||||||
|
|
||||||
m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION));
|
m_checkbox_use_builtin_title_database->SetDescription(tr(TR_TITLE_DATABASE_DESCRIPTION));
|
||||||
|
|
||||||
@ -400,4 +401,6 @@ void InterfacePane::AddDescriptions()
|
|||||||
|
|
||||||
m_combobox_language->SetTitle(tr("Language"));
|
m_combobox_language->SetTitle(tr("Language"));
|
||||||
m_combobox_language->SetDescription(tr(TR_LANGUAGE_DESCRIPTION));
|
m_combobox_language->SetDescription(tr(TR_LANGUAGE_DESCRIPTION));
|
||||||
|
|
||||||
|
m_checkbox_focused_hotkeys->SetDescription(tr(TR_FOCUSED_HOTKEYS_DESCRIPTION));
|
||||||
}
|
}
|
||||||
|
@ -43,7 +43,7 @@ private:
|
|||||||
ConfigBool* m_checkbox_top_window;
|
ConfigBool* m_checkbox_top_window;
|
||||||
ConfigBool* m_checkbox_use_builtin_title_database;
|
ConfigBool* m_checkbox_use_builtin_title_database;
|
||||||
ToolTipCheckBox* m_checkbox_show_debugging_ui;
|
ToolTipCheckBox* m_checkbox_show_debugging_ui;
|
||||||
QCheckBox* m_checkbox_focused_hotkeys;
|
ConfigBool* m_checkbox_focused_hotkeys;
|
||||||
QCheckBox* m_checkbox_use_covers;
|
QCheckBox* m_checkbox_use_covers;
|
||||||
QCheckBox* m_checkbox_disable_screensaver;
|
QCheckBox* m_checkbox_disable_screensaver;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user