This repository was archived by the owner on Mar 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathhotkeydialog.h
More file actions
137 lines (128 loc) · 2.73 KB
/
hotkeydialog.h
File metadata and controls
137 lines (128 loc) · 2.73 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#ifndef HOTKEYDIALOG_H
#define HOTKEYDIALOG_H
#include <QDialog>
#include <QGridLayout>
#include <QPushButton>
#include "m64p_types.h"
class CustomButton : public QPushButton
{
public:
explicit CustomButton(QWidget *parent = 0);
void setParamName(const char *ParamName)
{
m_ParamName = ParamName;
}
void setParamType(m64p_type ParamType)
{
m_ParamType = ParamType;
}
void setConfigHandle(m64p_handle CurrentHandle)
{
m_CurrentHandle = CurrentHandle;
}
void setDialog(void *Dialog)
{
m_dialog = Dialog;
}
QString getOrigText()
{
return origText;
}
const char *getParamName()
{
return m_ParamName.toUtf8().constData();
}
m64p_type getParamType()
{
return m_ParamType;
}
private:
m64p_type m_ParamType;
QString m_ParamName;
m64p_handle m_CurrentHandle;
void *m_dialog;
QString origText;
};
class ClearButton : public QPushButton
{
public:
explicit ClearButton(QWidget *parent = 0);
void setParamName(const char *ParamName)
{
m_ParamName = ParamName;
}
void setParamType(m64p_type ParamType)
{
m_ParamType = ParamType;
}
void setConfigHandle(m64p_handle CurrentHandle)
{
m_CurrentHandle = CurrentHandle;
}
void setMainButton(CustomButton *MainButton)
{
m_MainButton = MainButton;
}
void setDialog(void *Dialog)
{
m_dialog = Dialog;
}
private:
m64p_type m_ParamType;
QString m_ParamName;
m64p_handle m_CurrentHandle;
CustomButton *m_MainButton;
void *m_dialog;
};
class HotkeyDialog : public QDialog
{
Q_OBJECT
public:
HotkeyDialog(QWidget *parent = nullptr);
QList<CustomButton *> *getButtonList()
{
return &m_coreEventsButtonList;
}
m64p_handle getHandle()
{
return m_configHandle;
}
QGridLayout *getLayout()
{
return m_layout;
}
int *getLayoutRow()
{
return &m_layoutRow;
}
void setTimer(int timer)
{
m_timer = startTimer(timer);
}
void setButtonTimer(int timer)
{
m_buttonTimer = timer;
}
void setActiveButton(CustomButton *button)
{
m_activeButton = button;
}
CustomButton *getActiveButton()
{
return m_activeButton;
}
protected:
void keyReleaseEvent(QKeyEvent *event) Q_DECL_OVERRIDE;
void timerEvent(QTimerEvent *event) Q_DECL_OVERRIDE;
private slots:
void handleResetButton();
private:
QList<CustomButton *> m_coreEventsButtonList;
m64p_handle m_configHandle;
QGridLayout *m_layout;
int m_layoutRow;
CustomButton *m_activeButton;
int m_timer;
int m_buttonTimer;
};
#endif // HOTKEYDIALOG_H