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