-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelpsettings.h
73 lines (44 loc) · 1.57 KB
/
helpsettings.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#ifndef HELPSETTINGS_H
#define HELPSETTINGS_H
#include <QDialog>
#include "eden.h"
#include "appcore.h"
namespace Ui {
class HelpSettings;
}
class HelpSettings : public QDialog
{
Q_OBJECT
public:
explicit HelpSettings(QWidget *parent = 0);
~HelpSettings();
AppCore * Core;
void Init();
private slots:
void on_ScreenNegative_toggled(bool checked);
void on_VolumeBeepS_valueChanged(int value);
void on_VolumeSoundS_valueChanged(int value);
void on_AudioTimerT_textChanged(const QString &arg1);
void on_AudioBufferT_textChanged(const QString &arg1);
void on_AudioElementT_textChanged(const QString &arg1);
void on_DebugTrace_toggled(bool checked);
void on_DebugReg0_toggled(bool checked);
void on_DebugReg1_toggled(bool checked);
void on_DebugReg3_toggled(bool checked);
void on_DebugReg2_toggled(bool checked);
void on_ScreenColors_toggled(bool checked);
void on_ScreenSwap_toggled(bool checked);
void on_ScreenMemCommon_toggled(bool checked);
void on_VolumeAYS_valueChanged(int value);
void on_AudioAYFreqT_textChanged(const QString &arg1);
void on_InterruptPeriodT_textChanged(const QString &arg1);
void on_DebugReg4_toggled(bool checked);
void on_DebugTraceRange1T_textChanged(const QString &arg1);
void on_DebugTraceRange2T_textChanged(const QString &arg1);
void on_DebugDisk_toggled(bool checked);
void on_DebugDiskCmd_toggled(bool checked);
void on_ScreenGraphModeT_currentIndexChanged(int index);
private:
Ui::HelpSettings *ui;
};
#endif // HELPSETTINGS_H