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