mirror of https://github.com/bsnes-emu/bsnes.git
42 lines
1.6 KiB
C++
42 lines
1.6 KiB
C++
AdvancedSettings::AdvancedSettings(TabFrame* parent) : TabFrameItem(parent) {
|
|
setIcon(Icon::Action::Settings);
|
|
setText("Advanced");
|
|
|
|
layout.setMargin(5);
|
|
|
|
driverLabel.setText("Driver Selection").setFont(Font::sans(8, "Bold"));
|
|
videoLabel.setText("Video:");
|
|
videoDriver.onChange([&] { config->video.driver = videoDriver.selected()->text(); });
|
|
for(auto& driver : Video::availableDrivers()) {
|
|
ComboButtonItem item;
|
|
item.setText(driver);
|
|
videoDriver.append(item);
|
|
if(config->video.driver == driver) item.setSelected();
|
|
}
|
|
audioLabel.setText("Audio:");
|
|
audioDriver.onChange([&] { config->audio.driver = audioDriver.selected()->text(); });
|
|
for(auto& driver : Audio::availableDrivers()) {
|
|
ComboButtonItem item;
|
|
item.setText(driver);
|
|
audioDriver.append(item);
|
|
if(config->audio.driver == driver) item.setSelected();
|
|
}
|
|
inputLabel.setText("Input:");
|
|
inputDriver.onChange([&] { config->input.driver = inputDriver.selected()->text(); });
|
|
for(auto& driver : Input::availableDrivers()) {
|
|
ComboButtonItem item;
|
|
item.setText(driver);
|
|
inputDriver.append(item);
|
|
if(config->input.driver == driver) item.setSelected();
|
|
}
|
|
|
|
libraryLabel.setText("Game Library").setFont(Font::sans(8, "Bold"));
|
|
libraryPrefix.setText("Location:");
|
|
libraryLocation.setEditable(false).setText(config->library.location);
|
|
libraryChange.setText("Change ...").onActivate([&] {
|
|
if(auto location = BrowserDialog().setTitle("Select Library Location").selectFolder()) {
|
|
libraryLocation.setText(config->library.location = location);
|
|
}
|
|
});
|
|
}
|