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

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;