|
@@ -39,21 +39,6 @@ void ConfigurationShared::ApplyPerGameSetting(Settings::Setting<int>* setting,
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-void ConfigurationShared::ApplyPerGameSetting(Settings::Setting<Settings::RendererBackend>* setting,
|
|
|
|
|
- const QComboBox* combobox) {
|
|
|
|
|
- if (Settings::IsConfiguringGlobal() && setting->UsingGlobal()) {
|
|
|
|
|
- setting->SetValue(static_cast<Settings::RendererBackend>(combobox->currentIndex()));
|
|
|
|
|
- } else if (!Settings::IsConfiguringGlobal()) {
|
|
|
|
|
- if (combobox->currentIndex() == ConfigurationShared::USE_GLOBAL_INDEX) {
|
|
|
|
|
- setting->SetGlobal(true);
|
|
|
|
|
- } else {
|
|
|
|
|
- setting->SetGlobal(false);
|
|
|
|
|
- setting->SetValue(static_cast<Settings::RendererBackend>(
|
|
|
|
|
- combobox->currentIndex() - ConfigurationShared::USE_GLOBAL_OFFSET));
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
void ConfigurationShared::SetPerGameSetting(QCheckBox* checkbox,
|
|
void ConfigurationShared::SetPerGameSetting(QCheckBox* checkbox,
|
|
|
const Settings::Setting<bool>* setting) {
|
|
const Settings::Setting<bool>* setting) {
|
|
|
if (setting->UsingGlobal()) {
|
|
if (setting->UsingGlobal()) {
|
|
@@ -63,34 +48,6 @@ void ConfigurationShared::SetPerGameSetting(QCheckBox* checkbox,
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-void ConfigurationShared::SetPerGameSetting(QComboBox* combobox,
|
|
|
|
|
- const Settings::Setting<int>* setting) {
|
|
|
|
|
- combobox->setCurrentIndex(setting->UsingGlobal()
|
|
|
|
|
- ? ConfigurationShared::USE_GLOBAL_INDEX
|
|
|
|
|
- : setting->GetValue() + ConfigurationShared::USE_GLOBAL_OFFSET);
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-void ConfigurationShared::SetPerGameSetting(
|
|
|
|
|
- QComboBox* combobox, const Settings::Setting<Settings::RendererBackend>* setting) {
|
|
|
|
|
- combobox->setCurrentIndex(setting->UsingGlobal() ? ConfigurationShared::USE_GLOBAL_INDEX
|
|
|
|
|
- : static_cast<int>(setting->GetValue()) +
|
|
|
|
|
- ConfigurationShared::USE_GLOBAL_OFFSET);
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-void ConfigurationShared::SetPerGameSetting(
|
|
|
|
|
- QComboBox* combobox, const Settings::Setting<Settings::GPUAccuracy>* setting) {
|
|
|
|
|
- combobox->setCurrentIndex(setting->UsingGlobal() ? ConfigurationShared::USE_GLOBAL_INDEX
|
|
|
|
|
- : static_cast<int>(setting->GetValue()) +
|
|
|
|
|
- ConfigurationShared::USE_GLOBAL_OFFSET);
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-void ConfigurationShared::SetPerGameSetting(
|
|
|
|
|
- QComboBox* combobox, const Settings::Setting<Settings::CPUAccuracy>* setting) {
|
|
|
|
|
- combobox->setCurrentIndex(setting->UsingGlobal() ? ConfigurationShared::USE_GLOBAL_INDEX
|
|
|
|
|
- : static_cast<int>(setting->GetValue()) +
|
|
|
|
|
- ConfigurationShared::USE_GLOBAL_OFFSET);
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
void ConfigurationShared::SetHighlight(QWidget* widget, bool highlighted) {
|
|
void ConfigurationShared::SetHighlight(QWidget* widget, bool highlighted) {
|
|
|
if (highlighted) {
|
|
if (highlighted) {
|
|
|
widget->setStyleSheet(QStringLiteral("QWidget#%1 { background-color:rgba(0,203,255,0.5) }")
|
|
widget->setStyleSheet(QStringLiteral("QWidget#%1 { background-color:rgba(0,203,255,0.5) }")
|