mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
GUI: Don't create a popup for anti-aliasing levels if they're not supported
This commit is contained in:
parent
5f7f242239
commit
c165cfb6e9
@ -377,13 +377,6 @@ void OptionsDialog::build() {
|
|||||||
if (ConfMan.isKeyTemporary("vsync"))
|
if (ConfMan.isKeyTemporary("vsync"))
|
||||||
_vsyncCheckbox->setOverride(true);
|
_vsyncCheckbox->setOverride(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
_antiAliasPopUp->setEnabled(true);
|
|
||||||
if (ConfMan.hasKey("antialiasing", _domain)) {
|
|
||||||
_antiAliasPopUp->setSelectedTag(ConfMan.getInt("antialiasing", _domain));
|
|
||||||
} else {
|
|
||||||
_antiAliasPopUp->setSelectedTag(uint32(-1));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_stretchPopUp) {
|
if (_stretchPopUp) {
|
||||||
@ -466,6 +459,15 @@ void OptionsDialog::build() {
|
|||||||
_rendererTypePopUp->setSelectedTag(Graphics::Renderer::parseTypeCode(ConfMan.get("renderer", _domain)));
|
_rendererTypePopUp->setSelectedTag(Graphics::Renderer::parseTypeCode(ConfMan.get("renderer", _domain)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (_antiAliasPopUp) {
|
||||||
|
_antiAliasPopUp->setEnabled(true);
|
||||||
|
if (ConfMan.hasKey("antialiasing", _domain)) {
|
||||||
|
_antiAliasPopUp->setSelectedTag(ConfMan.getInt("antialiasing", _domain));
|
||||||
|
} else {
|
||||||
|
_antiAliasPopUp->setSelectedTag(uint32(-1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Audio options
|
// Audio options
|
||||||
if (!loadMusicDeviceSetting(_midiPopUp, "music_driver"))
|
if (!loadMusicDeviceSetting(_midiPopUp, "music_driver"))
|
||||||
_midiPopUp->setSelected(0);
|
_midiPopUp->setSelected(0);
|
||||||
@ -721,12 +723,14 @@ void OptionsDialog::apply() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (_antiAliasPopUp) {
|
||||||
if (_antiAliasPopUp->getSelectedTag() != (uint32)-1) {
|
if (_antiAliasPopUp->getSelectedTag() != (uint32)-1) {
|
||||||
uint level = _antiAliasPopUp->getSelectedTag();
|
uint level = _antiAliasPopUp->getSelectedTag();
|
||||||
ConfMan.setInt("antialiasing", level, _domain);
|
ConfMan.setInt("antialiasing", level, _domain);
|
||||||
} else {
|
} else {
|
||||||
ConfMan.removeKey("antialiasing", _domain);
|
ConfMan.removeKey("antialiasing", _domain);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
ConfMan.removeKey("fullscreen", _domain);
|
ConfMan.removeKey("fullscreen", _domain);
|
||||||
@ -1229,14 +1233,17 @@ void OptionsDialog::setGraphicSettingsState(bool enabled) {
|
|||||||
_gfxPopUp->setEnabled(enabled);
|
_gfxPopUp->setEnabled(enabled);
|
||||||
_renderModePopUpDesc->setEnabled(enabled);
|
_renderModePopUpDesc->setEnabled(enabled);
|
||||||
_renderModePopUp->setEnabled(enabled);
|
_renderModePopUp->setEnabled(enabled);
|
||||||
_antiAliasPopUpDesc->setEnabled(enabled);
|
|
||||||
_antiAliasPopUp->setEnabled(enabled);
|
|
||||||
|
|
||||||
if (_rendererTypePopUp) {
|
if (_rendererTypePopUp) {
|
||||||
_rendererTypePopUpDesc->setEnabled(enabled);
|
_rendererTypePopUpDesc->setEnabled(enabled);
|
||||||
_rendererTypePopUp->setEnabled(enabled);
|
_rendererTypePopUp->setEnabled(enabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (_antiAliasPopUp) {
|
||||||
|
_antiAliasPopUpDesc->setEnabled(enabled);
|
||||||
|
_antiAliasPopUp->setEnabled(enabled);
|
||||||
|
}
|
||||||
|
|
||||||
if (g_system->hasFeature(OSystem::kFeatureStretchMode)) {
|
if (g_system->hasFeature(OSystem::kFeatureStretchMode)) {
|
||||||
_stretchPopUpDesc->setEnabled(enabled);
|
_stretchPopUpDesc->setEnabled(enabled);
|
||||||
_stretchPopUp->setEnabled(enabled);
|
_stretchPopUp->setEnabled(enabled);
|
||||||
@ -1673,19 +1680,16 @@ void OptionsDialog::addGraphicControls(GuiObject *boss, const Common::String &pr
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const Common::Array<uint> levels = g_system->getSupportedAntiAliasingLevels();
|
||||||
|
if (!levels.empty()) {
|
||||||
_antiAliasPopUpDesc = new StaticTextWidget(boss, prefix + "grAntiAliasPopupDesc", _("3D Anti-aliasing:"));
|
_antiAliasPopUpDesc = new StaticTextWidget(boss, prefix + "grAntiAliasPopupDesc", _("3D Anti-aliasing:"));
|
||||||
_antiAliasPopUp = new PopUpWidget(boss, prefix + "grAntiAliasPopup");
|
_antiAliasPopUp = new PopUpWidget(boss, prefix + "grAntiAliasPopup");
|
||||||
_antiAliasPopUp->appendEntry(_("<default>"), uint32(-1));
|
_antiAliasPopUp->appendEntry(_("<default>"), uint32(-1));
|
||||||
_antiAliasPopUp->appendEntry("");
|
_antiAliasPopUp->appendEntry("");
|
||||||
_antiAliasPopUp->appendEntry(_("Disabled"), 0);
|
_antiAliasPopUp->appendEntry(_("Disabled"), 0);
|
||||||
const Common::Array<uint> levels = g_system->getSupportedAntiAliasingLevels();
|
|
||||||
for (uint i = 0; i < levels.size(); i++) {
|
for (uint i = 0; i < levels.size(); i++) {
|
||||||
_antiAliasPopUp->appendEntry(Common::String::format("%dx", levels[i]), levels[i]);
|
_antiAliasPopUp->appendEntry(Common::String::format("%dx", levels[i]), levels[i]);
|
||||||
}
|
}
|
||||||
if (levels.empty()) {
|
|
||||||
// Don't show the anti-aliasing selection menu when it is not supported
|
|
||||||
_antiAliasPopUpDesc->setVisible(false);
|
|
||||||
_antiAliasPopUp->setVisible(false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Filtering checkbox
|
// Filtering checkbox
|
||||||
|
Loading…
x
Reference in New Issue
Block a user