-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettingDlg.h
123 lines (98 loc) · 2.42 KB
/
settingDlg.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
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
#ifndef SETTINGDLG_H
#define SETTINGDLG_H
#include <ZApplication.h>
#include <ZComboBox.h>
#include <ZCheckBox.h>
#include <ZFormContainer.h>
#include <ZNavTabWidget.h>
#include <ZLineEdit.h>
#include <ZLabel.h>
#include <ZPressButton.h>
#include <ZNoticeDlg.h>
#include <ZListBox.h>
#include <ZListBoxItem.h>
#include <qstring.h>
#include <qobject.h>
#include <qpainter.h>
#include "myDef.h"
#include "BaseDlg.h"
#include "cfg.h"
#include "source.h"
class SettingDlg: public MyBaseDlg
{
Q_OBJECT
public :
SettingDlg();
~SettingDlg();
bool isCancel;
bool isFullScreenMode;
//void paintEvent( QPaintEvent * pe);
protected:
void buildTab0();
void buildTab1();
void buildTab2();
void buildTab3();
void buildTab4();
void timerEvent(QTimerEvent *e);
void getLngList();
void setOcList();
private slots:
void accept();
void reject();
void buttonClicked();
void slotMkey(int index);
//void drawAbout(QPainter & p);
private :
ZNavTabWidget *tabWidget;
ZFormContainer *form0;
//ZListBox *listBox0;
ZFormContainer *form1;
ZFormContainer *form2;
ZFormContainer *form3;
ZFormContainer *form4;
ZLabel *tab2Label;
ZLabel *tab3Label;
ZLabel *tab4Label;
//ZLabel *tab3Label;
//QVBoxLayout *form3;
// Global
ZCheckBox *refreshWhenTabChg;
ZCheckBox *cKeyToKill;
ZCheckBox *shortMKeyToOpen;
ZCheckBox *fullScreenStatus;
ZCheckBox *timeHeader;
ZCheckBox *hideAfterRunApp;
// task
ZCheckBox *procFilter;
ZCheckBox *showNativeIcon;
ZCheckBox *showJavaIcon;
ZCheckBox *showJavaName;
ZCheckBox *sendReturnToIdle;
ZCheckBox *showNativeMgxInfo;
#ifndef NEW_JAVA_LIST
ZCheckBox *markItem;
#endif
// app
//bool cfg_showFavBigIcon;
ZCheckBox *showMgxBigIcon;
ZCheckBox *showMpkgBigIcon;
#ifndef NEW_JAVA_LIST
ZCheckBox *runJavaInMult;
#endif
//fm
ZCheckBox *clearBufEveryMultModeInCut;
ZCheckBox *clearBufEveryMultModeInCopy;
ZCheckBox *showHideObj;
ZCheckBox *showMimeType;
ZCheckBox *showMultiWindow;
ZComboBox *lngcb;
ZComboBox *regcb;
ZComboBox *occb;
ZComboBox *mKeycb;
//ZLineEdit *lineedit;
ZPressButton *button;
QString imei;
QString imsi;
QString regCode;
};
#endif // SETTINGDLG_H