-
Notifications
You must be signed in to change notification settings - Fork 4
/
GHLPokeMachineDlg.cpp
303 lines (243 loc) · 6.82 KB
/
GHLPokeMachineDlg.cpp
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
// GHLPokeMachineDlg.cpp : fichier d'implémentation
//
#include "pch.h"
#include "framework.h"
#include "GHLPokeMachine.h"
#include "GHLPokeMachineDlg.h"
#include "afxdialogex.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
enum { STOPPED, RUNNING };
PDWORD dwThreadIdArray;
PHANDLE hThreadArray;
PDEVICE_DATA pDeviceData;
int Status = STOPPED;
// boîte de dialogue CAboutDlg utilisée pour la boîte de dialogue 'À propos de' pour votre application
class CAboutDlg : public CDialogEx
{
public:
CAboutDlg();
// Données de boîte de dialogue
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_ABOUTBOX };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // Prise en charge de DDX/DDV
// Implémentation
protected:
DECLARE_MESSAGE_MAP()
};
CAboutDlg::CAboutDlg() : CDialogEx(IDD_ABOUTBOX)
{
}
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CAboutDlg, CDialogEx)
END_MESSAGE_MAP()
// boîte de dialogue de CGHLPokeMachineDlg
CGHLPokeMachineDlg::CGHLPokeMachineDlg(CWnd* pParent /*=nullptr*/)
: CDialogEx(IDD_GHLPOKEMACHINE_DIALOG, pParent)
{
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}
void CGHLPokeMachineDlg::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CGHLPokeMachineDlg, CDialogEx)
ON_WM_SYSCOMMAND()
ON_WM_PAINT()
ON_WM_QUERYDRAGICON()
ON_BN_CLICKED(IDCANCEL, &CGHLPokeMachineDlg::OnBnClickedCancel)
ON_BN_CLICKED(IDSTART, &CGHLPokeMachineDlg::OnBnClickedStart)
END_MESSAGE_MAP()
// gestionnaires de messages de CGHLPokeMachineDlg
BOOL CGHLPokeMachineDlg::OnInitDialog()
{
CDialogEx::OnInitDialog();
// Ajouter l'élément de menu "À propos de..." au menu Système.
// IDM_ABOUTBOX doit se trouver dans la plage des commandes système.
ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
ASSERT(IDM_ABOUTBOX < 0xF000);
CMenu* pSysMenu = GetSystemMenu(FALSE);
if (pSysMenu != nullptr)
{
BOOL bNameValid;
CString strAboutMenu;
bNameValid = strAboutMenu.LoadString(IDS_ABOUTBOX);
ASSERT(bNameValid);
if (!strAboutMenu.IsEmpty())
{
pSysMenu->AppendMenu(MF_SEPARATOR);
pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
}
}
// Définir l'icône de cette boîte de dialogue. L'infrastructure effectue cela automatiquement
// lorsque la fenêtre principale de l'application n'est pas une boîte de dialogue
SetIcon(m_hIcon, TRUE); // Définir une grande icône
SetIcon(m_hIcon, FALSE); // Définir une petite icône
int NbRemote = 0;
BOOL FailureDeviceNotFound;
CWnd* Text;
int ItemNb;
StartGHPoke(&FailureDeviceNotFound, &dwThreadIdArray, &hThreadArray, &pDeviceData, &NbRemote);
if (NbRemote == 0)
{
Text = GetDlgItem(IDC_STATIC);
SetStaticText(Text, L"No device found");
}
else
{
for (int i = 0; i < NbRemote; i++)
{
ItemNb = GetItemNb(i);
pDeviceData[i].DlgItem = GetDlgItem(ItemNb);
}
Status = RUNNING;
SetStartThread(TRUE);
Text = GetDlgItem(IDSTART);
if (Text)
{
Text->SetWindowTextW(L"Stop");
}
}
/*
// TODO: Modifiier pour minimization
// Declare NOTIFYICONDATA details.
//
// Error handling is omitted here for brevity. Do not omit it in your code.
NOTIFYICONDATA nid = {};
nid.cbSize = sizeof(nid);
nid.hWnd = hWnd;
nid.uFlags = NIF_ICON | NIF_TIP | NIF_GUID;
// Note: This is an example GUID only and should not be used.
// Normally, you should use a GUID-generating tool to provide the value to
// assign to guidItem.
static const GUID myGUID =
{ 0x23977b55, 0x10e0, 0x4041, {0xb8, 0x62, 0xb1, 0x95, 0x41, 0x96, 0x36, 0x69} };
nid.guidItem = myGUID;
// This text will be shown as the icon's tooltip.
StringCchCopy(nid.szTip, ARRAYSIZE(nid.szTip), L"Test application");
// Load the icon for high DPI.
LoadIconMetric(hInst, MAKEINTRESOURCE(IDI_SMALL), LIM_SMALL, &(nid.hIcon));
// Show the notification.
Shell_NotifyIcon(NIM_ADD, &nid) ? S_OK : E_FAIL;
*/
return TRUE; // retourne TRUE, sauf si vous avez défini le focus sur un contrôle
}
/* Lorsqu'on appuis sur qqch?*/
void CGHLPokeMachineDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
if ((nID & 0xFFF0) == IDM_ABOUTBOX)
{
CAboutDlg dlgAbout;
dlgAbout.DoModal();
}
else if ((nID & 0xFFF0) == 0xF120)
{
/*Maximise*/
CDialogEx::OnSysCommand(nID, lParam);
}
else if ((nID & 0xFFF0) == 0xF020)
{
/*Minimize*/
CDialogEx::OnSysCommand(nID, lParam);
}
else
{
CDialogEx::OnSysCommand(nID, lParam);
}
}
// Si vous ajoutez un bouton Réduire à votre boîte de dialogue, vous devez utiliser le code ci-dessous
// pour dessiner l'icône. Pour les applications MFC utilisant le modèle Document/Vue,
// cela est fait automatiquement par l'infrastructure.
void CGHLPokeMachineDlg::OnPaint()
{
if (IsIconic())
{
CPaintDC dc(this); // contexte de périphérique pour la peinture
SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0);
// Centrer l'icône dans le rectangle client
int cxIcon = GetSystemMetrics(SM_CXICON);
int cyIcon = GetSystemMetrics(SM_CYICON);
CRect rect;
GetClientRect(&rect);
int x = (rect.Width() - cxIcon + 1) / 2;
int y = (rect.Height() - cyIcon + 1) / 2;
// Dessiner l'icône
dc.DrawIcon(x, y, m_hIcon);
}
else
{
/* Passer de minimize a grand*/
CDialogEx::OnPaint();
}
}
// Le système appelle cette fonction pour obtenir le curseur à afficher lorsque l'utilisateur fait glisser
// la fenêtre réduite.
HCURSOR CGHLPokeMachineDlg::OnQueryDragIcon()
{
return static_cast<HCURSOR>(m_hIcon);
}
void CGHLPokeMachineDlg::OnBnClickedStart()
{
int NbRemote = 0;
BOOL FailureDeviceNotFound;
int ItemNb;
CWnd* Text;
switch(Status)
{
case STOPPED :
StartGHPoke(&FailureDeviceNotFound, &dwThreadIdArray, &hThreadArray, &pDeviceData, &NbRemote);
if ( NbRemote == 0 )
{
Text = GetDlgItem(IDC_STATIC);
SetStaticText(Text, L"No device found");
MessageBox( (LPCWSTR)L"Make sure your USB dongle is plugged into the computer and try again",
(LPCWSTR)L"GHLPokeMachine",
MB_ICONEXCLAMATION | MB_OK | MB_DEFBUTTON1
);
}
else
{
for ( int i = 0; i < NbRemote; i++ )
{
ItemNb = GetItemNb(i);
pDeviceData[i].DlgItem = GetDlgItem(ItemNb);
}
Status = RUNNING;
SetStartThread(TRUE);
Text = GetDlgItem(IDSTART);
if (Text)
{
Text->SetWindowTextW(L"Stop");
}
}
break;
case RUNNING:
StopGHPoke(&dwThreadIdArray, &hThreadArray, &pDeviceData);
Status = STOPPED;
Text = GetDlgItem(IDC_STATIC);
SetStaticText(Text, L" ");
Text = GetDlgItem(IDC_STATIC2);
SetStaticText(Text, L" ");
Text = GetDlgItem(IDC_STATIC3);
SetStaticText(Text, L" ");
Text = GetDlgItem(IDC_STATIC4);
SetStaticText(Text, L" ");
Text = GetDlgItem(IDSTART);
if (Text)
{
Text->SetWindowTextW(L"Start");
}
break;
}
}
void CGHLPokeMachineDlg::OnBnClickedCancel()
{
StopGHPoke(&dwThreadIdArray, &hThreadArray, &pDeviceData);
CDialogEx::OnCancel();
}