-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainfrm.cpp
517 lines (413 loc) · 14.7 KB
/
Mainfrm.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
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
////////////////////////////////////////////////////
// Mainfrm.cpp
#include "stdafx.h"
#include "Mainfrm.hpp"
#include "resource.h"
#include "Error.hpp"
#include "VisionRGBApp.hpp"
#define STATUS_ID 1211
// Definitions for the CMainFrame class
CMainFrame::CMainFrame(VisionRGBApp* pApp) : m_settingsDialog(IDD_DIALOG1), m_useBigIcons(FALSE), m_pApp(pApp)
{
// Constructor for CMainFrame. Its called after CFrame's constructor
//Set m_View as the view window of the frame
SetView(m_view);
// Set the registry key name, and load the initial window position
// Use a registry key name like "CompanyName\\Application"
LoadRegistrySettings(_T("R3.fyi\\VisionRGBApp"));
}
CMainFrame::~CMainFrame()
{
// Destructor for CMainFrame.
}
LRESULT CMainFrame::OnBeginAdjust(LPNMTOOLBAR pNMTB)
// Called when the user has begun customizing a toolbar. Here we save
// a copy of the ToolBar layout so it can be restored when the user
// selects the reset button.
{
CToolBar* pToolBar = static_cast<CToolBar*>(GetCWndPtr(pNMTB->hdr.hwndFrom));
assert(dynamic_cast<CToolBar*> (pToolBar));
int nResetCount = pToolBar->GetButtonCount();
m_resetButtons.clear();
for (int i = 0; i < nResetCount; i++)
{
TBBUTTON tbb;
pToolBar->GetButton(i, tbb);
m_resetButtons.push_back(tbb);
}
return TRUE;
}
BOOL CMainFrame::OnCommand(WPARAM wparam, LPARAM lparam)
{
// OnCommand responds to menu and and toolbar input
UNREFERENCED_PARAMETER(lparam);
UINT id = LOWORD(wparam);
switch (id)
{
case IDM_FILE_OPEN: return OnFileOpen();
case IDM_FILE_SAVE: return OnFileSave();
case IDM_FILE_SAVEAS: return OnFileSave();
case IDM_FILE_PRINT: return OnFilePrint();
case IDM_FILE_SETTINGS: return OnSettings();
case IDM_FILE_EXIT: return OnFileExit();
case IDW_VIEW_STATUSBAR: return OnViewStatusBar();
case IDW_VIEW_TOOLBAR: return OnViewToolBar();
case IDM_TOOLBAR_CUSTOMIZE: return OnTBCustomize();
case IDM_TOOLBAR_DEFAULT: return OnTBDefault();
case IDM_TOOLBAR_BIGICONS: return OnTBBigIcons();
case IDM_HELP_ABOUT: return OnHelp();
}
return FALSE;
}
int CMainFrame::OnCreate(CREATESTRUCT& cs)
{
// OnCreate controls the way the frame is created.
// Overriding CFrame::OnCreate is optional.
// A menu is added if the IDW_MAIN menu resource is defined.
// Frames have all options enabled by default.
// Use the following functions to disable options.
UseIndicatorStatus(FALSE); // Don't show keyboard indicators in the StatusBar
// UseMenuStatus(FALSE); // Don't show menu descriptions in the StatusBar
// UseReBar(FALSE); // Don't use a ReBar
// UseStatusBar(FALSE); // Don't use a StatusBar
// UseThemes(FALSE); // Don't use themes
// UseToolBar(FALSE); // Don't use a ToolBar
// call the base class function
CFrame::OnCreate(cs);
// Add the CCS_ADJUSTABLE style to the ToolBar
DWORD style = GetToolBar().GetStyle();
GetToolBar().SetStyle(CCS_ADJUSTABLE | style);
// Untick the Large Icons menu item
GetFrameMenu().CheckMenuItem(IDM_TOOLBAR_BIGICONS, MF_BYCOMMAND | MF_UNCHECKED);
GetStatusBar().SetWindowLongPtr(GWLP_ID, STATUS_ID);
return 0;
}
LRESULT CMainFrame::OnDrawItem(UINT msg, WPARAM wparam, LPARAM lparam)
{
UNREFERENCED_PARAMETER(msg);
// Perform the owner draw for Part 3 in the status bar
LPDRAWITEMSTRUCT pDrawItem = (LPDRAWITEMSTRUCT)lparam;
if (pDrawItem->CtlID == STATUS_ID) // Message comes from the status bar
{
CRect partRect = pDrawItem->rcItem;
CDC dc;
dc.Attach(pDrawItem->hDC);
// Display the background and text
dc.SolidFill(RGB(0, 255, 0), partRect);
dc.SetBkMode(TRANSPARENT);
dc.TextOut(partRect.left+2, partRect.top+2, _T("60 fps"), 6);
return TRUE;
}
// Allow the frame to perform owner drawing menu items.
return CFrame::OnDrawItem(msg, wparam, lparam);
}
LRESULT CMainFrame::OnCustHelp(LPNMHDR pNMHDR)
// Called when the help button on the customize dialog is pressed
{
UNREFERENCED_PARAMETER(pNMHDR);
MessageBox(_T("Help Button Pressed"), _T("Help"), MB_ICONINFORMATION | MB_OK);
return 0;
}
LRESULT CMainFrame::OnEndAdjust(LPNMHDR pNMHDR)
// Called when the user has stopped customizing a toolbar.
{
UNREFERENCED_PARAMETER(pNMHDR);
return TRUE;
}
void CMainFrame::OnInitialUpdate()
{
// The frame is now created.
// Place any additional startup code here.
ReBarTheme rt = { TRUE, RGB(240, 240, 240), RGB(252, 252, 252), NULL, NULL, TRUE, FALSE, FALSE, TRUE, TRUE, FALSE };
SetReBarTheme(rt);
StatusBarTheme sbt = { TRUE, RGB(240, 240 ,240), RGB(240, 240, 240) };
SetStatusBarTheme(sbt);
ToolBarTheme tbt = { TRUE, RGB(229,243,255), RGB(229,243,255), RGB(179,215,243), RGB(179,215,243), RGB(102, 176, 235) };
SetToolBarTheme(tbt);
MenuTheme mt = { TRUE, RGB(229,243,255), RGB(229,243,255), RGB(179,215,243), RGB(179,215,243), RGB(102, 176, 235) };
SetMenuTheme(mt);
SetupStatusBar();
TRACE("Frame created\n");
//Store the current ToolBar
SaveTBDefault();
}
BOOL CMainFrame::OnFileExit()
{
// Issue a close request to the frame
PostMessage(WM_CLOSE);
return TRUE;
}
BOOL CMainFrame::OnFileOpen()
{
CFileDialog fileDlg(TRUE);
// Bring up the file open dialog retrieve the selected filename
if (fileDlg.DoModal(*this) == IDOK)
{
// TODO:
// Add your own code here. Refer to the tutorial for additional information
}
return TRUE;
}
BOOL CMainFrame::OnFileSave()
{
CFileDialog fileDlg(FALSE);
// Bring up the file save dialog retrieve the selected filename
if (fileDlg.DoModal(*this) == IDOK)
{
// TODO:
// Add your own code here. Refer to the tutorial for additional information
}
return TRUE;
}
BOOL CMainFrame::OnFilePrint()
{
// Bring up a dialog to choose the printer
PRINTDLG pd;
ZeroMemory(&pd, sizeof(PRINTDLG));
pd.lStructSize = sizeof( pd );
pd.Flags = PD_RETURNDC;
pd.hwndOwner = *this;
// Retrieve the printer DC
PrintDlg( &pd );
// TODO:
// Add your own code here. Refer to the tutorial for additional information
return TRUE;
}
BOOL CMainFrame::OnSettings()
{
//Display the Modeless Dialog
// A modeless dialog gives us an opportunity to pretranslatate messages
if (!m_settingsDialog)
m_settingsDialog.Create((HWND)*this); // throws a CWinException on failure
else
m_settingsDialog.BringWindowToTop();
return TRUE;
}
LRESULT CMainFrame::OnNotify(WPARAM wparam, LPARAM lparam)
// Process notification messages sent by child windows
{
LPNMTOOLBAR pNMTB = (LPNMTOOLBAR)lparam;
switch (pNMTB->hdr.code)
{
case TBN_QUERYDELETE: return OnQueryDelete(pNMTB);
case TBN_QUERYINSERT: return OnQueryInsert(pNMTB);
case TBN_CUSTHELP: return OnCustHelp((LPNMHDR)lparam);
case TBN_GETBUTTONINFO: return OnGetButtonInfo(pNMTB);
case TBN_BEGINADJUST: return OnBeginAdjust(pNMTB);
case TBN_ENDADJUST: return OnEndAdjust((LPNMHDR)lparam);
case TBN_TOOLBARCHANGE: return OnToolBarChange(pNMTB);
case TBN_RESET: return OnReset(pNMTB);
}
// Some notifications should return a value when handled
return CFrame::OnNotify(wparam, lparam);
}
LRESULT CMainFrame::OnGetButtonInfo(LPNMTOOLBAR pNMTB)
// Called once for each button during toolbar customization to populate the list
// of available buttons. Return FALSE when all buttons have been added.
{
// An array of TBBUTTON that contains all possible buttons
TBBUTTON buttonInfo[] =
{
{ 0, IDM_FILE_NEW, TBSTATE_ENABLED, 0, {0}, 0, 0 },
{ 1, IDM_FILE_OPEN, TBSTATE_ENABLED, 0, {0}, 0, 0 },
{ 2, IDM_FILE_SAVE, TBSTATE_ENABLED, 0, {0}, 0, 0 },
{ 3, IDM_EDIT_CUT, 0, 0, {0}, 0, 0 },
{ 4, IDM_EDIT_COPY, 0, 0, {0}, 0, 0 },
{ 5, IDM_EDIT_PASTE, 0, 0, {0}, 0, 0 },
{ 6, IDM_FILE_PRINT, TBSTATE_ENABLED, 0, {0}, 0, 0 },
{ 7, IDM_FILE_SETTINGS, TBSTATE_ENABLED, 0, {0}, 0, 0 },
{ 8, IDM_HELP_ABOUT, TBSTATE_ENABLED, 0, {0}, 0, 0 }
};
// An array of Button text strings (LPCTSTRs).
// These are displayed in the customize dialog.
LPCTSTR buttonText[] =
{
_T("New Document"),
_T("Open File"),
_T("Save File"),
_T("Cut"),
_T("Copy"),
_T("Paste"),
_T("Print"),
_T("Settings"),
_T("Help About")
};
// Pass the next button from the array. There is no need to filter out buttons
// that are already used. They will be ignored.
int buttons = sizeof(buttonInfo) / sizeof(TBBUTTON);
if (pNMTB->iItem < buttons)
{
pNMTB->tbButton = buttonInfo[pNMTB->iItem];
StrCopy(pNMTB->pszText, buttonText[pNMTB->iItem], pNMTB->cchText);
return TRUE; // Load the next button.
}
return FALSE; // No more buttons.
}
LRESULT CMainFrame::OnQueryDelete(LPNMTOOLBAR pNMTB)
// Called when a button may be deleted from a toolbar while the user is customizing the toolbar.
// Return TRUE to permit button deletion, and FALSE to prevent it.
{
UNREFERENCED_PARAMETER(pNMTB);
// Permit all buttons to be deleted
return TRUE;
}
LRESULT CMainFrame::OnQueryInsert(LPNMTOOLBAR pNMTB)
// Called when a button may be inserted to the left of the specified button while the user
// is customizing a toolbar. Return TRUE to permit button deletion, and FALSE to prevent it.
{
UNREFERENCED_PARAMETER(pNMTB);
// Permit all buttons to be inserted
return TRUE;
}
LRESULT CMainFrame::OnReset(LPNMTOOLBAR pNMTB)
// Called when the user presses the Reset button on teh ToolBar customize dialog.
// Here we restore the Toolbar to the settings saved in OnBeginAdjust.
{
CToolBar* pToolBar = static_cast<CToolBar*>(GetCWndPtr(pNMTB->hdr.hwndFrom));
assert(dynamic_cast<CToolBar*> (pToolBar));
// Remove all current buttons
int nCount = pToolBar->GetButtonCount();
for (int i = nCount - 1; i >= 0; i--)
{
pToolBar->DeleteButton(i);
}
// Restore buttons from info stored in m_vTBBReset
int nResetCount = static_cast<int>(m_resetButtons.size());
for (int j = 0; j < nResetCount; j++)
{
TBBUTTON tbb = m_resetButtons[j];
pToolBar->InsertButton(j, tbb);
}
RecalcLayout();
return TRUE;
}
LRESULT CMainFrame::OnToolBarChange(LPNMTOOLBAR pNMTB)
// Called when the toolbar has been changed during customization.
{
UNREFERENCED_PARAMETER(pNMTB);
// Reposition the toolbar
RecalcLayout();
return TRUE;
}
BOOL CMainFrame::OnTBBigIcons()
// Toggle the Image size for the ToolBar by changing Image Lists.
{
m_useBigIcons = !m_useBigIcons;
GetFrameMenu().CheckMenuItem(IDM_TOOLBAR_BIGICONS, MF_BYCOMMAND | (m_useBigIcons ? MF_CHECKED : MF_UNCHECKED));
if (m_useBigIcons)
{
// Set Large icons
SetToolBarImages(RGB(192, 192, 192), IDW_MAINBIG, 0, 0);
}
else
{
// Set Small icons
SetToolBarImages(RGB(192, 192, 192), IDW_MAIN, 0, 0);
}
RecalcLayout();
GetToolBar().Invalidate();
return TRUE;
}
BOOL CMainFrame::OnTBCustomize()
{
// Customize CFrame's Toolbar
GetToolBar().Customize();
return TRUE;
}
BOOL CMainFrame::OnTBDefault()
// Set the Toolbar back to its intial settings.
{
// Remove all current buttons
int count = GetToolBar().GetButtonCount();
for (int i = count - 1; i >= 0; i--)
{
GetToolBar().DeleteButton(i);
}
// Restore buttons from info stored in m_vTBBDefault
int nDefaultCount = static_cast<int>(m_defaultButtons.size());
for (int j = 0; j < nDefaultCount; j++)
{
TBBUTTON tbb = m_defaultButtons[j];
GetToolBar().InsertButton(j, tbb);
}
RecalcLayout();
return TRUE;
}
void CMainFrame::SaveTBDefault()
// Saves the initial Toolbar configuration in a vector of TBBUTTON
{
int nCount = GetToolBar().GetButtonCount();
for (int i = 0; i < nCount; i++)
{
TBBUTTON tbb;
GetToolBar().GetButton(i, tbb);
m_defaultButtons.push_back(tbb);
}
}
void CMainFrame::SetupToolBar()
{
// Set the Resource IDs for the toolbar buttons
AddToolBarButton(IDM_FILE_NEW);
AddToolBarButton(IDM_FILE_OPEN);
AddToolBarButton(IDM_FILE_SAVE);
AddToolBarButton(0); // Separator
AddToolBarButton(IDM_EDIT_CUT, FALSE); // disabled button
AddToolBarButton(IDM_EDIT_COPY, FALSE); // disabled button
AddToolBarButton(IDM_EDIT_PASTE, FALSE); // disabled button
AddToolBarButton(0); // Separator
AddToolBarButton(IDM_FILE_PRINT);
AddToolBarButton(0); // Separator
AddToolBarButton(IDM_FILE_SETTINGS);
AddToolBarButton(0); // Separator
AddToolBarButton(IDM_HELP_ABOUT);
AddInputList();
}
void CMainFrame::SetupStatusBar()
{
CStatusBar &sb = GetStatusBar();
g_statusBar = &sb; // register status bar globally for error logging
CRect clientRect = GetClientRect();
int width = MAX(270, clientRect.right);
sb.SetPartWidth(0, width - 170);
sb.SetPartWidth(1, 120);
sb.SetPartWidth(2, 50);
CString resString;
resString.Format(TEXT("%i x %i 60.000Hz"), m_pApp->width, m_pApp->height);
sb.SetPartText(1, resString);
sb.SetPartText(2, _T(""), SBT_OWNERDRAW);
}
void CMainFrame::AddInputList()
{
int comboWidth = 120;
AddToolBarBand(m_inputBar, 0, IDC_INPUTBAR);
m_inputBar.AddButton(IDM_INPUT);
m_inputBar.SetButtonStyle(IDM_INPUT, TBSTYLE_SEP); // Convert the button to a separator
m_inputBar.SetButtonWidth(IDM_INPUT, comboWidth);
// Determine the size and position of the ComboBox
int index = m_inputBar.CommandToIndex(IDM_INPUT);
CRect rc = m_inputBar.GetItemRect(index);
// Create and position the ComboBox window
m_inputList.CreateEx(NULL, WC_COMBOBOX, TEXT(""), WS_VISIBLE | WS_CHILD | CBS_DROPDOWNLIST | WS_CLIPCHILDREN, rc, m_inputBar, NULL);
// Set ComboBox Height
m_inputList.SendMessage(CB_SETITEMHEIGHT, (WPARAM)-1, (LPARAM)rc.Height()-6);
// Add items
m_inputList.AddString(TEXT("Input 1"));
m_inputList.AddString(TEXT("Input 2"));
m_inputList.SetCurSel(0);
m_inputList.SetFont(GetWindowsDefaultFont());
RecalcLayout();
GetReBar().SendMessage(RB_SHOWBAND, GetReBar().GetBand(m_inputBar), TRUE);
GetReBar().MoveBandsLeft();
}
LRESULT CMainFrame::WndProc(UINT msg, WPARAM wparam, LPARAM lparam)
{
// switch (msg)
// {
//
// }
// pass unhandled messages on for default processing
return WndProcDefault(msg, wparam, lparam);
}
HWND CMainFrame::GetView() {
return m_view.GetHwnd();
}