-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIoCheckButton.cpp
479 lines (391 loc) · 9.06 KB
/
IoCheckButton.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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
// IoCheckButton.cpp : implementation file
//
#include "stdafx.h"
#include "IoCheckButton.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CIoCheckButton
CIoCheckButton::CIoCheckButton()
{
d_pOutBit = NULL;
}
CIoCheckButton::~CIoCheckButton()
{
}
BEGIN_MESSAGE_MAP(CIoCheckButton, CButton)
//{{AFX_MSG_MAP(CIoCheckButton)
ON_CONTROL_REFLECT(BN_CLICKED, OnClicked)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CIoCheckButton message handlers
void CIoCheckButton::Init(COutBit* pOutBit)
{
// ModifyStyle(0,BS_OWNERDRAW,0);
d_pOutBit = pOutBit;
Refresh();
}
void CIoCheckButton::Refresh()
{
/*if (!d_pOutBit)
{
}*/
ASSERT(d_pOutBit);
SetCheck(d_pOutBit->Get());
}
void CIoCheckButton::OnClicked()
{
// TODO: Add your control notification handler code here
/*if (!d_pOutBit)
{
}*/
if(GetCheck())
d_pOutBit->On();
else
d_pOutBit->Off();
Sleep(100);
}
void CIoCheckButton::DrawItem(LPDRAWITEMSTRUCT lpDIS)
{
CDC* pDC = CDC::FromHandle(lpDIS->hDC);//???????DC
UINT state = lpDIS->itemState; //得到状态
CRect focusRect, btnRect;//两个矩形,表示得当输入焦点时的虚线矩形和按钮矩形
focusRect.CopyRect(&lpDIS->rcItem);
btnRect.CopyRect(&lpDIS->rcItem);
//
// 得当Button上文字
//
const int bufSize = 512;
TCHAR buffer[bufSize];
GetWindowText(buffer, bufSize);
// 使用m_fg, m_bg颜色利用 Draw3dRect(...)绘制按钮边框
// FillRect(...)填充按钮内部
//CBrush brh(RGB(0,255,0));
// CBrush brh1(RGB(28, 69, 125));
CBrush brh(RGB(100,0,0));
CBrush brh1(RGB(120,180,180));
CBrush brh2(RGB(100,100,100));
// DrawText(...)绘制文字
// pDC->FillRect(btnRect,&brh1);
//根据当前状态调整显示
//
pDC->SetTextColor(RGB(255,255,255));
if (state & ODS_FOCUS)
{
//得到输入焦点,通过focusRect画虚线
if (state & ODS_SELECTED)
{
if (d_pOutBit)
{
// 被按下,绘制下陷边框
if( d_pOutBit->Get() == 0)
{
pDC->FillRect(btnRect,&brh);
pDC->SetTextColor(RGB(0,0,0));
}
else
{
pDC->FillRect(btnRect,&brh1);
}
d_pOutBit->Get() == 0? d_pOutBit->On(): d_pOutBit->Off();
}
}
}
else if (state & ODS_DISABLED)
{
//失效,通过m_disabled_fg, m_disabled_bg 重绘按钮内部
pDC->FillRect(btnRect,&brh2);
}
else
{
pDC->FillRect(btnRect,&brh1);
}
btnRect.top += 12;
pDC->SetBkMode(TRANSPARENT);
if (d_pOutBit)
{
if( d_pOutBit->Get() == 1)
{
pDC->SetTextColor(RGB(0,0,0));
}
else
{
pDC->SetTextColor(RGB(255,255,255));
}
}
pDC->DrawText(buffer,btnRect,DT_VCENTER|DT_CENTER);
}
//=====================================
CInCheckButton::CInCheckButton()
{
d_pInBit = NULL;
}
CInCheckButton::~CInCheckButton()
{
}
BEGIN_MESSAGE_MAP(CInCheckButton, CButton)
//{{AFX_MSG_MAP(CInCheckButton)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CIoCheckButton message handlers
void CInCheckButton::Init(CInBit* pInBit)
{
// ModifyStyle(0,BS_OWNERDRAW,0);
d_pInBit = pInBit;
}
void CInCheckButton::Refresh()
{
if (!d_pInBit)
{
}
ASSERT(d_pInBit);
SetCheck(d_pInBit->Get());
}
void CInCheckButton::OnClicked()
{
// TODO: Add your control notification handler code here
// if(GetCheck())
// d_pOutBit->On();
// else
// d_pOutBit->Off();
// Sleep(100);
}
void CInCheckButton::DrawItem(LPDRAWITEMSTRUCT lpDIS)
{
CDC* pDC = CDC::FromHandle(lpDIS->hDC);//???????DC
UINT state = lpDIS->itemState; //得到状态
CRect focusRect, btnRect;//两个矩形,表示得当输入焦点时的虚线矩形和按钮矩形
focusRect.CopyRect(&lpDIS->rcItem);
btnRect.CopyRect(&lpDIS->rcItem);
//
// 得当Button上文字
//
const int bufSize = 512;
TCHAR buffer[bufSize];
GetWindowText(buffer, bufSize);
// 使用m_fg, m_bg颜色利用 Draw3dRect(...)绘制按钮边框
// FillRect(...)填充按钮内部
//CBrush brh(RGB(0,255,0));
// CBrush brh1(RGB(28, 69, 125));
CBrush brh(RGB(100,0,0));
CBrush brh1(RGB(120,180,180));
CBrush brh2(RGB(100,100,100));
// DrawText(...)绘制文字
// pDC->FillRect(btnRect,&brh1);
//根据当前状态调整显示
//
pDC->SetTextColor(RGB(255,255,255));
if (state & ODS_FOCUS)
{
//得到输入焦点,通过focusRect画虚线
if (state & ODS_SELECTED)
{
if (!d_pInBit)
{
}
else
{
// 被按下,绘制下陷边框
if( d_pInBit->Get() == 0)
{
pDC->FillRect(btnRect,&brh);
pDC->SetTextColor(RGB(0,0,0));
}
else
{
pDC->FillRect(btnRect,&brh1);
}
}
// d_pOutBit->Get() == 0? d_pOutBit->On(): d_pOutBit->Off();
}
}
else if (state & ODS_DISABLED)
{
//失效,通过m_disabled_fg, m_disabled_bg 重绘按钮内部
pDC->FillRect(btnRect,&brh2);
}
else
{
pDC->FillRect(btnRect,&brh1);
}
btnRect.top += 12;
pDC->SetBkMode(TRANSPARENT);
if (!d_pInBit)
{
}
else
{
if( d_pInBit->Get() == 1)
{
pDC->SetTextColor(RGB(0,0,0));
}
else
{
pDC->SetTextColor(RGB(255,255,255));
}
}
pDC->DrawText(buffer,btnRect,DT_VCENTER|DT_CENTER);
}
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// CIoCheck_3_Button
CIoCheck_3_Button::CIoCheck_3_Button()
{
d_pOutBit =NULL;
d_pOutBit2 =NULL;
d_pOutBit3 =NULL;
}
CIoCheck_3_Button::~CIoCheck_3_Button()
{
d_pOutBit =NULL;
d_pOutBit2 =NULL;
d_pOutBit3 =NULL;
}
BEGIN_MESSAGE_MAP(CIoCheck_3_Button, CButton)
//{{AFX_MSG_MAP(CIoCheck_3_Button)
ON_CONTROL_REFLECT(BN_CLICKED, OnClicked)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CIoCheckButton message handlers
void CIoCheck_3_Button::Init(COutBit* pOutBit,COutBit* pOutBit2,COutBit* pOutBit3)
{
// ModifyStyle(0,BS_OWNERDRAW,0);
d_pOutBit = pOutBit;
d_pOutBit2 = pOutBit2;
d_pOutBit3 = pOutBit3;
}
void CIoCheck_3_Button::Refresh()
{
if (!d_pOutBit)
{
return ;
}
ASSERT(d_pOutBit);
SetCheck(d_pOutBit->Get());
}
void CIoCheck_3_Button::OnClicked()
{
// TODO: Add your control notification handler code here
// if(GetCheck())
// d_pOutBit->On();
// else
// d_pOutBit->Off();
// Sleep(100);
}
void CIoCheck_3_Button::DrawItem(LPDRAWITEMSTRUCT lpDIS)
{
CDC* pDC = CDC::FromHandle(lpDIS->hDC);//???????DC
UINT state = lpDIS->itemState; //得到状态
CRect focusRect, btnRect;//两个矩形,表示得当输入焦点时的虚线矩形和按钮矩形
focusRect.CopyRect(&lpDIS->rcItem);
btnRect.CopyRect(&lpDIS->rcItem);
//
// 得当Button上文字
//
const int bufSize = 512;
TCHAR buffer[bufSize];
GetWindowText(buffer, bufSize);
// 使用m_fg, m_bg颜色利用 Draw3dRect(...)绘制按钮边框
// FillRect(...)填充按钮内部
CBrush brh(RGB(0,255,0));
CBrush brh1(RGB(0,162,232));//(RGB(28, 69, 125));//RGB(200,200,200));//(142,180,225));//(RGB(28, 69, 125));
CBrush brh2(RGB(217,223,228));//(RGB(100,100,100));
// DrawText(...)绘制文字
// pDC->FillRect(btnRect,&brh1);
//根据当前状态调整显示
//00
pDC->SetTextColor(RGB(0,0,0));
if (state & ODS_FOCUS)
{
//得到输入焦点,通过focusRect画虚线
if (state & ODS_SELECTED)
{
if (d_pOutBit)
{
// 被按下,绘制下陷边框
if( d_pOutBit->Get() == 0)
{
pDC->FillRect(btnRect,&brh);
pDC->SetTextColor(RGB(0,0,0));
}
else
{
pDC->FillRect(btnRect,&brh1);
}
if (d_pOutBit->Get() == 0)
{
if (d_pOutBit2)
{
d_pOutBit2->Off();
}
if (d_pOutBit3)
{
d_pOutBit3->Off();
}
d_pOutBit->On();
}
else
{
d_pOutBit->Off();
}
//d_pOutBit->Get() == 0 ?d_pOutBit2->Off(),d_pOutBit->On(): d_pOutBit->Off();
}
}
}
else if (state & ODS_DISABLED)
{
//失效,通过m_disabled_fg, m_disabled_bg 重绘按钮内部
pDC->FillRect(btnRect,&brh2);
}
else
{
pDC->FillRect(btnRect,&brh1);
}
btnRect.top += 12;
pDC->SetBkMode(TRANSPARENT);
if (d_pOutBit)
{
if( d_pOutBit->Get() == 1)
{
pDC->SetTextColor(RGB(0,0,0));
}
else
{
pDC->SetTextColor(RGB(255,255,255));
}
}
pDC->DrawText(buffer,btnRect,DT_VCENTER|DT_CENTER);
}
void CIoCheck_3_Button::Out_On()
{
if (d_pOutBit){
d_pOutBit->On();
}
if (d_pOutBit2){
d_pOutBit2->Off();
}
if (d_pOutBit3){
d_pOutBit3->Off();
}
Refresh();
}
void CIoCheck_3_Button::Out_Off()
{
if (d_pOutBit){
d_pOutBit->Off();
}
if (d_pOutBit2){
d_pOutBit2->Off();
}
if (d_pOutBit3){
d_pOutBit3->Off();
}
Refresh();
}