2013-01-21 12:27:15 +00:00
|
|
|
struct AdvancedSettings : SettingsLayout {
|
|
|
|
Label driverTitle;
|
|
|
|
HorizontalLayout driverLayout;
|
|
|
|
Label videoLabel;
|
2013-03-15 13:11:33 +00:00
|
|
|
ComboButton videoDriver;
|
2013-01-21 12:27:15 +00:00
|
|
|
Label audioLabel;
|
2013-03-15 13:11:33 +00:00
|
|
|
ComboButton audioDriver;
|
2013-01-21 12:27:15 +00:00
|
|
|
Label inputLabel;
|
2013-03-15 13:11:33 +00:00
|
|
|
ComboButton inputDriver;
|
2013-01-21 12:27:15 +00:00
|
|
|
|
|
|
|
Label libraryTitle;
|
|
|
|
HorizontalLayout libraryLayout;
|
|
|
|
Label libraryLabel;
|
|
|
|
LineEdit libraryPath;
|
|
|
|
Button libraryBrowse;
|
|
|
|
|
|
|
|
Widget spacer;
|
|
|
|
Label infoLabel;
|
|
|
|
|
|
|
|
AdvancedSettings();
|
|
|
|
};
|
|
|
|
|
2013-05-02 11:25:45 +00:00
|
|
|
extern AdvancedSettings* advancedSettings;
|