mirror of
https://github.com/devinacker/bsnes-plus.git
synced 2025-04-02 10:52:46 -04:00
27 lines
510 B
C++
27 lines
510 B
C++
class BSXSettingsWindow : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QVBoxLayout *layout;
|
|
|
|
QHBoxLayout *timeLayout;
|
|
QLabel *timeLabel;
|
|
QRadioButton *useLocalTime;
|
|
QRadioButton *useCustomTime;
|
|
QDateTimeEdit *dateTime;
|
|
QLabel *timeNoteLabel;
|
|
|
|
QHBoxLayout *sizeLayout;
|
|
QLabel *sizeLabel;
|
|
QComboBox *sizeCombo;
|
|
|
|
void initializeUi();
|
|
BSXSettingsWindow();
|
|
|
|
public slots:
|
|
void timeSettingToggled();
|
|
void customTimeSet();
|
|
void defaultSizeSet();
|
|
};
|
|
|
|
extern BSXSettingsWindow *bsxSettingsWindow;
|