bsnes-plus/bsnes/ui-qt/settings/profile.moc.hpp
2014-11-26 18:35:12 -05:00

22 lines
517 B
C++

class ProfileSettingsWindow : public QWidget {
Q_OBJECT
public:
QVBoxLayout *layout;
QLabel *profileInfo;
QRadioButton *profileAccuracy;
QLabel *profileAccuracyInfo;
QRadioButton *profileCompatibility;
QLabel *profileCompatibilityInfo;
QRadioButton *profilePerformance;
QLabel *profilePerformanceInfo;
ProfileSettingsWindow();
private slots:
void setAccuracyProfile();
void setCompatibilityProfile();
void setPerformanceProfile();
};
extern ProfileSettingsWindow *profileSettingsWindow;