-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathView.cpp
74 lines (56 loc) · 1.83 KB
/
View.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
//////////////////////////////////////////////
// View.cpp
// Definitions for the CView class
#include "stdafx.h"
#include "View.hpp"
#include "resource.h"
CView::CView()
{
}
int CView::OnCreate(CREATESTRUCT& cs)
{
UNREFERENCED_PARAMETER(cs);
return 0;
}
void CView::OnInitialUpdate()
// OnInitialUpdate is called immediately after the window is created
{
TRACE("View window created\n");
}
inline LRESULT CView::OnNotify(WPARAM wparam, LPARAM lparam)
{
UNREFERENCED_PARAMETER(wparam);
LPNMHDR pNMHDR = (LPNMHDR)lparam;
switch (pNMHDR->code)
{
// Pass the ToolBar's ToolTip info up to the frame
case TTN_GETDISPINFO: return GetParent().SendMessage(WM_NOTIFY, wparam, lparam);
}
return 0;
}
void CView::PreCreate(CREATESTRUCT& cs)
{
// Here we set the defaults used by the create function for the view window
// Preforming this is optional, but doing so allows us to
// take more precise control over the window we create.
}
void CView::PreRegisterClass(WNDCLASS& wc)
{
// Here we set the Window class parameters.
// Preforming this is optional, but doing so allows us to
// take more precise control over the type of window we create.
// Set the Window Class name
wc.lpszClassName = _T("Win32++ View");
// Set a background brush to white
wc.hbrBackground = (HBRUSH)::GetStockObject(WHITE_BRUSH);
// Set the default cursor
wc.hCursor = ::LoadCursor(NULL, IDC_ARROW);
// Set the class style (not to be confused with the window styles set in PreCreate)
wc.style = CS_DBLCLKS; // Generate left button double click messages
}
LRESULT CView::WndProc(UINT msg, WPARAM wparam, LPARAM lparam)
// All window messages for this window pass through WndProc
{
// pass unhandled messages on for default processing
return WndProcDefault(msg, wparam, lparam);
}