mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
29 lines
621 B
C++
Executable file
29 lines
621 B
C++
Executable file
struct VideoSlider : HorizontalLayout {
|
|
Label name;
|
|
Label value;
|
|
HorizontalSlider slider;
|
|
|
|
VideoSlider();
|
|
};
|
|
|
|
struct VideoSettings : SettingsLayout {
|
|
Label title;
|
|
Label colorAdjustment;
|
|
VideoSlider brightness;
|
|
VideoSlider contrast;
|
|
VideoSlider gamma;
|
|
Label overscanAdjustment;
|
|
VideoSlider overscanHorizontal;
|
|
VideoSlider overscanVertical;
|
|
Label fullScreenMode;
|
|
HorizontalLayout fullScreenLayout;
|
|
RadioBox fullScreen[3];
|
|
Label compositorLabel;
|
|
HorizontalLayout compositorLayout;
|
|
RadioBox compositor[3];
|
|
|
|
void synchronize();
|
|
VideoSettings();
|
|
};
|
|
|
|
extern VideoSettings *videoSettings;
|