o add my bsnes branch
This commit is contained in:
29
tools/bsnes/ui_qt/settings/video.hpp
Executable file
29
tools/bsnes/ui_qt/settings/video.hpp
Executable file
@@ -0,0 +1,29 @@
|
||||
class VideoSettingsWindow : public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
QWidget *panel;
|
||||
QVBoxLayout *layout;
|
||||
QLabel *title;
|
||||
QGridLayout *sliders;
|
||||
QLabel *lcontrast;
|
||||
QSlider *contrast;
|
||||
QLabel *lbrightness;
|
||||
QSlider *brightness;
|
||||
QLabel *lgamma;
|
||||
QSlider *gamma;
|
||||
QHBoxLayout *options;
|
||||
QCheckBox *enableGammaRamp;
|
||||
QCheckBox *enableNtscMergeFields;
|
||||
QWidget *spacer;
|
||||
|
||||
void setup();
|
||||
void syncUi();
|
||||
|
||||
public slots:
|
||||
void gammaRampToggle(int);
|
||||
void ntscFieldsToggle(int);
|
||||
void contrastAdjust(int);
|
||||
void brightnessAdjust(int);
|
||||
void gammaAdjust(int);
|
||||
} *winVideoSettings;
|
||||
Reference in New Issue
Block a user