QuakeGod
2023-10-23 4cda72771765720a6a8721bd8844945c2403afe6
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#pragma once
 
 
// CMyDlgBarFuncKey 对话框
 
#define IDC_BUTTON_AND                     33101
#define IDC_BUTTON_OR                      33102
#define IDC_BUTTON_VLINE                   33103
#define IDC_BUTTON_OUT                     33104
#define IDC_BUTTON_TMCT                    33105
#define IDC_BUTTON_FUN                     33106
#define IDC_BUTTON_HLINE                   33107
#define IDC_BUTTON_NOT                     33108
#define IDC_BUTTON_INDEX                   33109
#define IDC_BUTTON_MC                      33110
#define IDC_BUTTON_MCE                     33111
 
#define IDC_BUTTON_SET                     33201
#define IDC_BUTTON_RESET                   33202
#define IDC_BUTTON_DF                      33203
#define IDC_BUTTON_END                     33204
#define IDC_BUTTON_COMPARE                 33205
#define IDC_BUTTON_PFUN                    33206
#define IDC_BUTTON_UPDOWN                  33207
#define IDC_BUTTON_BIT                     33208
#define IDC_BUTTON_WORD                    33209
#define IDC_BUTTON_INSTRUCTION1            33210
#define IDC_BUTTON_INSTRUCTION2            33211
 
#define IDC_BUTTON_PGCONVERT              33301
#define IDC_BUTTON_ONLINE                33302
#define IDC_BUTTON_OFFLINE               33303
#define IDC_BUTTON_COLSE                 33304
#define IDC_BUTTON_FIND                  33305
#define IDC_BUTTON_NEXTWIN               33306
#define IDC_BUTTON_MONITOR               33307
#define IDC_BUTTON_STATUS                33308
#define IDC_BUTTON_RUNPROG               33309
#define IDC_BUTTON_PLCREAD               33310
#define IDC_BUTTON_PLCWRITE              33311
 
#define IDC_BUTTON_X                    33401
#define IDC_BUTTON_Y                    33402
#define IDC_BUTTON_R                    33403
#define IDC_BUTTON_L                    33404
#define IDC_BUTTON_P                    33405
#define IDC_BUTTON_COMPARE1             33406
#define IDC_BUTTON_NOT1                 33408
#define IDC_BUTTON_T                    33501
#define IDC_BUTTON_C                    33502
#define IDC_BUTTON_E                    33503
#define IDC_BUTTON_UPDOWN1              33507
 
#define IDC_BUTTON_D                     33701
#define IDC_BUTTON_F                     33702
#define IDC_BUTTON_NEQ                    33706
#define IDC_BUTTON_GT                    33707
#define IDC_BUTTON_LT                    33708
 
#define IDC_BUTTON_TMX                  34701
#define IDC_BUTTON_TMY                  34702
#define IDC_BUTTON_TMR                  34703
#define IDC_BUTTON_TML                  34704
#define IDC_BUTTON_CT                   34706
 
 
class CMyDlgBarFuncKey : public CDialogBar
{
    DECLARE_DYNAMIC(CMyDlgBarFuncKey)
 
    typedef struct tagStructButton {
        int nID;
        CString sCaption;
 
    }structButton;
 
public:
    CMyDlgBarFuncKey(CWnd* pParent = nullptr);   // 标准构造函数
    virtual ~CMyDlgBarFuncKey();
 
// 对话框数据
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_DIALOGBAR_FUNC_KEYS };
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
 
    DECLARE_MESSAGE_MAP()
public:
    CButton m_buttons[6][3][11];
    //CButton m_buttons_init[3][11];
    //CButton m_buttons_bit[3][11];
    //CButton m_buttons_compare[3][11];
    //CButton m_buttons_word[3][11];
    //CButton m_buttons_index[3][11];
    //CButton m_buttons_TMCT[3][11];
 
 
    int m_Lines = 3;
    CFont font1;
    int current_btn_window = 0;
    LRESULT OnInitDialog(WPARAM wParam, LPARAM lParam);
    virtual BOOL Create(CWnd* pParentWnd, UINT nIDTemplate, UINT nStyle, UINT nID);
    virtual void OnUpdateCmdUI(CFrameWnd* pTarget, BOOL bDisableIfNoHandler);
    void SetBtnDisplayESC();
    
 
    afx_msg void OnBnClickedButton1();
    afx_msg void OnBnClickedBtnAnd();
    afx_msg void OnBnClickedBtnOr();
    afx_msg void OnBnClickedBtnVline();
    afx_msg void OnBnClickedBtnOut();
    afx_msg void OnBnClickedBtnTmCt();
    afx_msg void OnBnClickedBtnFun();
    afx_msg void OnBnClickedBtnHLine();
    afx_msg void OnBnClickedBtnNot();
    afx_msg void OnBnClickedBtnIndex();
    afx_msg void OnBnClickedBtnMc();
    afx_msg void OnBnClickedBtnMce();
 
    afx_msg void OnBnClickedBtnSet();
    afx_msg void OnBnClickedBtnReset();
    afx_msg void OnBnClickedBtnDf();
    afx_msg void OnBnClickedBtnEnd();
    afx_msg void OnBnClickedBtnCompare();
    afx_msg void OnBnClickedBtnPFun();
    afx_msg void OnBnClickedBtnUpDown();
    afx_msg void OnBnClickedBtnBit();
    afx_msg void OnBnClickedBtnWord();
    afx_msg void OnBnClickedBtnInc1();
    afx_msg void OnBnClickedBtnInc2();
 
    afx_msg void OnBnClickedBtnPgConvert();
    afx_msg void OnBnClickedBtnOnline();
    afx_msg void OnBnClickedBtnOffline();
    afx_msg void OnBnClickedBtnClose();
    afx_msg void OnBnClickedBtnFind();
    afx_msg void OnBnClickedBtnNextWin();
    afx_msg void OnBnClickedBtnMonitor();
    afx_msg void OnBnClickedBtnStatus();
    afx_msg void OnBnClickedBtnRunProg();
    afx_msg void OnBnClickedBtnPlcRead();
    afx_msg void OnBnClickedBtnPlcWrite();
 
    afx_msg void OnBnClickedBtnX();
    afx_msg void OnBnClickedBtnY();
    afx_msg void OnBnClickedBtnR();
    afx_msg void OnBnClickedBtnL();
    afx_msg void OnBnClickedBtnP();
    afx_msg void OnBnClickedBtnCompare1();
    afx_msg void OnBnClickedBtnT();
    afx_msg void OnBnClickedBtnC();
    afx_msg void OnBnClickedBtnE();
 
    afx_msg void OnBnClickedBtnTmx();
    afx_msg void OnBnClickedBtnTmy();
    afx_msg void OnBnClickedBtnTmr();
    afx_msg void OnBnClickedBtnTml();
    afx_msg void OnBnClickedBtnCt();
 
    afx_msg void OnBnClickedBtnD();
    afx_msg void OnBnClickedBtnF();
    afx_msg void OnBnClickedBtnNEQ();
    afx_msg void OnBnClickedBtnGT();
    afx_msg void OnBnClickedBtnLT();
};