-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathWAS_NodeEditorHwndControl.cpp
More file actions
288 lines (262 loc) · 7.26 KB
/
WAS_NodeEditorHwndControl.cpp
File metadata and controls
288 lines (262 loc) · 7.26 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
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
#include "WAS_NodeEditorHwndControl.hpp"
#include "WAS_WindowsAppUtils.hpp"
#include "NE_Debug.hpp"
namespace WAS
{
static LRESULT CALLBACK NodeEditorStaticWindowProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
if (msg == WM_CREATE) {
LPCREATESTRUCT createStruct = LPCREATESTRUCT (lParam);
SetWindowLongPtr (hwnd, GWLP_USERDATA, (LONG_PTR) createStruct->lpCreateParams);
} else if (msg == WM_DESTROY) {
SetWindowLongPtr (hwnd, GWLP_USERDATA, 0);
}
NodeEditorHwndControl* control = (NodeEditorHwndControl*) GetWindowLongPtr (hwnd, GWLP_USERDATA);
if (control == nullptr) {
return DefWindowProc (hwnd, msg, wParam, lParam);
}
NUIE::NodeEditor* nodeEditor = control->GetNodeEditor ();
if (DBGERROR (nodeEditor == nullptr)) {
return DefWindowProc (hwnd, msg, wParam, lParam);
}
switch (msg) {
case WM_PAINT:
control->Draw ();
break;
case WM_ERASEBKGND:
return 0;
case WM_SIZE:
{
int newWidth = LOWORD (lParam);
int newHeight = HIWORD (lParam);
nodeEditor->OnResize (newWidth, newHeight);
}
break;
}
if (control->IsInputHandlingEnabled ()) {
switch (msg) {
case WM_LBUTTONDOWN:
{
SetWindowCapture (hwnd);
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor->OnMouseDown (GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Left, x, y);
}
break;
case WM_MBUTTONDOWN:
{
SetWindowCapture (hwnd);
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor->OnMouseDown (GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Middle, x, y);
}
break;
case WM_RBUTTONDOWN:
{
SetWindowCapture (hwnd);
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor->OnMouseDown (GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Right, x, y);
}
break;
case WM_LBUTTONUP:
{
ReleaseWindowCapture (hwnd);
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor->OnMouseUp (GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Left, x, y);
}
break;
case WM_MBUTTONUP:
{
ReleaseWindowCapture (hwnd);
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor->OnMouseUp (GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Middle, x, y);
}
break;
case WM_RBUTTONUP:
{
ReleaseWindowCapture (hwnd);
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor->OnMouseUp (GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Right, x, y);
}
break;
case WM_MOUSEMOVE:
{
SetFocus (hwnd);
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor->OnMouseMove (GetModiferKeysFromEvent (wParam), x, y);
}
break;
case WM_MOUSEWHEEL:
{
POINT mousePos;
mousePos.x = GET_X_LPARAM (lParam);
mousePos.y = GET_Y_LPARAM (lParam);
ScreenToClient (hwnd, &mousePos);
int delta = GET_WHEEL_DELTA_WPARAM (wParam);
NUIE::MouseWheelRotation rotation = delta > 0 ? NUIE::MouseWheelRotation::Forward : NUIE::MouseWheelRotation::Backward;
nodeEditor->OnMouseWheel (GetModiferKeysFromEvent (wParam), rotation, mousePos.x, mousePos.y);
}
break;
case WM_LBUTTONDBLCLK:
{
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor->OnMouseDoubleClick (GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Left, x, y);
}
break;
case WM_MBUTTONDBLCLK:
{
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor->OnMouseDoubleClick (GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Middle, x, y);
}
break;
case WM_RBUTTONDBLCLK:
{
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor->OnMouseDoubleClick (GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Right, x, y);
}
break;
case WM_KEYDOWN:
{
if (!control->IsMouseOverEditorWindow ()) {
break;
}
NUIE::CommandCode commandCode = NUIE::CommandCode::Undefined;
bool isControlPressed = (GetKeyState (VK_CONTROL) < 0);
bool isShiftPressed = (GetKeyState (VK_SHIFT) < 0);
if (isControlPressed) {
switch (wParam) {
case 'A':
commandCode = NUIE::CommandCode::SelectAll;
break;
case 'C':
commandCode = NUIE::CommandCode::Copy;
break;
case 'V':
commandCode = NUIE::CommandCode::Paste;
break;
case 'G':
if (isShiftPressed) {
commandCode = NUIE::CommandCode::Ungroup;
} else {
commandCode = NUIE::CommandCode::Group;
}
break;
case 'Z':
if (isShiftPressed) {
commandCode = NUIE::CommandCode::Redo;
} else {
commandCode = NUIE::CommandCode::Undo;
}
break;
}
} else {
switch (wParam) {
case VK_ESCAPE:
commandCode = NUIE::CommandCode::Escape;
break;
case VK_DELETE:
case VK_BACK:
commandCode = NUIE::CommandCode::Delete;
break;
}
}
if (commandCode != NUIE::CommandCode::Undefined) {
nodeEditor->ExecuteCommand (commandCode);
}
}
break;
case WM_CANCELMODE:
ReleaseWindowCapture (hwnd);
break;
}
}
return DefWindowProc (hwnd, msg, wParam, lParam);
}
NodeEditorHwndControl::NodeEditorHwndControl (const NUIE::NativeDrawingContextPtr& nativeContext) :
NativeNodeEditorControl (),
nodeEditor (nullptr),
nativeContext (nativeContext),
control ()
{
}
NodeEditorHwndControl::~NodeEditorHwndControl ()
{
}
bool NodeEditorHwndControl::Init (NUIE::NodeEditor* nodeEditorPtr, void* nativeParentHandle, int x, int y, int width, int height)
{
nodeEditor = nodeEditorPtr;
DBGASSERT (nodeEditor != nullptr);
bool controlInited = control.Init ((HWND) nativeParentHandle, NodeEditorStaticWindowProc, L"NodeEditorHwndControl", this);
if (DBGERROR (!controlInited)) {
return false;
}
HWND hwnd = control.GetWindowHandle ();
if (DBGERROR (hwnd == NULL)) {
return false;
}
nativeContext->Init (hwnd);
MoveWindow (hwnd, x, y, width, height, TRUE);
return true;
}
void* NodeEditorHwndControl::GetEditorNativeHandle () const
{
return control.GetWindowHandle ();
}
bool NodeEditorHwndControl::IsMouseOverEditorWindow () const
{
POINT mousePos;
GetCursorPos (&mousePos);
RECT rect;
HWND editorHwnd = (HWND) GetEditorNativeHandle ();
if (!GetWindowRect (editorHwnd, &rect)) {
return false;
}
return PtInRect (&rect, mousePos);
}
void NodeEditorHwndControl::Resize (int x, int y, int width, int height)
{
HWND hwnd = control.GetWindowHandle ();
if (hwnd == NULL) {
return;
}
MoveWindow (hwnd, x, y, width, height, TRUE);
if (nodeEditor != nullptr) {
nodeEditor->OnResize (width, height);
}
}
void NodeEditorHwndControl::Invalidate ()
{
HWND hwnd = control.GetWindowHandle ();
if (hwnd == NULL) {
return;
}
InvalidateRect (hwnd, NULL, FALSE);
}
void NodeEditorHwndControl::Draw ()
{
HWND hwnd = control.GetWindowHandle ();
if (hwnd == NULL) {
return;
}
if (nodeEditor != nullptr) {
nodeEditor->Draw ();
}
nativeContext->BlitToWindow (hwnd);
}
NUIE::DrawingContext& NodeEditorHwndControl::GetDrawingContext ()
{
return *nativeContext;
}
NUIE::NodeEditor* NodeEditorHwndControl::GetNodeEditor ()
{
return nodeEditor;
}
}