bsnes-classic/bsnes/ui-qt/settings/profile.moc.hpp

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;