lsnes/ui/settings/advanced.hpp
2013-05-03 17:47:34 +03:00

20 lines
456 B
C++
Executable file

struct AdvancedSettings : SettingsLayout {
Label title;
Label driverLabel;
HorizontalLayout driverLayout;
Label videoLabel;
ComboBox videoDriver;
Label audioLabel;
ComboBox audioDriver;
Label inputLabel;
ComboBox inputDriver;
Label focusPolicyLabel;
HorizontalLayout focusPolicyLayout;
RadioBox focusPolicy[3];
Widget spacer;
Label aboutLabel;
AdvancedSettings();
};
extern AdvancedSettings *advancedSettings;