]>
Commit | Line | Data |
---|---|---|
32b8ec41 | 1 | ///////////////////////////////////////////////////////////////////////////// |
a4bbc9f7 VS |
2 | // Name: src/mgl/window.cpp |
3 | // Purpose: wxWindow | |
4 | // Author: Vaclav Slavik | |
5 | // (based on GTK & MSW implementations) | |
6 | // RCS-ID: $Id$ | |
eea93267 | 7 | // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) |
65571936 | 8 | // Licence: wxWindows licence |
32b8ec41 VZ |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
a4bbc9f7 VS |
11 | // =========================================================================== |
12 | // declarations | |
13 | // =========================================================================== | |
14 | ||
15 | // --------------------------------------------------------------------------- | |
16 | // headers | |
17 | // --------------------------------------------------------------------------- | |
32b8ec41 | 18 | |
a4bbc9f7 VS |
19 | // For compilers that support precompilation, includes "wx.h". |
20 | #include "wx/wxprec.h" | |
21 | ||
22 | #ifdef __BORLANDC__ | |
23 | #pragma hdrstop | |
24 | #endif | |
25 | ||
88a7a4e1 WS |
26 | #include "wx/window.h" |
27 | ||
a4bbc9f7 | 28 | #ifndef WX_PRECOMP |
d53fc7c9 | 29 | #include "wx/msgdlg.h" |
a4bbc9f7 | 30 | #include "wx/accel.h" |
a4bbc9f7 VS |
31 | #include "wx/dc.h" |
32 | #include "wx/dcclient.h" | |
33 | #include "wx/utils.h" | |
34 | #include "wx/app.h" | |
35 | #include "wx/panel.h" | |
88a7a4e1 | 36 | #include "wx/intl.h" |
e4db172a | 37 | #include "wx/log.h" |
11dbb4bf | 38 | #include "wx/dcscreen.h" |
3b3dc801 | 39 | #include "wx/menu.h" |
a4bbc9f7 VS |
40 | #endif |
41 | ||
42 | #if wxUSE_DRAG_AND_DROP | |
43 | #include "wx/dnd.h" | |
44 | #endif | |
45 | ||
a4bbc9f7 VS |
46 | #include "wx/sysopt.h" |
47 | #include "wx/mgl/private.h" | |
90eb13e6 | 48 | #include "wx/caret.h" |
a4bbc9f7 VS |
49 | |
50 | #include <mgraph.hpp> | |
51 | ||
52 | #if wxUSE_TOOLTIPS | |
53 | #include "wx/tooltip.h" | |
54 | #endif | |
55 | ||
56 | // --------------------------------------------------------------------------- | |
57 | // global variables | |
58 | // --------------------------------------------------------------------------- | |
59 | ||
60 | // MGL window manager and associated DC. | |
61 | winmng_t *g_winMng = NULL; | |
62 | MGLDevCtx *g_displayDC = NULL; | |
63 | ||
7de59551 | 64 | // the window that has keyboard focus: |
7cdbf02c | 65 | static wxWindowMGL *gs_focusedWindow = NULL; |
7de59551 | 66 | // the window that is about to be focused after currently focused |
eea93267 VS |
67 | // one looses focus: |
68 | static wxWindow *gs_toBeFocusedWindow = NULL; | |
7bdc1879 | 69 | // the window that is currently under mouse cursor: |
7cdbf02c VS |
70 | static wxWindowMGL *gs_windowUnderMouse = NULL; |
71 | // the window that has mouse capture | |
72 | static wxWindowMGL *gs_mouseCapture = NULL; | |
73 | // the frame that is currently active (i.e. its child has focus). It is | |
74 | // used to generate wxActivateEvents | |
75 | static wxWindowMGL *gs_activeFrame = NULL; | |
06414d99 MW |
76 | // track the mouse button state for wxGetMouseState() |
77 | unsigned long g_buttonState = 0; | |
a4bbc9f7 VS |
78 | |
79 | // --------------------------------------------------------------------------- | |
80 | // constants | |
81 | // --------------------------------------------------------------------------- | |
82 | ||
7de59551 | 83 | // Custom identifiers used to distinguish between various event handlers |
a4bbc9f7 VS |
84 | // and capture handlers passed to MGL_wm |
85 | enum | |
86 | { | |
87 | wxMGL_CAPTURE_MOUSE = 1, | |
88 | wxMGL_CAPTURE_KEYB = 2 | |
89 | }; | |
90 | ||
91 | ||
92 | // --------------------------------------------------------------------------- | |
93 | // private functions | |
94 | // --------------------------------------------------------------------------- | |
95 | ||
7cdbf02c VS |
96 | // Returns toplevel grandparent of given window: |
97 | static wxWindowMGL* wxGetTopLevelParent(wxWindowMGL *win) | |
98 | { | |
99 | wxWindowMGL *p = win; | |
100 | while (p && !p->IsTopLevel()) | |
101 | p = p->GetParent(); | |
102 | return p; | |
103 | } | |
104 | ||
d53fc7c9 | 105 | // An easy way to capture screenshots: |
2d1efe3f | 106 | static void wxCaptureScreenshot(bool activeWindowOnly) |
e6daf008 | 107 | { |
d53fc7c9 VS |
108 | #ifdef __DOS__ |
109 | #define SCREENSHOT_FILENAME _T("sshot%03i.png") | |
110 | #else | |
111 | #define SCREENSHOT_FILENAME _T("screenshot-%03i.png") | |
112 | #endif | |
e6daf008 | 113 | static int screenshot_num = 0; |
d53fc7c9 | 114 | wxString screenshot; |
7de59551 RD |
115 | |
116 | do | |
d53fc7c9 VS |
117 | { |
118 | screenshot.Printf(SCREENSHOT_FILENAME, screenshot_num++); | |
119 | } while ( wxFileExists(screenshot) && screenshot_num < 1000 ); | |
7de59551 | 120 | |
2d1efe3f VS |
121 | wxRect r(0, 0, g_displayDC->sizex(), g_displayDC->sizey()); |
122 | ||
123 | if ( activeWindowOnly && gs_activeFrame ) | |
124 | { | |
125 | r.Intersect(gs_activeFrame->GetRect()); | |
126 | } | |
7de59551 RD |
127 | |
128 | g_displayDC->savePNGFromDC(screenshot.mb_str(), | |
06534aa1 | 129 | r.x, r. y, r.x+r.width, r.y+r.height); |
7de59551 | 130 | |
2b5f62a0 VZ |
131 | wxMessageBox(wxString::Format(_T("Screenshot captured: %s"), |
132 | screenshot.c_str())); | |
e6daf008 | 133 | } |
e6daf008 | 134 | |
7bdc1879 VS |
135 | // --------------------------------------------------------------------------- |
136 | // MGL_WM hooks: | |
137 | // --------------------------------------------------------------------------- | |
138 | ||
b43a9886 | 139 | static void MGLAPI wxWindowPainter(window_t *wnd, MGLDC *dc) |
7bdc1879 VS |
140 | { |
141 | wxWindowMGL *w = (wxWindow*) wnd->userData; | |
7de59551 | 142 | |
544c782d | 143 | if ( w && !(w->GetWindowStyle() & wxTRANSPARENT_WINDOW) ) |
7bdc1879 VS |
144 | { |
145 | MGLDevCtx ctx(dc); | |
146 | w->HandlePaint(&ctx); | |
147 | } | |
ef344ff8 VS |
148 | } |
149 | ||
b43a9886 | 150 | static ibool MGLAPI wxWindowMouseHandler(window_t *wnd, event_t *e) |
ef344ff8 VS |
151 | { |
152 | wxWindowMGL *win = (wxWindowMGL*)MGL_wmGetWindowUserData(wnd); | |
d76048f5 | 153 | wxPoint orig(win->GetClientAreaOrigin()); |
985520bc | 154 | wxPoint where; |
7de59551 | 155 | |
06414d99 MW |
156 | g_buttonState = e->modifiers; |
157 | ||
7de59551 | 158 | MGL_wmCoordGlobalToLocal(win->GetHandle(), |
985520bc VS |
159 | e->where_x, e->where_y, &where.x, &where.y); |
160 | ||
0a89ac9c VS |
161 | for (wxWindowMGL *w = win; w; w = w->GetParent()) |
162 | { | |
7de59551 | 163 | if ( !w->IsEnabled() ) |
0a89ac9c VS |
164 | return FALSE; |
165 | if ( w->IsTopLevel() ) | |
166 | break; | |
167 | } | |
7de59551 | 168 | |
ef344ff8 VS |
169 | wxEventType type = wxEVT_NULL; |
170 | wxMouseEvent event; | |
171 | event.SetEventObject(win); | |
172 | event.SetTimestamp(e->when); | |
d76048f5 VS |
173 | event.m_x = where.x - orig.x; |
174 | event.m_y = where.y - orig.y; | |
318ac890 MW |
175 | event.m_shiftDown = ( e->modifiers & EVT_SHIFTKEY ) != 0; |
176 | event.m_controlDown = ( e->modifiers & EVT_CTRLSTATE ) != 0; | |
177 | event.m_altDown = ( e->modifiers & EVT_LEFTALT ) != 0; | |
178 | event.m_metaDown = ( e->modifiers & EVT_RIGHTALT ) != 0; | |
179 | event.m_leftDown = ( e->modifiers & EVT_LEFTBUT ) != 0; | |
180 | event.m_middleDown = ( e->modifiers & EVT_MIDDLEBUT ) != 0; | |
181 | event.m_rightDown = ( e->modifiers & EVT_RIGHTBUT ) != 0; | |
7de59551 | 182 | |
ef344ff8 VS |
183 | switch (e->what) |
184 | { | |
185 | case EVT_MOUSEDOWN: | |
8f5e92db | 186 | // Change focus if the user clicks outside focused window: |
ad02525d | 187 | if ( win->CanAcceptFocus() && wxWindow::FindFocus() != win ) |
8f5e92db VS |
188 | win->SetFocus(); |
189 | ||
8f5e92db VS |
190 | if ( e->message & EVT_DBLCLICK ) |
191 | { | |
8f5e92db VS |
192 | if ( e->message & EVT_LEFTBMASK ) |
193 | type = wxEVT_LEFT_DCLICK; | |
194 | else if ( e->message & EVT_MIDDLEBMASK ) | |
195 | type = wxEVT_MIDDLE_DCLICK; | |
196 | else if ( e->message & EVT_RIGHTBMASK ) | |
197 | type = wxEVT_RIGHT_DCLICK; | |
198 | } | |
ea98f686 VS |
199 | else |
200 | { | |
201 | if ( e->message & EVT_LEFTBMASK ) | |
202 | type = wxEVT_LEFT_DOWN; | |
203 | else if ( e->message & EVT_MIDDLEBMASK ) | |
204 | type = wxEVT_MIDDLE_DOWN; | |
205 | else if ( e->message & EVT_RIGHTBMASK ) | |
206 | type = wxEVT_RIGHT_DOWN; | |
207 | } | |
a679e129 | 208 | |
ef344ff8 VS |
209 | break; |
210 | ||
211 | case EVT_MOUSEUP: | |
212 | if ( e->message & EVT_LEFTBMASK ) | |
213 | type = wxEVT_LEFT_UP; | |
214 | else if ( e->message & EVT_MIDDLEBMASK ) | |
215 | type = wxEVT_MIDDLE_UP; | |
216 | else if ( e->message & EVT_RIGHTBMASK ) | |
217 | type = wxEVT_RIGHT_UP; | |
218 | break; | |
219 | ||
220 | case EVT_MOUSEMOVE: | |
7cdbf02c VS |
221 | if ( !gs_mouseCapture ) |
222 | { | |
223 | if ( win != gs_windowUnderMouse ) | |
224 | { | |
225 | if ( gs_windowUnderMouse ) | |
226 | { | |
227 | wxMouseEvent event2(event); | |
7de59551 RD |
228 | MGL_wmCoordGlobalToLocal(gs_windowUnderMouse->GetHandle(), |
229 | e->where_x, e->where_y, | |
7cdbf02c VS |
230 | &event2.m_x, &event2.m_y); |
231 | ||
d76048f5 VS |
232 | wxPoint orig(gs_windowUnderMouse->GetClientAreaOrigin()); |
233 | event2.m_x -= orig.x; | |
234 | event2.m_y -= orig.y; | |
235 | ||
7cdbf02c VS |
236 | event2.SetEventObject(gs_windowUnderMouse); |
237 | event2.SetEventType(wxEVT_LEAVE_WINDOW); | |
238 | gs_windowUnderMouse->GetEventHandler()->ProcessEvent(event2); | |
239 | } | |
240 | ||
241 | wxMouseEvent event3(event); | |
242 | event3.SetEventType(wxEVT_ENTER_WINDOW); | |
243 | win->GetEventHandler()->ProcessEvent(event3); | |
244 | ||
245 | gs_windowUnderMouse = win; | |
246 | } | |
247 | } | |
248 | else // gs_mouseCapture | |
ef344ff8 | 249 | { |
7de59551 | 250 | bool inside = (where.x >= 0 && |
7cdbf02c VS |
251 | where.y >= 0 && |
252 | where.x < win->GetSize().x && | |
253 | where.y < win->GetSize().y); | |
254 | if ( (inside && gs_windowUnderMouse != win) || | |
255 | (!inside && gs_windowUnderMouse == win) ) | |
ef344ff8 | 256 | { |
7de59551 | 257 | wxMouseEvent evt(inside ? |
7cdbf02c VS |
258 | wxEVT_ENTER_WINDOW : wxEVT_LEAVE_WINDOW); |
259 | evt.SetEventObject(win); | |
260 | win->GetEventHandler()->ProcessEvent(evt); | |
261 | gs_windowUnderMouse = inside ? win : NULL; | |
ef344ff8 | 262 | } |
ef344ff8 | 263 | } |
7de59551 | 264 | |
ef344ff8 VS |
265 | type = wxEVT_MOTION; |
266 | break; | |
267 | ||
268 | default: | |
269 | break; | |
270 | } | |
7de59551 | 271 | |
ef344ff8 VS |
272 | if ( type == wxEVT_NULL ) |
273 | { | |
274 | return FALSE; | |
275 | } | |
276 | else | |
277 | { | |
278 | event.SetEventType(type); | |
279 | return win->GetEventHandler()->ProcessEvent(event); | |
280 | } | |
281 | } | |
282 | ||
a679e129 | 283 | static long wxScanToKeyCode(event_t *event, bool translate) |
ef344ff8 | 284 | { |
84c88a17 VS |
285 | // VS: make it __WXDEBUG__-only, since we have lots of wxLogTrace calls |
286 | // here and the arguments would be stored in non-debug executable even | |
287 | // though wxLogTrace would be no-op... | |
288 | #ifdef __WXDEBUG__ | |
289 | #define KEY(mgl_key,wx_key) \ | |
290 | case mgl_key: \ | |
291 | wxLogTrace(_T("keyevents"), \ | |
292 | _T("key " #mgl_key ", mapped to " #wx_key)); \ | |
293 | key = wx_key; \ | |
294 | break; | |
295 | #else | |
296 | #define KEY(mgl_key,wx_key) \ | |
7de59551 | 297 | case mgl_key: key = wx_key; break; |
84c88a17 | 298 | #endif |
2b260bc3 VS |
299 | |
300 | long key = 0; | |
7de59551 | 301 | |
a679e129 | 302 | if ( translate ) |
2b260bc3 | 303 | { |
3fa2676f MW |
304 | bool numlock = (event->modifiers & EVT_NUMLOCK) != 0; |
305 | ||
a679e129 VS |
306 | switch ( EVT_scanCode(event->message) ) |
307 | { | |
308 | KEY (KB_padMinus, WXK_NUMPAD_SUBTRACT) | |
309 | KEY (KB_padPlus, WXK_NUMPAD_ADD) | |
310 | KEY (KB_padTimes, WXK_NUMPAD_MULTIPLY) | |
311 | KEY (KB_padDivide, WXK_NUMPAD_DIVIDE) | |
3fa2676f MW |
312 | KEY (KB_padCenter, numlock ? WXK_NUMPAD5 : WXK_NUMPAD_SEPARATOR) // ? |
313 | KEY (KB_padLeft, numlock ? WXK_NUMPAD4 : WXK_NUMPAD_LEFT) | |
314 | KEY (KB_padRight, numlock ? WXK_NUMPAD6 : WXK_NUMPAD_RIGHT) | |
315 | KEY (KB_padUp, numlock ? WXK_NUMPAD8 : WXK_NUMPAD_UP) | |
316 | KEY (KB_padDown, numlock ? WXK_NUMPAD2 : WXK_NUMPAD_DOWN) | |
317 | KEY (KB_padInsert, numlock ? WXK_NUMPAD0 : WXK_NUMPAD_INSERT) | |
318 | KEY (KB_padDelete, numlock ? WXK_DECIMAL : WXK_NUMPAD_DELETE) | |
319 | KEY (KB_padHome, numlock ? WXK_NUMPAD7 : WXK_NUMPAD_HOME) | |
320 | KEY (KB_padEnd, numlock ? WXK_NUMPAD1 : WXK_NUMPAD_END) | |
321 | KEY (KB_padPageUp, numlock ? WXK_NUMPAD9 : WXK_NUMPAD_PAGEUP) | |
322 | KEY (KB_padPageDown, numlock ? WXK_NUMPAD3 : WXK_NUMPAD_PAGEDOWN) | |
a679e129 VS |
323 | KEY (KB_1, '1') |
324 | KEY (KB_2, '2') | |
325 | KEY (KB_3, '3') | |
326 | KEY (KB_4, '4') | |
327 | KEY (KB_5, '5') | |
328 | KEY (KB_6, '6') | |
329 | KEY (KB_7, '7') | |
330 | KEY (KB_8, '8') | |
331 | KEY (KB_9, '9') | |
332 | KEY (KB_0, '0') | |
333 | KEY (KB_minus, WXK_SUBTRACT) | |
334 | KEY (KB_equals, WXK_ADD) | |
335 | KEY (KB_backSlash, '\\') | |
336 | KEY (KB_Q, 'Q') | |
337 | KEY (KB_W, 'W') | |
338 | KEY (KB_E, 'E') | |
339 | KEY (KB_R, 'R') | |
340 | KEY (KB_T, 'T') | |
341 | KEY (KB_Y, 'Y') | |
342 | KEY (KB_U, 'U') | |
343 | KEY (KB_I, 'I') | |
344 | KEY (KB_O, 'O') | |
345 | KEY (KB_P, 'P') | |
346 | KEY (KB_leftSquareBrace,'[') | |
347 | KEY (KB_rightSquareBrace,']') | |
348 | KEY (KB_A, 'A') | |
349 | KEY (KB_S, 'S') | |
350 | KEY (KB_D, 'D') | |
351 | KEY (KB_F, 'F') | |
352 | KEY (KB_G, 'G') | |
353 | KEY (KB_H, 'H') | |
354 | KEY (KB_J, 'J') | |
355 | KEY (KB_K, 'K') | |
356 | KEY (KB_L, 'L') | |
357 | KEY (KB_semicolon, ';') | |
358 | KEY (KB_apostrophe, '\'') | |
359 | KEY (KB_Z, 'Z') | |
360 | KEY (KB_X, 'X') | |
361 | KEY (KB_C, 'C') | |
362 | KEY (KB_V, 'V') | |
363 | KEY (KB_B, 'B') | |
364 | KEY (KB_N, 'N') | |
365 | KEY (KB_M, 'M') | |
366 | KEY (KB_comma, ',') | |
367 | KEY (KB_period, '.') | |
368 | KEY (KB_divide, WXK_DIVIDE) | |
369 | KEY (KB_space, WXK_SPACE) | |
370 | KEY (KB_tilde, '~') | |
371 | ||
372 | default: break; | |
373 | } | |
374 | } | |
7de59551 | 375 | |
a679e129 VS |
376 | if ( key == 0 ) |
377 | { | |
378 | switch ( EVT_scanCode(event->message) ) | |
379 | { | |
380 | KEY (KB_padEnter, WXK_NUMPAD_ENTER) | |
381 | KEY (KB_F1, WXK_F1) | |
382 | KEY (KB_F2, WXK_F2) | |
383 | KEY (KB_F3, WXK_F3) | |
384 | KEY (KB_F4, WXK_F4) | |
385 | KEY (KB_F5, WXK_F5) | |
386 | KEY (KB_F6, WXK_F6) | |
387 | KEY (KB_F7, WXK_F7) | |
388 | KEY (KB_F8, WXK_F8) | |
389 | KEY (KB_F9, WXK_F9) | |
390 | KEY (KB_F10, WXK_F10) | |
391 | KEY (KB_F11, WXK_F11) | |
392 | KEY (KB_F12, WXK_F12) | |
393 | KEY (KB_left, WXK_LEFT) | |
394 | KEY (KB_right, WXK_RIGHT) | |
395 | KEY (KB_up, WXK_UP) | |
396 | KEY (KB_down, WXK_DOWN) | |
397 | KEY (KB_insert, WXK_INSERT) | |
398 | KEY (KB_delete, WXK_DELETE) | |
399 | KEY (KB_home, WXK_HOME) | |
400 | KEY (KB_end, WXK_END) | |
401 | KEY (KB_pageUp, WXK_PAGEUP) | |
402 | KEY (KB_pageDown, WXK_PAGEDOWN) | |
403 | KEY (KB_capsLock, WXK_CAPITAL) | |
404 | KEY (KB_numLock, WXK_NUMLOCK) | |
405 | KEY (KB_scrollLock, WXK_SCROLL) | |
406 | KEY (KB_leftShift, WXK_SHIFT) | |
407 | KEY (KB_rightShift, WXK_SHIFT) | |
408 | KEY (KB_leftCtrl, WXK_CONTROL) | |
409 | KEY (KB_rightCtrl, WXK_CONTROL) | |
410 | KEY (KB_leftAlt, WXK_ALT) | |
411 | KEY (KB_rightAlt, WXK_ALT) | |
412 | KEY (KB_leftWindows, WXK_START) | |
413 | KEY (KB_rightWindows, WXK_START) | |
414 | KEY (KB_menu, WXK_MENU) | |
415 | KEY (KB_sysReq, WXK_SNAPSHOT) | |
416 | KEY (KB_esc, WXK_ESCAPE) | |
417 | KEY (KB_backspace, WXK_BACK) | |
418 | KEY (KB_tab, WXK_TAB) | |
7de59551 | 419 | KEY (KB_enter, WXK_RETURN) |
a679e129 | 420 | |
7de59551 RD |
421 | default: |
422 | key = EVT_asciiCode(event->message); | |
a679e129 VS |
423 | break; |
424 | } | |
2b260bc3 VS |
425 | } |
426 | ||
544c782d VS |
427 | #undef KEY |
428 | ||
2b260bc3 | 429 | return key; |
ef344ff8 VS |
430 | } |
431 | ||
d53fc7c9 VS |
432 | static bool wxHandleSpecialKeys(wxKeyEvent& event) |
433 | { | |
434 | // Add an easy way to capture screenshots: | |
435 | if ( event.m_keyCode == WXK_SNAPSHOT | |
436 | #ifdef __WXDEBUG__ // FIXME_MGL - remove when KB_sysReq works in MGL! | |
7de59551 RD |
437 | || (event.m_keyCode == WXK_F1 && |
438 | event.m_shiftDown && event.m_controlDown) | |
d53fc7c9 | 439 | #endif |
197b1626 | 440 | ) |
d53fc7c9 | 441 | { |
2d1efe3f | 442 | wxCaptureScreenshot(event.m_altDown/*only active wnd?*/); |
127eab18 | 443 | return true; |
d53fc7c9 | 444 | } |
7de59551 | 445 | |
127eab18 | 446 | return false; |
d53fc7c9 VS |
447 | } |
448 | ||
b43a9886 | 449 | static ibool MGLAPI wxWindowKeybHandler(window_t *wnd, event_t *e) |
2b260bc3 | 450 | { |
2b260bc3 | 451 | wxWindowMGL *win = (wxWindowMGL*)MGL_wmGetWindowUserData(wnd); |
a200c35e VS |
452 | |
453 | if ( !win->IsEnabled() ) return FALSE; | |
454 | ||
985520bc | 455 | wxPoint where; |
7de59551 | 456 | MGL_wmCoordGlobalToLocal(win->GetHandle(), |
985520bc | 457 | e->where_x, e->where_y, &where.x, &where.y); |
7de59551 | 458 | |
2b260bc3 VS |
459 | wxKeyEvent event; |
460 | event.SetEventObject(win); | |
461 | event.SetTimestamp(e->when); | |
127eab18 | 462 | event.m_keyCode = wxScanToKeyCode(e, true); |
2b260bc3 VS |
463 | event.m_scanCode = 0; // not used by wx at all |
464 | event.m_x = where.x; | |
465 | event.m_y = where.y; | |
318ac890 MW |
466 | event.m_shiftDown = ( e->modifiers & EVT_SHIFTKEY ) != 0; |
467 | event.m_controlDown = ( e->modifiers & EVT_CTRLSTATE ) != 0; | |
468 | event.m_altDown = ( e->modifiers & EVT_LEFTALT ) != 0; | |
469 | event.m_metaDown = ( e->modifiers & EVT_RIGHTALT ) != 0; | |
2b260bc3 VS |
470 | |
471 | if ( e->what == EVT_KEYUP ) | |
472 | { | |
473 | event.SetEventType(wxEVT_KEY_UP); | |
474 | return win->GetEventHandler()->ProcessEvent(event); | |
475 | } | |
476 | else | |
477 | { | |
478 | bool ret; | |
479 | wxKeyEvent event2; | |
480 | ||
481 | event.SetEventType(wxEVT_KEY_DOWN); | |
482 | event2 = event; | |
7de59551 | 483 | |
2b260bc3 VS |
484 | ret = win->GetEventHandler()->ProcessEvent(event); |
485 | ||
84c88a17 VS |
486 | // wxMSW doesn't send char events with Alt pressed |
487 | // Only send wxEVT_CHAR event if not processed yet. Thus, ALT-x | |
d53fc7c9 | 488 | // will only be sent if it is not in an accelerator table: |
127eab18 | 489 | event2.m_keyCode = wxScanToKeyCode(e, false); |
2b260bc3 VS |
490 | if ( !ret && event2.m_keyCode != 0 ) |
491 | { | |
492 | event2.SetEventType(wxEVT_CHAR); | |
493 | ret = win->GetEventHandler()->ProcessEvent(event2); | |
494 | } | |
7de59551 | 495 | |
84c88a17 | 496 | // Synthetize navigation key event, but do it only if the TAB key |
d53fc7c9 | 497 | // wasn't handled yet: |
84c88a17 VS |
498 | if ( !ret && event.m_keyCode == WXK_TAB && |
499 | win->GetParent() && win->GetParent()->HasFlag(wxTAB_TRAVERSAL) ) | |
500 | { | |
501 | wxNavigationKeyEvent navEvent; | |
502 | navEvent.SetEventObject(win->GetParent()); | |
503 | // Shift-TAB goes in reverse direction: | |
504 | navEvent.SetDirection(!event.m_shiftDown); | |
505 | // Ctrl-TAB changes the (parent) window, i.e. switch notebook page: | |
506 | navEvent.SetWindowChange(event.m_controlDown); | |
507 | navEvent.SetCurrentFocus(wxStaticCast(win, wxWindow)); | |
508 | ret = win->GetParent()->GetEventHandler()->ProcessEvent(navEvent); | |
509 | } | |
7de59551 RD |
510 | |
511 | // Finally, process special meaning keys that are usually | |
d53fc7c9 VS |
512 | // a responsibility of OS or window manager: |
513 | if ( !ret ) | |
514 | ret = wxHandleSpecialKeys(event); | |
7de59551 | 515 | |
2b260bc3 VS |
516 | return ret; |
517 | } | |
7bdc1879 | 518 | } |
a4bbc9f7 VS |
519 | |
520 | // --------------------------------------------------------------------------- | |
521 | // event tables | |
522 | // --------------------------------------------------------------------------- | |
523 | ||
ef344ff8 | 524 | // in wxUniv this class is abstract because it doesn't have DoPopupMenu() |
a4bbc9f7 VS |
525 | IMPLEMENT_ABSTRACT_CLASS(wxWindowMGL, wxWindowBase) |
526 | ||
527 | BEGIN_EVENT_TABLE(wxWindowMGL, wxWindowBase) | |
a4bbc9f7 VS |
528 | END_EVENT_TABLE() |
529 | ||
530 | // =========================================================================== | |
531 | // implementation | |
532 | // =========================================================================== | |
533 | ||
534 | // ---------------------------------------------------------------------------- | |
535 | // constructors and such | |
536 | // ---------------------------------------------------------------------------- | |
537 | ||
1c53456f | 538 | extern wxVideoMode wxGetDefaultDisplayMode(); |
a3e76614 | 539 | |
a4bbc9f7 VS |
540 | void wxWindowMGL::Init() |
541 | { | |
1f43b5c9 VS |
542 | // First of all, make sure window manager is up and running. If it is |
543 | // not the case, initialize it in default display mode | |
544 | if ( !g_winMng ) | |
7b9f73d2 VS |
545 | { |
546 | if ( !wxTheApp->SetDisplayMode(wxGetDefaultDisplayMode()) ) | |
a1f7eb20 | 547 | wxLogFatalError(_("Cannot initialize display.")); |
7b9f73d2 | 548 | } |
1f43b5c9 | 549 | |
a4bbc9f7 | 550 | // mgl specific: |
a4bbc9f7 | 551 | m_wnd = NULL; |
127eab18 WS |
552 | m_isShown = true; |
553 | m_frozen = false; | |
a4bbc9f7 | 554 | m_paintMGLDC = NULL; |
2b260bc3 | 555 | m_eraseBackground = -1; |
a4bbc9f7 VS |
556 | } |
557 | ||
558 | // Destructor | |
559 | wxWindowMGL::~wxWindowMGL() | |
560 | { | |
7de59551 RD |
561 | SendDestroyEvent(); |
562 | ||
127eab18 | 563 | m_isBeingDeleted = true; |
a4bbc9f7 | 564 | |
7cdbf02c VS |
565 | if ( gs_mouseCapture == this ) |
566 | ReleaseMouse(); | |
d46330c5 | 567 | |
7cdbf02c | 568 | if (gs_activeFrame == this) |
d46330c5 | 569 | { |
66858adf VS |
570 | gs_activeFrame = NULL; |
571 | // activate next frame in Z-order: | |
572 | if ( m_wnd->prev ) | |
573 | { | |
574 | wxWindowMGL *win = (wxWindowMGL*)m_wnd->prev->userData; | |
575 | win->SetFocus(); | |
576 | } | |
577 | else if ( m_wnd->next ) | |
578 | { | |
579 | wxWindowMGL *win = (wxWindowMGL*)m_wnd->next->userData; | |
580 | win->SetFocus(); | |
d46330c5 | 581 | } |
d46330c5 | 582 | } |
7de59551 | 583 | |
7cdbf02c | 584 | if ( gs_focusedWindow == this ) |
7bdc1879 | 585 | KillFocus(); |
d46330c5 | 586 | |
7cdbf02c VS |
587 | if ( gs_windowUnderMouse == this ) |
588 | gs_windowUnderMouse = NULL; | |
a4bbc9f7 | 589 | |
a4bbc9f7 VS |
590 | DestroyChildren(); |
591 | ||
a4bbc9f7 VS |
592 | if ( m_wnd ) |
593 | MGL_wmDestroyWindow(m_wnd); | |
594 | } | |
595 | ||
596 | // real construction (Init() must have been called before!) | |
597 | bool wxWindowMGL::Create(wxWindow *parent, | |
598 | wxWindowID id, | |
599 | const wxPoint& pos, | |
600 | const wxSize& size, | |
601 | long style, | |
602 | const wxString& name) | |
603 | { | |
a4bbc9f7 | 604 | if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) ) |
127eab18 | 605 | return false; |
a4bbc9f7 | 606 | |
544c782d | 607 | if ( parent ) |
7bdc1879 | 608 | parent->AddChild(this); |
a4bbc9f7 | 609 | |
ef344ff8 VS |
610 | int x, y, w, h; |
611 | x = pos.x, y = pos.y; | |
612 | if ( x == -1 ) | |
613 | x = 0; // FIXME_MGL, something better, see GTK+ | |
614 | if ( y == -1 ) | |
615 | y = 0; // FIXME_MGL, something better, see GTK+ | |
82186005 | 616 | AdjustForParentClientOrigin(x, y, 0); |
ef344ff8 VS |
617 | w = WidthDefault(size.x); |
618 | h = HeightDefault(size.y); | |
7de59551 | 619 | |
72fa862b | 620 | long mgl_style = 0; |
7cdbf02c | 621 | window_t *wnd_parent = parent ? parent->GetHandle() : NULL; |
544c782d | 622 | |
e441e1f4 | 623 | if ( style & wxFULL_REPAINT_ON_RESIZE ) |
544c782d | 624 | { |
72fa862b | 625 | mgl_style |= MGL_WM_FULL_REPAINT_ON_RESIZE; |
544c782d | 626 | } |
72fa862b | 627 | if ( style & wxSTAY_ON_TOP ) |
544c782d | 628 | { |
72fa862b | 629 | mgl_style |= MGL_WM_ALWAYS_ON_TOP; |
544c782d VS |
630 | } |
631 | if ( style & wxPOPUP_WINDOW ) | |
632 | { | |
7cdbf02c | 633 | mgl_style |= MGL_WM_ALWAYS_ON_TOP; |
544c782d | 634 | // it is created hidden as other top level windows |
127eab18 | 635 | m_isShown = false; |
7cdbf02c | 636 | wnd_parent = NULL; |
544c782d | 637 | } |
ef344ff8 | 638 | |
58061670 VS |
639 | window_t *wnd = MGL_wmCreateWindow(g_winMng, wnd_parent, x, y, w, h); |
640 | ||
641 | MGL_wmSetWindowFlags(wnd, mgl_style); | |
642 | MGL_wmShowWindow(wnd, m_isShown); | |
7de59551 | 643 | |
58061670 VS |
644 | SetMGLwindow_t(wnd); |
645 | ||
127eab18 | 646 | return true; |
58061670 VS |
647 | } |
648 | ||
649 | void wxWindowMGL::SetMGLwindow_t(struct window_t *wnd) | |
650 | { | |
651 | if ( m_wnd ) | |
652 | MGL_wmDestroyWindow(m_wnd); | |
653 | ||
654 | m_wnd = wnd; | |
655 | if ( !m_wnd ) return; | |
7de59551 | 656 | |
127eab18 | 657 | m_isShown = (bool)m_wnd->visible; |
ef344ff8 | 658 | |
a4bbc9f7 VS |
659 | MGL_wmSetWindowUserData(m_wnd, (void*) this); |
660 | MGL_wmSetWindowPainter(m_wnd, wxWindowPainter); | |
ef344ff8 VS |
661 | MGL_wmPushWindowEventHandler(m_wnd, wxWindowMouseHandler, EVT_MOUSEEVT, 0); |
662 | MGL_wmPushWindowEventHandler(m_wnd, wxWindowKeybHandler, EVT_KEYEVT, 0); | |
58061670 VS |
663 | |
664 | if ( m_cursor.Ok() ) | |
665 | MGL_wmSetWindowCursor(m_wnd, *m_cursor.GetMGLCursor()); | |
666 | else | |
667 | MGL_wmSetWindowCursor(m_wnd, *wxSTANDARD_CURSOR->GetMGLCursor()); | |
a4bbc9f7 VS |
668 | } |
669 | ||
670 | // --------------------------------------------------------------------------- | |
671 | // basic operations | |
672 | // --------------------------------------------------------------------------- | |
673 | ||
674 | void wxWindowMGL::SetFocus() | |
675 | { | |
a46935cb VS |
676 | if ( gs_focusedWindow == this ) return; |
677 | ||
eea93267 VS |
678 | wxWindowMGL *oldFocusedWindow = gs_focusedWindow; |
679 | ||
7cdbf02c | 680 | if ( gs_focusedWindow ) |
eea93267 VS |
681 | { |
682 | gs_toBeFocusedWindow = (wxWindow*)this; | |
7cdbf02c | 683 | gs_focusedWindow->KillFocus(); |
eea93267 VS |
684 | gs_toBeFocusedWindow = NULL; |
685 | } | |
7de59551 | 686 | |
7cdbf02c | 687 | gs_focusedWindow = this; |
7de59551 | 688 | |
2b260bc3 | 689 | MGL_wmCaptureEvents(GetHandle(), EVT_KEYEVT, wxMGL_CAPTURE_KEYB); |
a4bbc9f7 | 690 | |
7cdbf02c | 691 | wxWindowMGL *active = wxGetTopLevelParent(this); |
61bd618f | 692 | if ( !(m_windowStyle & wxPOPUP_WINDOW) && active != gs_activeFrame ) |
a4bbc9f7 | 693 | { |
7cdbf02c VS |
694 | if ( gs_activeFrame ) |
695 | { | |
127eab18 | 696 | wxActivateEvent event(wxEVT_ACTIVATE, false, gs_activeFrame->GetId()); |
7cdbf02c VS |
697 | event.SetEventObject(gs_activeFrame); |
698 | gs_activeFrame->GetEventHandler()->ProcessEvent(event); | |
699 | } | |
700 | ||
701 | gs_activeFrame = active; | |
127eab18 | 702 | wxActivateEvent event(wxEVT_ACTIVATE, true, gs_activeFrame->GetId()); |
7cdbf02c VS |
703 | event.SetEventObject(gs_activeFrame); |
704 | gs_activeFrame->GetEventHandler()->ProcessEvent(event); | |
a4bbc9f7 | 705 | } |
7de59551 | 706 | |
4d163bf8 VS |
707 | // notify the parent keeping track of focus for the kbd navigation |
708 | // purposes that we got it | |
709 | wxChildFocusEvent eventFocus((wxWindow*)this); | |
710 | GetEventHandler()->ProcessEvent(eventFocus); | |
711 | ||
a4bbc9f7 VS |
712 | wxFocusEvent event(wxEVT_SET_FOCUS, GetId()); |
713 | event.SetEventObject(this); | |
eea93267 | 714 | event.SetWindow((wxWindow*)oldFocusedWindow); |
a46935cb | 715 | GetEventHandler()->ProcessEvent(event); |
869dabf8 VS |
716 | |
717 | #if wxUSE_CARET | |
718 | // caret needs to be informed about focus change | |
719 | wxCaret *caret = GetCaret(); | |
720 | if ( caret ) | |
721 | caret->OnSetFocus(); | |
722 | #endif // wxUSE_CARET | |
a4bbc9f7 | 723 | } |
32b8ec41 | 724 | |
a4bbc9f7 | 725 | void wxWindowMGL::KillFocus() |
32b8ec41 | 726 | { |
7cdbf02c VS |
727 | if ( gs_focusedWindow != this ) return; |
728 | gs_focusedWindow = NULL; | |
a4bbc9f7 | 729 | |
7bdc1879 | 730 | if ( m_isBeingDeleted ) return; |
7de59551 | 731 | |
a4bbc9f7 VS |
732 | MGL_wmUncaptureEvents(GetHandle(), wxMGL_CAPTURE_KEYB); |
733 | ||
734 | #if wxUSE_CARET | |
735 | // caret needs to be informed about focus change | |
736 | wxCaret *caret = GetCaret(); | |
7bdc1879 | 737 | if ( caret ) |
a4bbc9f7 VS |
738 | caret->OnKillFocus(); |
739 | #endif // wxUSE_CARET | |
740 | ||
a4bbc9f7 VS |
741 | wxFocusEvent event(wxEVT_KILL_FOCUS, GetId()); |
742 | event.SetEventObject(this); | |
eea93267 | 743 | event.SetWindow(gs_toBeFocusedWindow); |
a46935cb | 744 | GetEventHandler()->ProcessEvent(event); |
32b8ec41 VZ |
745 | } |
746 | ||
a4bbc9f7 VS |
747 | // ---------------------------------------------------------------------------- |
748 | // this wxWindowBase function is implemented here (in platform-specific file) | |
749 | // because it is static and so couldn't be made virtual | |
750 | // ---------------------------------------------------------------------------- | |
0fe02759 | 751 | wxWindow *wxWindowBase::DoFindFocus() |
32b8ec41 | 752 | { |
7cdbf02c | 753 | return (wxWindow*)gs_focusedWindow; |
a4bbc9f7 VS |
754 | } |
755 | ||
756 | bool wxWindowMGL::Show(bool show) | |
757 | { | |
758 | if ( !wxWindowBase::Show(show) ) | |
127eab18 | 759 | return false; |
a4bbc9f7 VS |
760 | |
761 | MGL_wmShowWindow(m_wnd, show); | |
7de59551 | 762 | |
ead60ec5 VS |
763 | if (!show && gs_activeFrame == this) |
764 | { | |
66858adf VS |
765 | // activate next frame in Z-order: |
766 | if ( m_wnd->prev ) | |
767 | { | |
768 | wxWindowMGL *win = (wxWindowMGL*)m_wnd->prev->userData; | |
769 | win->SetFocus(); | |
770 | } | |
771 | else if ( m_wnd->next ) | |
772 | { | |
773 | wxWindowMGL *win = (wxWindowMGL*)m_wnd->next->userData; | |
774 | win->SetFocus(); | |
775 | } | |
776 | else | |
777 | { | |
778 | gs_activeFrame = NULL; | |
ead60ec5 VS |
779 | } |
780 | } | |
781 | ||
127eab18 | 782 | return true; |
a4bbc9f7 VS |
783 | } |
784 | ||
785 | // Raise the window to the top of the Z order | |
786 | void wxWindowMGL::Raise() | |
787 | { | |
788 | MGL_wmRaiseWindow(m_wnd); | |
789 | } | |
790 | ||
791 | // Lower the window to the bottom of the Z order | |
792 | void wxWindowMGL::Lower() | |
793 | { | |
794 | MGL_wmLowerWindow(m_wnd); | |
795 | } | |
796 | ||
4116c221 | 797 | void wxWindowMGL::DoCaptureMouse() |
a4bbc9f7 | 798 | { |
7cdbf02c VS |
799 | if ( gs_mouseCapture ) |
800 | MGL_wmUncaptureEvents(gs_mouseCapture->m_wnd, wxMGL_CAPTURE_MOUSE); | |
801 | ||
802 | gs_mouseCapture = this; | |
a4bbc9f7 VS |
803 | MGL_wmCaptureEvents(m_wnd, EVT_MOUSEEVT, wxMGL_CAPTURE_MOUSE); |
804 | } | |
805 | ||
4116c221 | 806 | void wxWindowMGL::DoReleaseMouse() |
a4bbc9f7 | 807 | { |
63fd5f0b | 808 | wxASSERT_MSG( gs_mouseCapture == this, wxT("attempt to release mouse, but this window hasn't captured it") ); |
7de59551 | 809 | |
a4bbc9f7 | 810 | MGL_wmUncaptureEvents(m_wnd, wxMGL_CAPTURE_MOUSE); |
7cdbf02c | 811 | gs_mouseCapture = NULL; |
a4bbc9f7 VS |
812 | } |
813 | ||
814 | /* static */ wxWindow *wxWindowBase::GetCapture() | |
815 | { | |
7cdbf02c | 816 | return (wxWindow*)gs_mouseCapture; |
a4bbc9f7 VS |
817 | } |
818 | ||
819 | bool wxWindowMGL::SetCursor(const wxCursor& cursor) | |
820 | { | |
821 | if ( !wxWindowBase::SetCursor(cursor) ) | |
822 | { | |
823 | // no change | |
127eab18 | 824 | return false; |
a4bbc9f7 VS |
825 | } |
826 | ||
827 | if ( m_cursor.Ok() ) | |
828 | MGL_wmSetWindowCursor(m_wnd, *m_cursor.GetMGLCursor()); | |
ef344ff8 VS |
829 | else |
830 | MGL_wmSetWindowCursor(m_wnd, *wxSTANDARD_CURSOR->GetMGLCursor()); | |
a4bbc9f7 | 831 | |
127eab18 | 832 | return true; |
a4bbc9f7 VS |
833 | } |
834 | ||
835 | void wxWindowMGL::WarpPointer(int x, int y) | |
836 | { | |
8014db41 VS |
837 | int w, h; |
838 | wxDisplaySize(&w, &h); | |
839 | ||
a4bbc9f7 | 840 | ClientToScreen(&x, &y); |
8014db41 VS |
841 | if ( x < 0 ) |
842 | x = 0; | |
843 | if ( y < 0 ) | |
844 | y = 0; | |
845 | if ( x >= w ) | |
846 | x = w-1; | |
847 | if ( y >= h ) | |
848 | y = h-1; | |
7de59551 | 849 | |
a4bbc9f7 VS |
850 | EVT_setMousePos(x, y); |
851 | } | |
852 | ||
a4bbc9f7 VS |
853 | // Set this window to be the child of 'parent'. |
854 | bool wxWindowMGL::Reparent(wxWindowBase *parent) | |
855 | { | |
856 | if ( !wxWindowBase::Reparent(parent) ) | |
127eab18 | 857 | return false; |
a4bbc9f7 VS |
858 | |
859 | MGL_wmReparentWindow(m_wnd, parent->GetHandle()); | |
860 | ||
127eab18 | 861 | return true; |
a4bbc9f7 VS |
862 | } |
863 | ||
864 | ||
865 | // --------------------------------------------------------------------------- | |
866 | // drag and drop | |
867 | // --------------------------------------------------------------------------- | |
868 | ||
869 | #if wxUSE_DRAG_AND_DROP | |
870 | ||
871 | void wxWindowMGL::SetDropTarget(wxDropTarget *pDropTarget) | |
872 | { | |
873 | if ( m_dropTarget != 0 ) { | |
874 | m_dropTarget->Revoke(m_hWnd); | |
875 | delete m_dropTarget; | |
876 | } | |
877 | ||
878 | m_dropTarget = pDropTarget; | |
879 | if ( m_dropTarget != 0 ) | |
880 | m_dropTarget->Register(m_hWnd); | |
881 | } | |
882 | // FIXME_MGL | |
883 | #endif // wxUSE_DRAG_AND_DROP | |
884 | ||
885 | // old style file-manager drag&drop support: we retain the old-style | |
886 | // DragAcceptFiles in parallel with SetDropTarget. | |
127eab18 | 887 | void wxWindowMGL::DragAcceptFiles(bool WXUNUSED(accept)) |
a4bbc9f7 VS |
888 | { |
889 | #if 0 // FIXME_MGL | |
890 | HWND hWnd = GetHwnd(); | |
891 | if ( hWnd ) | |
892 | ::DragAcceptFiles(hWnd, (BOOL)accept); | |
893 | #endif | |
894 | } | |
895 | ||
896 | // --------------------------------------------------------------------------- | |
897 | // moving and resizing | |
898 | // --------------------------------------------------------------------------- | |
899 | ||
900 | // Get total size | |
901 | void wxWindowMGL::DoGetSize(int *x, int *y) const | |
902 | { | |
ea98f686 | 903 | wxASSERT_MSG( m_wnd, wxT("invalid window") ); |
7de59551 | 904 | |
a4bbc9f7 VS |
905 | if (x) *x = m_wnd->width; |
906 | if (y) *y = m_wnd->height; | |
907 | } | |
908 | ||
909 | void wxWindowMGL::DoGetPosition(int *x, int *y) const | |
910 | { | |
ea98f686 VS |
911 | wxASSERT_MSG( m_wnd, wxT("invalid window") ); |
912 | ||
913 | int pX = 0, pY = 0; | |
7de59551 | 914 | AdjustForParentClientOrigin(pX, pY, 0); |
e41dcea5 | 915 | |
ea98f686 VS |
916 | if (x) *x = m_wnd->x - pX; |
917 | if (y) *y = m_wnd->y - pY; | |
a4bbc9f7 VS |
918 | } |
919 | ||
920 | void wxWindowMGL::DoScreenToClient(int *x, int *y) const | |
921 | { | |
922 | int ax, ay; | |
985520bc | 923 | MGL_wmCoordGlobalToLocal(m_wnd, 0, 0, &ax, &ay); |
a4bbc9f7 | 924 | if (x) |
985520bc | 925 | (*x) += ax; |
a4bbc9f7 | 926 | if (y) |
985520bc | 927 | (*y) += ay; |
a4bbc9f7 VS |
928 | } |
929 | ||
930 | void wxWindowMGL::DoClientToScreen(int *x, int *y) const | |
931 | { | |
932 | int ax, ay; | |
985520bc | 933 | MGL_wmCoordLocalToGlobal(m_wnd, 0, 0, &ax, &ay); |
a4bbc9f7 | 934 | if (x) |
985520bc | 935 | (*x) += ax; |
a4bbc9f7 | 936 | if (y) |
985520bc | 937 | (*y) += ay; |
a4bbc9f7 VS |
938 | } |
939 | ||
940 | // Get size *available for subwindows* i.e. excluding menu bar etc. | |
941 | void wxWindowMGL::DoGetClientSize(int *x, int *y) const | |
942 | { | |
943 | DoGetSize(x, y); | |
944 | } | |
945 | ||
946 | void wxWindowMGL::DoMoveWindow(int x, int y, int width, int height) | |
947 | { | |
1cdab5d1 MW |
948 | wxRect rcClient(GetClientRect()); |
949 | ||
950 | MGL_wmSetWindowPosition(m_wnd, x, y, width, height); | |
951 | ||
952 | // When the origin or a window stays fixed but the height or width | |
953 | // changes, invalidate the old and new non-client areas | |
954 | if ( !HasFlag(wxFULL_REPAINT_ON_RESIZE) && | |
955 | m_wnd->x == x && m_wnd->y == y && | |
956 | rcClient.Intersect(GetClientRect()) != wxRect(0, 0, width, height) ) | |
957 | { | |
958 | wxRegion rgn(0, 0, width, height); | |
959 | rgn.Subtract(rcClient); | |
960 | ||
961 | // This should work I think, but doesn't seem to: | |
962 | //MGL_wmInvalidateWindowRegion(m_wnd, rgn.GetMGLRegion().rgnPointer()); | |
963 | ||
964 | // Use MGL_wmInvalidateWindowRect instead: | |
965 | for (wxRegionIterator it(rgn); it; it++) | |
966 | { | |
967 | rect_t rc; | |
968 | rc.left = it.GetX(); | |
969 | rc.top = it.GetY(); | |
970 | rc.right = rc.left + it.GetW(); | |
971 | rc.bottom = rc.top + it.GetH(); | |
972 | MGL_wmInvalidateWindowRect(m_wnd, &rc); | |
973 | } | |
974 | } | |
a4bbc9f7 VS |
975 | } |
976 | ||
977 | // set the size of the window: if the dimensions are positive, just use them, | |
978 | // but if any of them is equal to -1, it means that we must find the value for | |
979 | // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in | |
980 | // which case -1 is a valid value for x and y) | |
981 | // | |
982 | // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate | |
983 | // the width/height to best suit our contents, otherwise we reuse the current | |
984 | // width/height | |
985 | void wxWindowMGL::DoSetSize(int x, int y, int width, int height, int sizeFlags) | |
986 | { | |
987 | // get the current size and position... | |
988 | int currentX, currentY; | |
989 | GetPosition(¤tX, ¤tY); | |
990 | int currentW,currentH; | |
991 | GetSize(¤tW, ¤tH); | |
992 | ||
993 | // ... and don't do anything (avoiding flicker) if it's already ok | |
994 | if ( x == currentX && y == currentY && | |
995 | width == currentW && height == currentH ) | |
996 | { | |
997 | return; | |
998 | } | |
999 | ||
1000 | if ( x == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) ) | |
1001 | x = currentX; | |
1002 | if ( y == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) ) | |
1003 | y = currentY; | |
1004 | ||
a4bbc9f7 | 1005 | AdjustForParentClientOrigin(x, y, sizeFlags); |
a4bbc9f7 VS |
1006 | |
1007 | wxSize size(-1, -1); | |
1008 | if ( width == -1 ) | |
1009 | { | |
1010 | if ( sizeFlags & wxSIZE_AUTO_WIDTH ) | |
1011 | { | |
1012 | size = DoGetBestSize(); | |
1013 | width = size.x; | |
1014 | } | |
1015 | else | |
1016 | { | |
1017 | // just take the current one | |
1018 | width = currentW; | |
1019 | } | |
1020 | } | |
7de59551 | 1021 | |
a4bbc9f7 VS |
1022 | if ( height == -1 ) |
1023 | { | |
1024 | if ( sizeFlags & wxSIZE_AUTO_HEIGHT ) | |
1025 | { | |
1026 | if ( size.x == -1 ) | |
1027 | { | |
1028 | size = DoGetBestSize(); | |
1029 | } | |
1030 | //else: already called DoGetBestSize() above | |
1031 | ||
1032 | height = size.y; | |
1033 | } | |
1034 | else | |
1035 | { | |
1036 | // just take the current one | |
1037 | height = currentH; | |
1038 | } | |
1039 | } | |
7de59551 | 1040 | |
6feddea3 | 1041 | int maxWidth = GetMaxWidth(), |
7de59551 | 1042 | minWidth = GetMinWidth(), |
6feddea3 VS |
1043 | maxHeight = GetMaxHeight(), |
1044 | minHeight = GetMinHeight(); | |
7de59551 | 1045 | |
6feddea3 VS |
1046 | if ( minWidth != -1 && width < minWidth ) width = minWidth; |
1047 | if ( maxWidth != -1 && width > maxWidth ) width = maxWidth; | |
1048 | if ( minHeight != -1 && height < minHeight ) height = minHeight; | |
1049 | if ( maxHeight != -1 && height > maxHeight ) height = maxHeight; | |
a4bbc9f7 | 1050 | |
7de59551 | 1051 | if ( m_wnd->x != x || m_wnd->y != y || |
88f2a771 VS |
1052 | (int)m_wnd->width != width || (int)m_wnd->height != height ) |
1053 | { | |
1054 | DoMoveWindow(x, y, width, height); | |
a4bbc9f7 | 1055 | |
127eab18 WS |
1056 | wxSize newSize(width, height); |
1057 | wxSizeEvent event(newSize, GetId()); | |
88f2a771 VS |
1058 | event.SetEventObject(this); |
1059 | GetEventHandler()->ProcessEvent(event); | |
1060 | } | |
a4bbc9f7 VS |
1061 | } |
1062 | ||
1063 | void wxWindowMGL::DoSetClientSize(int width, int height) | |
1064 | { | |
1065 | SetSize(width, height); | |
1066 | } | |
1067 | ||
1068 | // --------------------------------------------------------------------------- | |
1069 | // text metrics | |
1070 | // --------------------------------------------------------------------------- | |
1071 | ||
1072 | int wxWindowMGL::GetCharHeight() const | |
1073 | { | |
1074 | wxScreenDC dc; | |
1075 | dc.SetFont(m_font); | |
1076 | return dc.GetCharHeight(); | |
1077 | } | |
1078 | ||
1079 | int wxWindowMGL::GetCharWidth() const | |
1080 | { | |
1081 | wxScreenDC dc; | |
1082 | dc.SetFont(m_font); | |
1083 | return dc.GetCharWidth(); | |
1084 | } | |
1085 | ||
1086 | void wxWindowMGL::GetTextExtent(const wxString& string, | |
1087 | int *x, int *y, | |
1088 | int *descent, int *externalLeading, | |
1089 | const wxFont *theFont) const | |
1090 | { | |
1091 | wxScreenDC dc; | |
1092 | if (!theFont) | |
1093 | theFont = &m_font; | |
1094 | dc.GetTextExtent(string, x, y, descent, externalLeading, (wxFont*)theFont); | |
1095 | } | |
1096 | ||
a4bbc9f7 | 1097 | |
a4bbc9f7 VS |
1098 | // --------------------------------------------------------------------------- |
1099 | // painting | |
1100 | // --------------------------------------------------------------------------- | |
1101 | ||
2b260bc3 | 1102 | void wxWindowMGL::Refresh(bool eraseBack, const wxRect *rect) |
a4bbc9f7 | 1103 | { |
2b260bc3 VS |
1104 | if ( m_eraseBackground == -1 ) |
1105 | m_eraseBackground = eraseBack; | |
1106 | else | |
1107 | m_eraseBackground |= eraseBack; | |
7de59551 | 1108 | |
a4bbc9f7 VS |
1109 | if ( rect ) |
1110 | { | |
1111 | rect_t r; | |
1112 | r.left = rect->GetLeft(), r.right = rect->GetRight(); | |
1113 | r.top = rect->GetTop(), r.bottom = rect->GetBottom(); | |
1114 | MGL_wmInvalidateWindowRect(GetHandle(), &r); | |
1115 | } | |
1116 | else | |
1117 | MGL_wmInvalidateWindow(GetHandle()); | |
1118 | } | |
1119 | ||
1120 | void wxWindowMGL::Update() | |
1121 | { | |
a4bbc9f7 VS |
1122 | if ( !m_frozen ) |
1123 | MGL_wmUpdateDC(g_winMng); | |
1124 | } | |
1125 | ||
1126 | void wxWindowMGL::Freeze() | |
1127 | { | |
127eab18 WS |
1128 | m_frozen = true; |
1129 | m_refreshAfterThaw = false; | |
a4bbc9f7 VS |
1130 | } |
1131 | ||
1132 | void wxWindowMGL::Thaw() | |
1133 | { | |
127eab18 | 1134 | m_frozen = false; |
a4bbc9f7 VS |
1135 | if ( m_refreshAfterThaw ) |
1136 | Refresh(); | |
1137 | } | |
1138 | ||
a4bbc9f7 VS |
1139 | void wxWindowMGL::HandlePaint(MGLDevCtx *dc) |
1140 | { | |
1141 | if ( m_frozen ) | |
1142 | { | |
7de59551 | 1143 | // Don't paint anything if the window is frozen. |
127eab18 | 1144 | m_refreshAfterThaw = true; |
a4bbc9f7 VS |
1145 | return; |
1146 | } | |
7de59551 RD |
1147 | |
1148 | #ifdef __WXDEBUG__ | |
82186005 VS |
1149 | // FIXME_MGL -- debugging stuff, to be removed! |
1150 | static int debugPaintEvents = -1; | |
1151 | if ( debugPaintEvents == -1 ) | |
1152 | debugPaintEvents = wxGetEnv(wxT("WXMGL_DEBUG_PAINT_EVENTS"), NULL); | |
1153 | if ( debugPaintEvents ) | |
1154 | { | |
1155 | dc->setColorRGB(255,0,255); | |
1156 | dc->fillRect(-1000,-1000,2000,2000); | |
06414d99 | 1157 | wxMilliSleep(50); |
82186005 | 1158 | } |
b8c0528d VS |
1159 | #endif |
1160 | ||
fd495ab3 VS |
1161 | MGLRegion clip; |
1162 | dc->getClipRegion(clip); | |
1163 | m_updateRegion = wxRegion(clip); | |
a4bbc9f7 VS |
1164 | m_paintMGLDC = dc; |
1165 | ||
a679e129 VS |
1166 | #if wxUSE_CARET |
1167 | // must hide caret temporarily, otherwise we'd get rendering artifacts | |
1168 | wxCaret *caret = GetCaret(); | |
1169 | if ( caret ) | |
1170 | caret->Hide(); | |
1171 | #endif // wxUSE_CARET | |
1172 | ||
2b260bc3 | 1173 | if ( m_eraseBackground != 0 ) |
7bdc1879 | 1174 | { |
2b260bc3 VS |
1175 | wxWindowDC dc((wxWindow*)this); |
1176 | wxEraseEvent eventEr(m_windowId, &dc); | |
1177 | eventEr.SetEventObject(this); | |
1178 | GetEventHandler()->ProcessEvent(eventEr); | |
7bdc1879 | 1179 | } |
2b260bc3 | 1180 | m_eraseBackground = -1; |
a4bbc9f7 VS |
1181 | |
1182 | wxNcPaintEvent eventNc(GetId()); | |
1183 | eventNc.SetEventObject(this); | |
1184 | GetEventHandler()->ProcessEvent(eventNc); | |
7de59551 | 1185 | |
a4bbc9f7 VS |
1186 | wxPaintEvent eventPt(GetId()); |
1187 | eventPt.SetEventObject(this); | |
1188 | GetEventHandler()->ProcessEvent(eventPt); | |
a4bbc9f7 | 1189 | |
a679e129 VS |
1190 | #if wxUSE_CARET |
1191 | if ( caret ) | |
1192 | caret->Show(); | |
1193 | #endif // wxUSE_CARET | |
1194 | ||
7bdc1879 | 1195 | m_paintMGLDC = NULL; |
fd495ab3 | 1196 | m_updateRegion.Clear(); |
a4bbc9f7 VS |
1197 | } |
1198 | ||
1199 | ||
1200 | // Find the wxWindow at the current mouse position, returning the mouse | |
1201 | // position. | |
1202 | wxWindow* wxFindWindowAtPointer(wxPoint& pt) | |
1203 | { | |
1204 | return wxFindWindowAtPoint(pt = wxGetMousePosition()); | |
1205 | } | |
1206 | ||
1207 | wxWindow* wxFindWindowAtPoint(const wxPoint& pt) | |
1208 | { | |
1209 | window_t *wnd = MGL_wmGetWindowAtPosition(g_winMng, pt.x, pt.y); | |
1210 | return (wxWindow*)wnd->userData; | |
32b8ec41 | 1211 | } |
d53fc7c9 VS |
1212 | |
1213 | ||
1214 | // --------------------------------------------------------------------------- | |
1215 | // idle events processing | |
1216 | // --------------------------------------------------------------------------- | |
1217 | ||
e39af974 | 1218 | void wxWindowMGL::OnInternalIdle() |
d53fc7c9 | 1219 | { |
24bd6cb9 | 1220 | if (wxUpdateUIEvent::CanUpdate(this) && IsShown()) |
e39af974 | 1221 | UpdateWindowUI(wxUPDATE_UI_FROMIDLE); |
d53fc7c9 | 1222 | } |