mirror of
https://github.com/devinacker/bsnes-plus.git
synced 2025-04-02 10:52:46 -04:00
22 lines
517 B
C++
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;
|