-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDlgDirections.cpp
More file actions
165 lines (134 loc) · 3.49 KB
/
DlgDirections.cpp
File metadata and controls
165 lines (134 loc) · 3.49 KB
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
// DlgDirections.cpp : implementation file
//
#include "stdafx.h"
#include "WinDE.h"
#include "DlgDirections.h"
#include "Resource.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// DlgDirections dialog
DlgDirections::DlgDirections(CWnd* pParent /*=NULL*/)
: CDialog(DlgDirections::IDD, pParent)
{
//{{AFX_DATA_INIT(DlgDirections)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void DlgDirections::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(DlgDirections)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(DlgDirections, CDialog)
//{{AFX_MSG_MAP(DlgDirections)
ON_BN_CLICKED(IDC_UP, OnUp)
ON_BN_CLICKED(IDC_NORTHWEST, OnNorthwest)
ON_BN_CLICKED(IDC_NORTH, OnNorth)
ON_BN_CLICKED(IDC_NORTHEAST, OnNortheast)
ON_BN_CLICKED(IDC_WEST, OnWest)
ON_BN_CLICKED(IDC_LOOK, OnLook)
ON_BN_CLICKED(IDC_EAST, OnEast)
ON_BN_CLICKED(IDC_SOUTHWEST, OnSouthwest)
ON_BN_CLICKED(IDC_SOUTH, OnSouth)
ON_BN_CLICKED(IDC_SOUTHEAST, OnSoutheast)
ON_BN_CLICKED(IDC_DOWN, OnDown)
ON_WM_CLOSE()
ON_WM_PAINT()
ON_BN_DOUBLECLICKED(IDC_NORTH, OnNorth)
ON_BN_DOUBLECLICKED(IDC_SOUTH, OnSouth)
ON_BN_DOUBLECLICKED(IDC_EAST, OnEast)
ON_BN_DOUBLECLICKED(IDC_WEST, OnWest)
ON_BN_DOUBLECLICKED(IDC_UP, OnUp)
ON_BN_DOUBLECLICKED(IDC_DOWN, OnDown)
ON_BN_DOUBLECLICKED(IDC_NORTHWEST, OnNorthwest)
ON_BN_DOUBLECLICKED(IDC_NORTHEAST, OnNortheast)
ON_BN_DOUBLECLICKED(IDC_SOUTHWEST, OnSouthwest)
ON_BN_DOUBLECLICKED(IDC_SOUTHEAST, OnSoutheast)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// DlgDirections message handlers
void DlgDirections::OnUp()
{
((CWinDEDlg*)GetParent())->OnUp();
}
void DlgDirections::OnNorthwest()
{
((CWinDEDlg*)GetParent())->OnNorthWest();
}
void DlgDirections::OnNorth()
{
((CWinDEDlg*)GetParent())->OnNorth();
}
void DlgDirections::OnNortheast()
{
((CWinDEDlg*)GetParent())->OnNorthEast();
}
void DlgDirections::OnWest()
{
((CWinDEDlg*)GetParent())->OnWest();
}
void DlgDirections::OnLook()
{
((CWinDEDlg*)GetParent())->OnLook();
}
void DlgDirections::OnEast()
{
((CWinDEDlg*)GetParent())->OnEast();
}
void DlgDirections::OnSouthwest()
{
((CWinDEDlg*)GetParent())->OnSouthWest();
}
void DlgDirections::OnSouth()
{
((CWinDEDlg*)GetParent())->OnSouth();
}
void DlgDirections::OnSoutheast()
{
((CWinDEDlg*)GetParent())->OnSouthEast();
}
void DlgDirections::OnDown()
{
((CWinDEDlg*)GetParent())->OnDown();
}
BOOL DlgDirections::DestroyWindow()
{
return CDialog::DestroyWindow();
}
void DlgDirections::OnClose()
{
((CWinDEDlg*)GetParent())->OnDirections();
CDialog::OnClose();
}
BOOL DlgDirections::OnInitDialog()
{
CDialog::OnInitDialog();
north.AutoLoad(IDC_NORTH, this);
south.AutoLoad(IDC_SOUTH, this);
east.AutoLoad(IDC_EAST, this);
west.AutoLoad(IDC_WEST, this);
northwest.AutoLoad(IDC_NORTHWEST, this);
northeast.AutoLoad(IDC_NORTHEAST, this);
southwest.AutoLoad(IDC_SOUTHWEST, this);
southeast.AutoLoad(IDC_SOUTHEAST, this);
up.AutoLoad(IDC_UP, this);
down.AutoLoad(IDC_DOWN, this);
look.AutoLoad(IDC_LOOK, this);
return TRUE;
}
void DlgDirections::OnPaint()
{
CPaintDC dc(this); // device context for painting
CRect rect;
CBrush br(RGB(192, 192, 192));
GetWindowRect(rect);
ScreenToClient(rect);
dc.FillRect(rect, &br);
}