build fixes for Universal
[wxWidgets.git] / src / gtk / window.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/window.cpp
3 // Purpose: wxWindowGTK implementation
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
12
13 #ifdef __VMS
14 #define XWarpPointer XWARPPOINTER
15 #endif
16
17 #include "wx/window.h"
18
19 #ifndef WX_PRECOMP
20 #include "wx/log.h"
21 #include "wx/app.h"
22 #include "wx/toplevel.h"
23 #include "wx/dcclient.h"
24 #include "wx/menu.h"
25 #include "wx/settings.h"
26 #include "wx/msgdlg.h"
27 #include "wx/math.h"
28 #endif
29
30 #include "wx/dnd.h"
31 #include "wx/tooltip.h"
32 #include "wx/caret.h"
33 #include "wx/fontutil.h"
34 #include "wx/sysopt.h"
35
36 #include <ctype.h>
37
38 #include "wx/gtk/private.h"
39 #include "wx/gtk/private/win_gtk.h"
40 #include "wx/gtk/private/event.h"
41 using namespace wxGTKImpl;
42
43 #include <gdk/gdkx.h>
44
45 #include <gdk/gdkkeysyms.h>
46 #if GTK_CHECK_VERSION(3,0,0)
47 #include <gdk/gdkkeysyms-compat.h>
48 #endif
49
50 //-----------------------------------------------------------------------------
51 // documentation on internals
52 //-----------------------------------------------------------------------------
53
54 /*
55 I have been asked several times about writing some documentation about
56 the GTK port of wxWidgets, especially its internal structures. Obviously,
57 you cannot understand wxGTK without knowing a little about the GTK, but
58 some more information about what the wxWindow, which is the base class
59 for all other window classes, does seems required as well.
60
61 I)
62
63 What does wxWindow do? It contains the common interface for the following
64 jobs of its descendants:
65
66 1) Define the rudimentary behaviour common to all window classes, such as
67 resizing, intercepting user input (so as to make it possible to use these
68 events for special purposes in a derived class), window names etc.
69
70 2) Provide the possibility to contain and manage children, if the derived
71 class is allowed to contain children, which holds true for those window
72 classes which do not display a native GTK widget. To name them, these
73 classes are wxPanel, wxScrolledWindow, wxDialog, wxFrame. The MDI frame-
74 work classes are a special case and are handled a bit differently from
75 the rest. The same holds true for the wxNotebook class.
76
77 3) Provide the possibility to draw into a client area of a window. This,
78 too, only holds true for classes that do not display a native GTK widget
79 as above.
80
81 4) Provide the entire mechanism for scrolling widgets. This actual inter-
82 face for this is usually in wxScrolledWindow, but the GTK implementation
83 is in this class.
84
85 5) A multitude of helper or extra methods for special purposes, such as
86 Drag'n'Drop, managing validators etc.
87
88 6) Display a border (sunken, raised, simple or none).
89
90 Normally one might expect, that one wxWidgets window would always correspond
91 to one GTK widget. Under GTK, there is no such all-round widget that has all
92 the functionality. Moreover, the GTK defines a client area as a different
93 widget from the actual widget you are handling. Last but not least some
94 special classes (e.g. wxFrame) handle different categories of widgets and
95 still have the possibility to draw something in the client area.
96 It was therefore required to write a special purpose GTK widget, that would
97 represent a client area in the sense of wxWidgets capable to do the jobs
98 2), 3) and 4). I have written this class and it resides in win_gtk.c of
99 this directory.
100
101 All windows must have a widget, with which they interact with other under-
102 lying GTK widgets. It is this widget, e.g. that has to be resized etc and
103 the wxWindow class has a member variable called m_widget which holds a
104 pointer to this widget. When the window class represents a GTK native widget,
105 this is (in most cases) the only GTK widget the class manages. E.g. the
106 wxStaticText class handles only a GtkLabel widget a pointer to which you
107 can find in m_widget (defined in wxWindow)
108
109 When the class has a client area for drawing into and for containing children
110 it has to handle the client area widget (of the type wxPizza, defined in
111 win_gtk.cpp), but there could be any number of widgets, handled by a class.
112 The common rule for all windows is only, that the widget that interacts with
113 the rest of GTK must be referenced in m_widget and all other widgets must be
114 children of this widget on the GTK level. The top-most widget, which also
115 represents the client area, must be in the m_wxwindow field and must be of
116 the type wxPizza.
117
118 As I said, the window classes that display a GTK native widget only have
119 one widget, so in the case of e.g. the wxButton class m_widget holds a
120 pointer to a GtkButton widget. But windows with client areas (for drawing
121 and children) have a m_widget field that is a pointer to a GtkScrolled-
122 Window and a m_wxwindow field that is pointer to a wxPizza and this
123 one is (in the GTK sense) a child of the GtkScrolledWindow.
124
125 If the m_wxwindow field is set, then all input to this widget is inter-
126 cepted and sent to the wxWidgets class. If not, all input to the widget
127 that gets pointed to by m_widget gets intercepted and sent to the class.
128
129 II)
130
131 The design of scrolling in wxWidgets is markedly different from that offered
132 by the GTK itself and therefore we cannot simply take it as it is. In GTK,
133 clicking on a scrollbar belonging to scrolled window will inevitably move
134 the window. In wxWidgets, the scrollbar will only emit an event, send this
135 to (normally) a wxScrolledWindow and that class will call ScrollWindow()
136 which actually moves the window and its sub-windows. Note that wxPizza
137 memorizes how much it has been scrolled but that wxWidgets forgets this
138 so that the two coordinates systems have to be kept in synch. This is done
139 in various places using the pizza->m_scroll_x and pizza->m_scroll_y values.
140
141 III)
142
143 Singularly the most broken code in GTK is the code that is supposed to
144 inform subwindows (child windows) about new positions. Very often, duplicate
145 events are sent without changes in size or position, equally often no
146 events are sent at all (All this is due to a bug in the GtkContainer code
147 which got fixed in GTK 1.2.6). For that reason, wxGTK completely ignores
148 GTK's own system and it simply waits for size events for toplevel windows
149 and then iterates down the respective size events to all window. This has
150 the disadvantage that windows might get size events before the GTK widget
151 actually has the reported size. This doesn't normally pose any problem, but
152 the OpenGL drawing routines rely on correct behaviour. Therefore, I have
153 added the m_nativeSizeEvents flag, which is true only for the OpenGL canvas,
154 i.e. the wxGLCanvas will emit a size event, when (and not before) the X11
155 window that is used for OpenGL output really has that size (as reported by
156 GTK).
157
158 IV)
159
160 If someone at some point of time feels the immense desire to have a look at,
161 change or attempt to optimise the Refresh() logic, this person will need an
162 intimate understanding of what "draw" and "expose" events are and what
163 they are used for, in particular when used in connection with GTK's
164 own windowless widgets. Beware.
165
166 V)
167
168 Cursors, too, have been a constant source of pleasure. The main difficulty
169 is that a GdkWindow inherits a cursor if the programmer sets a new cursor
170 for the parent. To prevent this from doing too much harm, SetCursor calls
171 GTKUpdateCursor, which will recursively re-set the cursors of all child windows.
172 Also don't forget that cursors (like much else) are connected to GdkWindows,
173 not GtkWidgets and that the "window" field of a GtkWidget might very well
174 point to the GdkWindow of the parent widget (-> "window-less widget") and
175 that the two obviously have very different meanings.
176 */
177
178 //-----------------------------------------------------------------------------
179 // data
180 //-----------------------------------------------------------------------------
181
182 // Don't allow event propagation during drag
183 bool g_blockEventsOnDrag;
184 // Don't allow mouse event propagation during scroll
185 bool g_blockEventsOnScroll;
186 extern wxCursor g_globalCursor;
187
188 // mouse capture state: the window which has it and if the mouse is currently
189 // inside it
190 static wxWindowGTK *g_captureWindow = NULL;
191 static bool g_captureWindowHasMouse = false;
192
193 // The window that currently has focus:
194 static wxWindowGTK *gs_currentFocus = NULL;
195 // The window that is scheduled to get focus in the next event loop iteration
196 // or NULL if there's no pending focus change:
197 static wxWindowGTK *gs_pendingFocus = NULL;
198
199 // the window that has deferred focus-out event pending, if any (see
200 // GTKAddDeferredFocusOut() for details)
201 static wxWindowGTK *gs_deferredFocusOut = NULL;
202
203 // global variables because GTK+ DnD want to have the
204 // mouse event that caused it
205 GdkEvent *g_lastMouseEvent = NULL;
206 int g_lastButtonNumber = 0;
207
208 //-----------------------------------------------------------------------------
209 // debug
210 //-----------------------------------------------------------------------------
211
212 // the trace mask used for the focus debugging messages
213 #define TRACE_FOCUS wxT("focus")
214
215 //-----------------------------------------------------------------------------
216 // "size_request" of m_widget
217 //-----------------------------------------------------------------------------
218
219 extern "C" {
220 static void
221 wxgtk_window_size_request_callback(GtkWidget * WXUNUSED(widget),
222 GtkRequisition *requisition,
223 wxWindow * win)
224 {
225 int w, h;
226 win->GetSize( &w, &h );
227 if (w < 2)
228 w = 2;
229 if (h < 2)
230 h = 2;
231
232 requisition->height = h;
233 requisition->width = w;
234 }
235 }
236
237 //-----------------------------------------------------------------------------
238 // "expose_event" of m_wxwindow
239 //-----------------------------------------------------------------------------
240
241 extern "C" {
242 static gboolean
243 gtk_window_expose_callback( GtkWidget*,
244 GdkEventExpose *gdk_event,
245 wxWindow *win )
246 {
247 if (gdk_event->window == win->GTKGetDrawingWindow())
248 {
249 win->GetUpdateRegion() = wxRegion( gdk_event->region );
250 win->GtkSendPaintEvents();
251 }
252 // Let parent window draw window-less widgets
253 return FALSE;
254 }
255 }
256
257 #ifndef __WXUNIVERSAL__
258 //-----------------------------------------------------------------------------
259 // "expose_event" from m_wxwindow->parent, for drawing border
260 //-----------------------------------------------------------------------------
261
262 extern "C" {
263 static gboolean
264 expose_event_border(GtkWidget* widget, GdkEventExpose* gdk_event, wxWindow* win)
265 {
266 if (gdk_event->window != gtk_widget_get_parent_window(win->m_wxwindow))
267 return false;
268
269 if (!win->IsShown())
270 return false;
271
272 GtkAllocation alloc;
273 gtk_widget_get_allocation(win->m_wxwindow, &alloc);
274 const int x = alloc.x;
275 const int y = alloc.y;
276 const int w = alloc.width;
277 const int h = alloc.height;
278
279 if (w <= 0 || h <= 0)
280 return false;
281
282 if (win->HasFlag(wxBORDER_SIMPLE))
283 {
284 gdk_draw_rectangle(gdk_event->window,
285 gtk_widget_get_style(widget)->black_gc, false, x, y, w - 1, h - 1);
286 }
287 else
288 {
289 GtkShadowType shadow = GTK_SHADOW_IN;
290 if (win->HasFlag(wxBORDER_RAISED))
291 shadow = GTK_SHADOW_OUT;
292
293 // Style detail to use
294 const char* detail;
295 if (win->m_widget == win->m_wxwindow)
296 // for non-scrollable wxWindows
297 detail = "entry";
298 else
299 // for scrollable ones
300 detail = "viewport";
301
302 // clip rect is required to avoid painting background
303 // over upper left (w,h) of parent window
304 GdkRectangle clipRect = { x, y, w, h };
305 gtk_paint_shadow(
306 gtk_widget_get_style(win->m_wxwindow), gdk_event->window, GTK_STATE_NORMAL,
307 shadow, &clipRect, wxGTKPrivate::GetEntryWidget(), detail, x, y, w, h);
308 }
309 return false;
310 }
311 }
312
313 //-----------------------------------------------------------------------------
314 // "parent_set" from m_wxwindow
315 //-----------------------------------------------------------------------------
316
317 extern "C" {
318 static void
319 parent_set(GtkWidget* widget, GtkWidget* old_parent, wxWindow* win)
320 {
321 if (old_parent)
322 {
323 g_signal_handlers_disconnect_by_func(
324 old_parent, (void*)expose_event_border, win);
325 }
326 GtkWidget* parent = gtk_widget_get_parent(widget);
327 if (parent)
328 {
329 g_signal_connect_after(parent, "expose_event",
330 G_CALLBACK(expose_event_border), win);
331 }
332 }
333 }
334 #endif // !__WXUNIVERSAL__
335
336 //-----------------------------------------------------------------------------
337 // "key_press_event" from any window
338 //-----------------------------------------------------------------------------
339
340 // These are used when transforming Ctrl-alpha to ascii values 1-26
341 inline bool wxIsLowerChar(int code)
342 {
343 return (code >= 'a' && code <= 'z' );
344 }
345
346 inline bool wxIsUpperChar(int code)
347 {
348 return (code >= 'A' && code <= 'Z' );
349 }
350
351
352 // set WXTRACE to this to see the key event codes on the console
353 #define TRACE_KEYS wxT("keyevent")
354
355 // translates an X key symbol to WXK_XXX value
356 //
357 // if isChar is true it means that the value returned will be used for EVT_CHAR
358 // event and then we choose the logical WXK_XXX, i.e. '/' for GDK_KP_Divide,
359 // for example, while if it is false it means that the value is going to be
360 // used for KEY_DOWN/UP events and then we translate GDK_KP_Divide to
361 // WXK_NUMPAD_DIVIDE
362 static long wxTranslateKeySymToWXKey(KeySym keysym, bool isChar)
363 {
364 long key_code;
365
366 switch ( keysym )
367 {
368 // Shift, Control and Alt don't generate the CHAR events at all
369 case GDK_Shift_L:
370 case GDK_Shift_R:
371 key_code = isChar ? 0 : WXK_SHIFT;
372 break;
373 case GDK_Control_L:
374 case GDK_Control_R:
375 key_code = isChar ? 0 : WXK_CONTROL;
376 break;
377 case GDK_Meta_L:
378 case GDK_Meta_R:
379 case GDK_Alt_L:
380 case GDK_Alt_R:
381 case GDK_Super_L:
382 case GDK_Super_R:
383 key_code = isChar ? 0 : WXK_ALT;
384 break;
385
386 // neither do the toggle modifies
387 case GDK_Scroll_Lock:
388 key_code = isChar ? 0 : WXK_SCROLL;
389 break;
390
391 case GDK_Caps_Lock:
392 key_code = isChar ? 0 : WXK_CAPITAL;
393 break;
394
395 case GDK_Num_Lock:
396 key_code = isChar ? 0 : WXK_NUMLOCK;
397 break;
398
399
400 // various other special keys
401 case GDK_Menu:
402 key_code = WXK_MENU;
403 break;
404
405 case GDK_Help:
406 key_code = WXK_HELP;
407 break;
408
409 case GDK_BackSpace:
410 key_code = WXK_BACK;
411 break;
412
413 case GDK_ISO_Left_Tab:
414 case GDK_Tab:
415 key_code = WXK_TAB;
416 break;
417
418 case GDK_Linefeed:
419 case GDK_Return:
420 key_code = WXK_RETURN;
421 break;
422
423 case GDK_Clear:
424 key_code = WXK_CLEAR;
425 break;
426
427 case GDK_Pause:
428 key_code = WXK_PAUSE;
429 break;
430
431 case GDK_Select:
432 key_code = WXK_SELECT;
433 break;
434
435 case GDK_Print:
436 key_code = WXK_PRINT;
437 break;
438
439 case GDK_Execute:
440 key_code = WXK_EXECUTE;
441 break;
442
443 case GDK_Escape:
444 key_code = WXK_ESCAPE;
445 break;
446
447 // cursor and other extended keyboard keys
448 case GDK_Delete:
449 key_code = WXK_DELETE;
450 break;
451
452 case GDK_Home:
453 key_code = WXK_HOME;
454 break;
455
456 case GDK_Left:
457 key_code = WXK_LEFT;
458 break;
459
460 case GDK_Up:
461 key_code = WXK_UP;
462 break;
463
464 case GDK_Right:
465 key_code = WXK_RIGHT;
466 break;
467
468 case GDK_Down:
469 key_code = WXK_DOWN;
470 break;
471
472 case GDK_Prior: // == GDK_Page_Up
473 key_code = WXK_PAGEUP;
474 break;
475
476 case GDK_Next: // == GDK_Page_Down
477 key_code = WXK_PAGEDOWN;
478 break;
479
480 case GDK_End:
481 key_code = WXK_END;
482 break;
483
484 case GDK_Begin:
485 key_code = WXK_HOME;
486 break;
487
488 case GDK_Insert:
489 key_code = WXK_INSERT;
490 break;
491
492
493 // numpad keys
494 case GDK_KP_0:
495 case GDK_KP_1:
496 case GDK_KP_2:
497 case GDK_KP_3:
498 case GDK_KP_4:
499 case GDK_KP_5:
500 case GDK_KP_6:
501 case GDK_KP_7:
502 case GDK_KP_8:
503 case GDK_KP_9:
504 key_code = (isChar ? '0' : int(WXK_NUMPAD0)) + keysym - GDK_KP_0;
505 break;
506
507 case GDK_KP_Space:
508 key_code = isChar ? ' ' : int(WXK_NUMPAD_SPACE);
509 break;
510
511 case GDK_KP_Tab:
512 key_code = isChar ? WXK_TAB : WXK_NUMPAD_TAB;
513 break;
514
515 case GDK_KP_Enter:
516 key_code = isChar ? WXK_RETURN : WXK_NUMPAD_ENTER;
517 break;
518
519 case GDK_KP_F1:
520 key_code = isChar ? WXK_F1 : WXK_NUMPAD_F1;
521 break;
522
523 case GDK_KP_F2:
524 key_code = isChar ? WXK_F2 : WXK_NUMPAD_F2;
525 break;
526
527 case GDK_KP_F3:
528 key_code = isChar ? WXK_F3 : WXK_NUMPAD_F3;
529 break;
530
531 case GDK_KP_F4:
532 key_code = isChar ? WXK_F4 : WXK_NUMPAD_F4;
533 break;
534
535 case GDK_KP_Home:
536 key_code = isChar ? WXK_HOME : WXK_NUMPAD_HOME;
537 break;
538
539 case GDK_KP_Left:
540 key_code = isChar ? WXK_LEFT : WXK_NUMPAD_LEFT;
541 break;
542
543 case GDK_KP_Up:
544 key_code = isChar ? WXK_UP : WXK_NUMPAD_UP;
545 break;
546
547 case GDK_KP_Right:
548 key_code = isChar ? WXK_RIGHT : WXK_NUMPAD_RIGHT;
549 break;
550
551 case GDK_KP_Down:
552 key_code = isChar ? WXK_DOWN : WXK_NUMPAD_DOWN;
553 break;
554
555 case GDK_KP_Prior: // == GDK_KP_Page_Up
556 key_code = isChar ? WXK_PAGEUP : WXK_NUMPAD_PAGEUP;
557 break;
558
559 case GDK_KP_Next: // == GDK_KP_Page_Down
560 key_code = isChar ? WXK_PAGEDOWN : WXK_NUMPAD_PAGEDOWN;
561 break;
562
563 case GDK_KP_End:
564 key_code = isChar ? WXK_END : WXK_NUMPAD_END;
565 break;
566
567 case GDK_KP_Begin:
568 key_code = isChar ? WXK_HOME : WXK_NUMPAD_BEGIN;
569 break;
570
571 case GDK_KP_Insert:
572 key_code = isChar ? WXK_INSERT : WXK_NUMPAD_INSERT;
573 break;
574
575 case GDK_KP_Delete:
576 key_code = isChar ? WXK_DELETE : WXK_NUMPAD_DELETE;
577 break;
578
579 case GDK_KP_Equal:
580 key_code = isChar ? '=' : int(WXK_NUMPAD_EQUAL);
581 break;
582
583 case GDK_KP_Multiply:
584 key_code = isChar ? '*' : int(WXK_NUMPAD_MULTIPLY);
585 break;
586
587 case GDK_KP_Add:
588 key_code = isChar ? '+' : int(WXK_NUMPAD_ADD);
589 break;
590
591 case GDK_KP_Separator:
592 // FIXME: what is this?
593 key_code = isChar ? '.' : int(WXK_NUMPAD_SEPARATOR);
594 break;
595
596 case GDK_KP_Subtract:
597 key_code = isChar ? '-' : int(WXK_NUMPAD_SUBTRACT);
598 break;
599
600 case GDK_KP_Decimal:
601 key_code = isChar ? '.' : int(WXK_NUMPAD_DECIMAL);
602 break;
603
604 case GDK_KP_Divide:
605 key_code = isChar ? '/' : int(WXK_NUMPAD_DIVIDE);
606 break;
607
608
609 // function keys
610 case GDK_F1:
611 case GDK_F2:
612 case GDK_F3:
613 case GDK_F4:
614 case GDK_F5:
615 case GDK_F6:
616 case GDK_F7:
617 case GDK_F8:
618 case GDK_F9:
619 case GDK_F10:
620 case GDK_F11:
621 case GDK_F12:
622 key_code = WXK_F1 + keysym - GDK_F1;
623 break;
624
625 default:
626 key_code = 0;
627 }
628
629 return key_code;
630 }
631
632 static inline bool wxIsAsciiKeysym(KeySym ks)
633 {
634 return ks < 256;
635 }
636
637 static void wxFillOtherKeyEventFields(wxKeyEvent& event,
638 wxWindowGTK *win,
639 GdkEventKey *gdk_event)
640 {
641 event.SetTimestamp( gdk_event->time );
642 event.SetId(win->GetId());
643
644 event.m_shiftDown = (gdk_event->state & GDK_SHIFT_MASK) != 0;
645 event.m_controlDown = (gdk_event->state & GDK_CONTROL_MASK) != 0;
646 event.m_altDown = (gdk_event->state & GDK_MOD1_MASK) != 0;
647 event.m_metaDown = (gdk_event->state & GDK_META_MASK) != 0;
648
649 // Normally we take the state of modifiers directly from the low level GDK
650 // event but unfortunately GDK uses a different convention from MSW for the
651 // key events corresponding to the modifier keys themselves: in it, when
652 // e.g. Shift key is pressed, GDK_SHIFT_MASK is not set while it is set
653 // when Shift is released. Under MSW the situation is exactly reversed and
654 // the modifier corresponding to the key is set when it is pressed and
655 // unset when it is released. To ensure consistent behaviour between
656 // platforms (and because it seems to make slightly more sense, although
657 // arguably both behaviours are reasonable) we follow MSW here.
658 //
659 // Final notice: we set the flags to the desired value instead of just
660 // inverting them because they are not set correctly (i.e. in the same way
661 // as for the real events generated by the user) for wxUIActionSimulator-
662 // produced events and it seems better to keep that class code the same
663 // among all platforms and fix the discrepancy here instead of adding
664 // wxGTK-specific code to wxUIActionSimulator.
665 const bool isPress = gdk_event->type == GDK_KEY_PRESS;
666 switch ( gdk_event->keyval )
667 {
668 case GDK_Shift_L:
669 case GDK_Shift_R:
670 event.m_shiftDown = isPress;
671 break;
672
673 case GDK_Control_L:
674 case GDK_Control_R:
675 event.m_controlDown = isPress;
676 break;
677
678 case GDK_Alt_L:
679 case GDK_Alt_R:
680 event.m_altDown = isPress;
681 break;
682
683 case GDK_Meta_L:
684 case GDK_Meta_R:
685 case GDK_Super_L:
686 case GDK_Super_R:
687 event.m_metaDown = isPress;
688 break;
689 }
690
691 event.m_rawCode = (wxUint32) gdk_event->keyval;
692 event.m_rawFlags = gdk_event->hardware_keycode;
693
694 wxGetMousePosition(&event.m_x, &event.m_y);
695 win->ScreenToClient(&event.m_x, &event.m_y);
696 event.SetEventObject( win );
697 }
698
699
700 static bool
701 wxTranslateGTKKeyEventToWx(wxKeyEvent& event,
702 wxWindowGTK *win,
703 GdkEventKey *gdk_event)
704 {
705 // VZ: it seems that GDK_KEY_RELEASE event doesn't set event->string
706 // but only event->keyval which is quite useless to us, so remember
707 // the last character from GDK_KEY_PRESS and reuse it as last resort
708 //
709 // NB: should be MT-safe as we're always called from the main thread only
710 static struct
711 {
712 KeySym keysym;
713 long keycode;
714 } s_lastKeyPress = { 0, 0 };
715
716 KeySym keysym = gdk_event->keyval;
717
718 wxLogTrace(TRACE_KEYS, wxT("Key %s event: keysym = %ld"),
719 event.GetEventType() == wxEVT_KEY_UP ? wxT("release")
720 : wxT("press"),
721 keysym);
722
723 long key_code = wxTranslateKeySymToWXKey(keysym, false /* !isChar */);
724
725 if ( !key_code )
726 {
727 // do we have the translation or is it a plain ASCII character?
728 if ( (gdk_event->length == 1) || wxIsAsciiKeysym(keysym) )
729 {
730 // we should use keysym if it is ASCII as X does some translations
731 // like "I pressed while Control is down" => "Ctrl-I" == "TAB"
732 // which we don't want here (but which we do use for OnChar())
733 if ( !wxIsAsciiKeysym(keysym) )
734 {
735 keysym = (KeySym)gdk_event->string[0];
736 }
737
738 // we want to always get the same key code when the same key is
739 // pressed regardless of the state of the modifiers, i.e. on a
740 // standard US keyboard pressing '5' or '%' ('5' key with
741 // Shift) should result in the same key code in OnKeyDown():
742 // '5' (although OnChar() will get either '5' or '%').
743 //
744 // to do it we first translate keysym to keycode (== scan code)
745 // and then back but always using the lower register
746 Display *dpy = (Display *)wxGetDisplay();
747 KeyCode keycode = XKeysymToKeycode(dpy, keysym);
748
749 wxLogTrace(TRACE_KEYS, wxT("\t-> keycode %d"), keycode);
750
751 KeySym keysymNormalized = XKeycodeToKeysym(dpy, keycode, 0);
752
753 // use the normalized, i.e. lower register, keysym if we've
754 // got one
755 key_code = keysymNormalized ? keysymNormalized : keysym;
756
757 // as explained above, we want to have lower register key codes
758 // normally but for the letter keys we want to have the upper ones
759 //
760 // NB: don't use XConvertCase() here, we want to do it for letters
761 // only
762 key_code = toupper(key_code);
763 }
764 else // non ASCII key, what to do?
765 {
766 // by default, ignore it
767 key_code = 0;
768
769 // but if we have cached information from the last KEY_PRESS
770 if ( gdk_event->type == GDK_KEY_RELEASE )
771 {
772 // then reuse it
773 if ( keysym == s_lastKeyPress.keysym )
774 {
775 key_code = s_lastKeyPress.keycode;
776 }
777 }
778 }
779
780 if ( gdk_event->type == GDK_KEY_PRESS )
781 {
782 // remember it to be reused for KEY_UP event later
783 s_lastKeyPress.keysym = keysym;
784 s_lastKeyPress.keycode = key_code;
785 }
786 }
787
788 wxLogTrace(TRACE_KEYS, wxT("\t-> wxKeyCode %ld"), key_code);
789
790 // sending unknown key events doesn't really make sense
791 if ( !key_code )
792 return false;
793
794 event.m_keyCode = key_code;
795
796 #if wxUSE_UNICODE
797 event.m_uniChar = gdk_keyval_to_unicode(key_code ? key_code : keysym);
798 if ( !event.m_uniChar && event.m_keyCode <= WXK_DELETE )
799 {
800 // Set Unicode key code to the ASCII equivalent for compatibility. E.g.
801 // let RETURN generate the key event with both key and Unicode key
802 // codes of 13.
803 event.m_uniChar = event.m_keyCode;
804 }
805 #endif // wxUSE_UNICODE
806
807 // now fill all the other fields
808 wxFillOtherKeyEventFields(event, win, gdk_event);
809
810 return true;
811 }
812
813
814 struct wxGtkIMData
815 {
816 GtkIMContext *context;
817 GdkEventKey *lastKeyEvent;
818
819 wxGtkIMData()
820 {
821 context = gtk_im_multicontext_new();
822 lastKeyEvent = NULL;
823 }
824 ~wxGtkIMData()
825 {
826 g_object_unref (context);
827 }
828 };
829
830 namespace
831 {
832
833 // Send wxEVT_CHAR_HOOK event to the parent of the window and if it wasn't
834 // processed, send wxEVT_CHAR to the window itself. Return true if either of
835 // them was handled.
836 bool
837 SendCharHookAndCharEvents(const wxKeyEvent& event, wxWindow *win)
838 {
839 // wxEVT_CHAR_HOOK must be sent to the top level parent window to allow it
840 // to handle key events in all of its children unless the mouse is captured
841 // in which case we consider that the keyboard should be "captured" too.
842 if ( !g_captureWindow )
843 {
844 wxWindow * const parent = wxGetTopLevelParent(win);
845 if ( parent )
846 {
847 // We need to make a copy of the event object because it is
848 // modified while it's handled, notably its WasProcessed() flag
849 // is set after it had been processed once.
850 wxKeyEvent eventCharHook(event);
851 eventCharHook.SetEventType(wxEVT_CHAR_HOOK);
852 if ( parent->HandleWindowEvent(eventCharHook) )
853 return true;
854 }
855 }
856
857 // As above, make a copy of the event first.
858 wxKeyEvent eventChar(event);
859 eventChar.SetEventType(wxEVT_CHAR);
860 return win->HandleWindowEvent(eventChar);
861 }
862
863 } // anonymous namespace
864
865 extern "C" {
866 static gboolean
867 gtk_window_key_press_callback( GtkWidget *WXUNUSED(widget),
868 GdkEventKey *gdk_event,
869 wxWindow *win )
870 {
871 if (!win->m_hasVMT)
872 return FALSE;
873 if (g_blockEventsOnDrag)
874 return FALSE;
875
876 wxKeyEvent event( wxEVT_KEY_DOWN );
877 bool ret = false;
878 bool return_after_IM = false;
879
880 if( wxTranslateGTKKeyEventToWx(event, win, gdk_event) )
881 {
882 // Emit KEY_DOWN event
883 ret = win->HandleWindowEvent( event );
884 }
885 else
886 {
887 // Return after IM processing as we cannot do
888 // anything with it anyhow.
889 return_after_IM = true;
890 }
891
892 if (!ret && win->m_imData)
893 {
894 win->m_imData->lastKeyEvent = gdk_event;
895
896 // We should let GTK+ IM filter key event first. According to GTK+ 2.0 API
897 // docs, if IM filter returns true, no further processing should be done.
898 // we should send the key_down event anyway.
899 bool intercepted_by_IM = gtk_im_context_filter_keypress(win->m_imData->context, gdk_event);
900 win->m_imData->lastKeyEvent = NULL;
901 if (intercepted_by_IM)
902 {
903 wxLogTrace(TRACE_KEYS, wxT("Key event intercepted by IM"));
904 return TRUE;
905 }
906 }
907
908 if (return_after_IM)
909 return FALSE;
910
911 #if wxUSE_ACCEL
912 if (!ret)
913 {
914 wxWindowGTK *ancestor = win;
915 while (ancestor)
916 {
917 int command = ancestor->GetAcceleratorTable()->GetCommand( event );
918 if (command != -1)
919 {
920 wxCommandEvent menu_event( wxEVT_COMMAND_MENU_SELECTED, command );
921 ret = ancestor->HandleWindowEvent( menu_event );
922
923 if ( !ret )
924 {
925 // if the accelerator wasn't handled as menu event, try
926 // it as button click (for compatibility with other
927 // platforms):
928 wxCommandEvent button_event( wxEVT_COMMAND_BUTTON_CLICKED, command );
929 ret = ancestor->HandleWindowEvent( button_event );
930 }
931
932 break;
933 }
934 if (ancestor->IsTopLevel())
935 break;
936 ancestor = ancestor->GetParent();
937 }
938 }
939 #endif // wxUSE_ACCEL
940
941 // Only send wxEVT_CHAR event if not processed yet. Thus, ALT-x
942 // will only be sent if it is not in an accelerator table.
943 if (!ret)
944 {
945 long key_code;
946 KeySym keysym = gdk_event->keyval;
947 // Find key code for EVT_CHAR and EVT_CHAR_HOOK events
948 key_code = wxTranslateKeySymToWXKey(keysym, true /* isChar */);
949 if ( !key_code )
950 {
951 if ( wxIsAsciiKeysym(keysym) )
952 {
953 // ASCII key
954 key_code = (unsigned char)keysym;
955 }
956 // gdk_event->string is actually deprecated
957 else if ( gdk_event->length == 1 )
958 {
959 key_code = (unsigned char)gdk_event->string[0];
960 }
961 }
962
963 if ( key_code )
964 {
965 wxLogTrace(TRACE_KEYS, wxT("Char event: %ld"), key_code);
966
967 event.m_keyCode = key_code;
968
969 // To conform to the docs we need to translate Ctrl-alpha
970 // characters to values in the range 1-26.
971 if ( event.ControlDown() &&
972 ( wxIsLowerChar(key_code) || wxIsUpperChar(key_code) ))
973 {
974 if ( wxIsLowerChar(key_code) )
975 event.m_keyCode = key_code - 'a' + 1;
976 if ( wxIsUpperChar(key_code) )
977 event.m_keyCode = key_code - 'A' + 1;
978 #if wxUSE_UNICODE
979 event.m_uniChar = event.m_keyCode;
980 #endif
981 }
982
983 ret = SendCharHookAndCharEvents(event, win);
984 }
985 }
986
987 return ret;
988 }
989 }
990
991 extern "C" {
992 static void
993 gtk_wxwindow_commit_cb (GtkIMContext * WXUNUSED(context),
994 const gchar *str,
995 wxWindow *window)
996 {
997 wxKeyEvent event( wxEVT_KEY_DOWN );
998
999 // take modifiers, cursor position, timestamp etc. from the last
1000 // key_press_event that was fed into Input Method:
1001 if (window->m_imData->lastKeyEvent)
1002 {
1003 wxFillOtherKeyEventFields(event,
1004 window, window->m_imData->lastKeyEvent);
1005 }
1006 else
1007 {
1008 event.SetEventObject( window );
1009 }
1010
1011 const wxString data(wxGTK_CONV_BACK_SYS(str));
1012 if( data.empty() )
1013 return;
1014
1015 for( wxString::const_iterator pstr = data.begin(); pstr != data.end(); ++pstr )
1016 {
1017 #if wxUSE_UNICODE
1018 event.m_uniChar = *pstr;
1019 // Backward compatible for ISO-8859-1
1020 event.m_keyCode = *pstr < 256 ? event.m_uniChar : 0;
1021 wxLogTrace(TRACE_KEYS, wxT("IM sent character '%c'"), event.m_uniChar);
1022 #else
1023 event.m_keyCode = (char)*pstr;
1024 #endif // wxUSE_UNICODE
1025
1026 // To conform to the docs we need to translate Ctrl-alpha
1027 // characters to values in the range 1-26.
1028 if ( event.ControlDown() &&
1029 ( wxIsLowerChar(*pstr) || wxIsUpperChar(*pstr) ))
1030 {
1031 if ( wxIsLowerChar(*pstr) )
1032 event.m_keyCode = *pstr - 'a' + 1;
1033 if ( wxIsUpperChar(*pstr) )
1034 event.m_keyCode = *pstr - 'A' + 1;
1035
1036 event.m_keyCode = *pstr - 'a' + 1;
1037 #if wxUSE_UNICODE
1038 event.m_uniChar = event.m_keyCode;
1039 #endif
1040 }
1041
1042 SendCharHookAndCharEvents(event, window);
1043 }
1044 }
1045 }
1046
1047
1048 //-----------------------------------------------------------------------------
1049 // "key_release_event" from any window
1050 //-----------------------------------------------------------------------------
1051
1052 extern "C" {
1053 static gboolean
1054 gtk_window_key_release_callback( GtkWidget * WXUNUSED(widget),
1055 GdkEventKey *gdk_event,
1056 wxWindowGTK *win )
1057 {
1058 if (!win->m_hasVMT)
1059 return FALSE;
1060
1061 if (g_blockEventsOnDrag)
1062 return FALSE;
1063
1064 wxKeyEvent event( wxEVT_KEY_UP );
1065 if ( !wxTranslateGTKKeyEventToWx(event, win, gdk_event) )
1066 {
1067 // unknown key pressed, ignore (the event would be useless anyhow)
1068 return FALSE;
1069 }
1070
1071 return win->GTKProcessEvent(event);
1072 }
1073 }
1074
1075 // ============================================================================
1076 // the mouse events
1077 // ============================================================================
1078
1079 // ----------------------------------------------------------------------------
1080 // mouse event processing helpers
1081 // ----------------------------------------------------------------------------
1082
1083 static void AdjustEventButtonState(wxMouseEvent& event)
1084 {
1085 // GDK reports the old state of the button for a button press event, but
1086 // for compatibility with MSW and common sense we want m_leftDown be TRUE
1087 // for a LEFT_DOWN event, not FALSE, so we will invert
1088 // left/right/middleDown for the corresponding click events
1089
1090 if ((event.GetEventType() == wxEVT_LEFT_DOWN) ||
1091 (event.GetEventType() == wxEVT_LEFT_DCLICK) ||
1092 (event.GetEventType() == wxEVT_LEFT_UP))
1093 {
1094 event.m_leftDown = !event.m_leftDown;
1095 return;
1096 }
1097
1098 if ((event.GetEventType() == wxEVT_MIDDLE_DOWN) ||
1099 (event.GetEventType() == wxEVT_MIDDLE_DCLICK) ||
1100 (event.GetEventType() == wxEVT_MIDDLE_UP))
1101 {
1102 event.m_middleDown = !event.m_middleDown;
1103 return;
1104 }
1105
1106 if ((event.GetEventType() == wxEVT_RIGHT_DOWN) ||
1107 (event.GetEventType() == wxEVT_RIGHT_DCLICK) ||
1108 (event.GetEventType() == wxEVT_RIGHT_UP))
1109 {
1110 event.m_rightDown = !event.m_rightDown;
1111 return;
1112 }
1113
1114 if ((event.GetEventType() == wxEVT_AUX1_DOWN) ||
1115 (event.GetEventType() == wxEVT_AUX1_DCLICK))
1116 {
1117 event.m_aux1Down = true;
1118 return;
1119 }
1120
1121 if ((event.GetEventType() == wxEVT_AUX2_DOWN) ||
1122 (event.GetEventType() == wxEVT_AUX2_DCLICK))
1123 {
1124 event.m_aux2Down = true;
1125 return;
1126 }
1127 }
1128
1129 // find the window to send the mouse event too
1130 static
1131 wxWindowGTK *FindWindowForMouseEvent(wxWindowGTK *win, wxCoord& x, wxCoord& y)
1132 {
1133 wxCoord xx = x;
1134 wxCoord yy = y;
1135
1136 if (win->m_wxwindow)
1137 {
1138 wxPizza* pizza = WX_PIZZA(win->m_wxwindow);
1139 xx += pizza->m_scroll_x;
1140 yy += pizza->m_scroll_y;
1141 }
1142
1143 wxWindowList::compatibility_iterator node = win->GetChildren().GetFirst();
1144 while (node)
1145 {
1146 wxWindowGTK *child = node->GetData();
1147
1148 node = node->GetNext();
1149 if (!child->IsShown())
1150 continue;
1151
1152 if (child->GTKIsTransparentForMouse())
1153 {
1154 // wxStaticBox is transparent in the box itself
1155 int xx1 = child->m_x;
1156 int yy1 = child->m_y;
1157 int xx2 = child->m_x + child->m_width;
1158 int yy2 = child->m_y + child->m_height;
1159
1160 // left
1161 if (((xx >= xx1) && (xx <= xx1+10) && (yy >= yy1) && (yy <= yy2)) ||
1162 // right
1163 ((xx >= xx2-10) && (xx <= xx2) && (yy >= yy1) && (yy <= yy2)) ||
1164 // top
1165 ((xx >= xx1) && (xx <= xx2) && (yy >= yy1) && (yy <= yy1+10)) ||
1166 // bottom
1167 ((xx >= xx1) && (xx <= xx2) && (yy >= yy2-1) && (yy <= yy2)))
1168 {
1169 win = child;
1170 x -= child->m_x;
1171 y -= child->m_y;
1172 break;
1173 }
1174
1175 }
1176 else
1177 {
1178 if ((child->m_wxwindow == NULL) &&
1179 (child->m_x <= xx) &&
1180 (child->m_y <= yy) &&
1181 (child->m_x+child->m_width >= xx) &&
1182 (child->m_y+child->m_height >= yy))
1183 {
1184 win = child;
1185 x -= child->m_x;
1186 y -= child->m_y;
1187 break;
1188 }
1189 }
1190 }
1191
1192 return win;
1193 }
1194
1195 // ----------------------------------------------------------------------------
1196 // common event handlers helpers
1197 // ----------------------------------------------------------------------------
1198
1199 bool wxWindowGTK::GTKProcessEvent(wxEvent& event) const
1200 {
1201 // nothing special at this level
1202 return HandleWindowEvent(event);
1203 }
1204
1205 bool wxWindowGTK::GTKShouldIgnoreEvent() const
1206 {
1207 return !m_hasVMT || g_blockEventsOnDrag;
1208 }
1209
1210 int wxWindowGTK::GTKCallbackCommonPrologue(GdkEventAny *event) const
1211 {
1212 if (!m_hasVMT)
1213 return FALSE;
1214 if (g_blockEventsOnDrag)
1215 return TRUE;
1216 if (g_blockEventsOnScroll)
1217 return TRUE;
1218
1219 if (!GTKIsOwnWindow(event->window))
1220 return FALSE;
1221
1222 return -1;
1223 }
1224
1225 // overloads for all GDK event types we use here: we need to have this as
1226 // GdkEventXXX can't be implicitly cast to GdkEventAny even if it, in fact,
1227 // derives from it in the sense that the structs have the same layout
1228 #define wxDEFINE_COMMON_PROLOGUE_OVERLOAD(T) \
1229 static int wxGtkCallbackCommonPrologue(T *event, wxWindowGTK *win) \
1230 { \
1231 return win->GTKCallbackCommonPrologue((GdkEventAny *)event); \
1232 }
1233
1234 wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventButton)
1235 wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventMotion)
1236 wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventCrossing)
1237
1238 #undef wxDEFINE_COMMON_PROLOGUE_OVERLOAD
1239
1240 #define wxCOMMON_CALLBACK_PROLOGUE(event, win) \
1241 const int rc = wxGtkCallbackCommonPrologue(event, win); \
1242 if ( rc != -1 ) \
1243 return rc
1244
1245 // all event handlers must have C linkage as they're called from GTK+ C code
1246 extern "C"
1247 {
1248
1249 //-----------------------------------------------------------------------------
1250 // "button_press_event"
1251 //-----------------------------------------------------------------------------
1252
1253 static gboolean
1254 gtk_window_button_press_callback( GtkWidget *widget,
1255 GdkEventButton *gdk_event,
1256 wxWindowGTK *win )
1257 {
1258 wxCOMMON_CALLBACK_PROLOGUE(gdk_event, win);
1259
1260 g_lastButtonNumber = gdk_event->button;
1261
1262 // GDK sends surplus button down events
1263 // before a double click event. We
1264 // need to filter these out.
1265 if ((gdk_event->type == GDK_BUTTON_PRESS) && (win->m_wxwindow))
1266 {
1267 GdkEvent *peek_event = gdk_event_peek();
1268 if (peek_event)
1269 {
1270 if ((peek_event->type == GDK_2BUTTON_PRESS) ||
1271 (peek_event->type == GDK_3BUTTON_PRESS))
1272 {
1273 gdk_event_free( peek_event );
1274 return TRUE;
1275 }
1276 else
1277 {
1278 gdk_event_free( peek_event );
1279 }
1280 }
1281 }
1282
1283 wxEventType event_type = wxEVT_NULL;
1284
1285 if ( gdk_event->type == GDK_2BUTTON_PRESS &&
1286 gdk_event->button >= 1 && gdk_event->button <= 3 )
1287 {
1288 // Reset GDK internal timestamp variables in order to disable GDK
1289 // triple click events. GDK will then next time believe no button has
1290 // been clicked just before, and send a normal button click event.
1291 GdkDisplay* display = gtk_widget_get_display (widget);
1292 display->button_click_time[1] = 0;
1293 display->button_click_time[0] = 0;
1294 }
1295
1296 if (gdk_event->button == 1)
1297 {
1298 // note that GDK generates triple click events which are not supported
1299 // by wxWidgets but still have to be passed to the app as otherwise
1300 // clicks would simply go missing
1301 switch (gdk_event->type)
1302 {
1303 // we shouldn't get triple clicks at all for GTK2 because we
1304 // suppress them artificially using the code above but we still
1305 // should map them to something for GTK1 and not just ignore them
1306 // as this would lose clicks
1307 case GDK_3BUTTON_PRESS: // we could also map this to DCLICK...
1308 case GDK_BUTTON_PRESS:
1309 event_type = wxEVT_LEFT_DOWN;
1310 break;
1311
1312 case GDK_2BUTTON_PRESS:
1313 event_type = wxEVT_LEFT_DCLICK;
1314 break;
1315
1316 default:
1317 // just to silence gcc warnings
1318 ;
1319 }
1320 }
1321 else if (gdk_event->button == 2)
1322 {
1323 switch (gdk_event->type)
1324 {
1325 case GDK_3BUTTON_PRESS:
1326 case GDK_BUTTON_PRESS:
1327 event_type = wxEVT_MIDDLE_DOWN;
1328 break;
1329
1330 case GDK_2BUTTON_PRESS:
1331 event_type = wxEVT_MIDDLE_DCLICK;
1332 break;
1333
1334 default:
1335 ;
1336 }
1337 }
1338 else if (gdk_event->button == 3)
1339 {
1340 switch (gdk_event->type)
1341 {
1342 case GDK_3BUTTON_PRESS:
1343 case GDK_BUTTON_PRESS:
1344 event_type = wxEVT_RIGHT_DOWN;
1345 break;
1346
1347 case GDK_2BUTTON_PRESS:
1348 event_type = wxEVT_RIGHT_DCLICK;
1349 break;
1350
1351 default:
1352 ;
1353 }
1354 }
1355
1356 else if (gdk_event->button == 8)
1357 {
1358 switch (gdk_event->type)
1359 {
1360 case GDK_3BUTTON_PRESS:
1361 case GDK_BUTTON_PRESS:
1362 event_type = wxEVT_AUX1_DOWN;
1363 break;
1364
1365 case GDK_2BUTTON_PRESS:
1366 event_type = wxEVT_AUX1_DCLICK;
1367 break;
1368
1369 default:
1370 ;
1371 }
1372 }
1373
1374 else if (gdk_event->button == 9)
1375 {
1376 switch (gdk_event->type)
1377 {
1378 case GDK_3BUTTON_PRESS:
1379 case GDK_BUTTON_PRESS:
1380 event_type = wxEVT_AUX2_DOWN;
1381 break;
1382
1383 case GDK_2BUTTON_PRESS:
1384 event_type = wxEVT_AUX2_DCLICK;
1385 break;
1386
1387 default:
1388 ;
1389 }
1390 }
1391
1392 if ( event_type == wxEVT_NULL )
1393 {
1394 // unknown mouse button or click type
1395 return FALSE;
1396 }
1397
1398 g_lastMouseEvent = (GdkEvent*) gdk_event;
1399
1400 wxMouseEvent event( event_type );
1401 InitMouseEvent( win, event, gdk_event );
1402
1403 AdjustEventButtonState(event);
1404
1405 // find the correct window to send the event to: it may be a different one
1406 // from the one which got it at GTK+ level because some controls don't have
1407 // their own X window and thus cannot get any events.
1408 if ( !g_captureWindow )
1409 win = FindWindowForMouseEvent(win, event.m_x, event.m_y);
1410
1411 // reset the event object and id in case win changed.
1412 event.SetEventObject( win );
1413 event.SetId( win->GetId() );
1414
1415 bool ret = win->GTKProcessEvent( event );
1416 g_lastMouseEvent = NULL;
1417 if ( ret )
1418 return TRUE;
1419
1420 if ((event_type == wxEVT_LEFT_DOWN) && !win->IsOfStandardClass() &&
1421 (gs_currentFocus != win) /* && win->IsFocusable() */)
1422 {
1423 win->SetFocus();
1424 }
1425
1426 if (event_type == wxEVT_RIGHT_DOWN)
1427 {
1428 // generate a "context menu" event: this is similar to right mouse
1429 // click under many GUIs except that it is generated differently
1430 // (right up under MSW, ctrl-click under Mac, right down here) and
1431 //
1432 // (a) it's a command event and so is propagated to the parent
1433 // (b) under some ports it can be generated from kbd too
1434 // (c) it uses screen coords (because of (a))
1435 wxContextMenuEvent evtCtx(
1436 wxEVT_CONTEXT_MENU,
1437 win->GetId(),
1438 win->ClientToScreen(event.GetPosition()));
1439 evtCtx.SetEventObject(win);
1440 return win->GTKProcessEvent(evtCtx);
1441 }
1442
1443 return FALSE;
1444 }
1445
1446 //-----------------------------------------------------------------------------
1447 // "button_release_event"
1448 //-----------------------------------------------------------------------------
1449
1450 static gboolean
1451 gtk_window_button_release_callback( GtkWidget *WXUNUSED(widget),
1452 GdkEventButton *gdk_event,
1453 wxWindowGTK *win )
1454 {
1455 wxCOMMON_CALLBACK_PROLOGUE(gdk_event, win);
1456
1457 g_lastButtonNumber = 0;
1458
1459 wxEventType event_type = wxEVT_NULL;
1460
1461 switch (gdk_event->button)
1462 {
1463 case 1:
1464 event_type = wxEVT_LEFT_UP;
1465 break;
1466
1467 case 2:
1468 event_type = wxEVT_MIDDLE_UP;
1469 break;
1470
1471 case 3:
1472 event_type = wxEVT_RIGHT_UP;
1473 break;
1474
1475 case 8:
1476 event_type = wxEVT_AUX1_UP;
1477 break;
1478
1479 case 9:
1480 event_type = wxEVT_AUX2_UP;
1481 break;
1482
1483 default:
1484 // unknown button, don't process
1485 return FALSE;
1486 }
1487
1488 g_lastMouseEvent = (GdkEvent*) gdk_event;
1489
1490 wxMouseEvent event( event_type );
1491 InitMouseEvent( win, event, gdk_event );
1492
1493 AdjustEventButtonState(event);
1494
1495 if ( !g_captureWindow )
1496 win = FindWindowForMouseEvent(win, event.m_x, event.m_y);
1497
1498 // reset the event object and id in case win changed.
1499 event.SetEventObject( win );
1500 event.SetId( win->GetId() );
1501
1502 bool ret = win->GTKProcessEvent(event);
1503
1504 g_lastMouseEvent = NULL;
1505
1506 return ret;
1507 }
1508
1509 //-----------------------------------------------------------------------------
1510 // "motion_notify_event"
1511 //-----------------------------------------------------------------------------
1512
1513 static gboolean
1514 gtk_window_motion_notify_callback( GtkWidget * WXUNUSED(widget),
1515 GdkEventMotion *gdk_event,
1516 wxWindowGTK *win )
1517 {
1518 wxCOMMON_CALLBACK_PROLOGUE(gdk_event, win);
1519
1520 if (gdk_event->is_hint)
1521 {
1522 int x = 0;
1523 int y = 0;
1524 GdkModifierType state;
1525 gdk_window_get_pointer(gdk_event->window, &x, &y, &state);
1526 gdk_event->x = x;
1527 gdk_event->y = y;
1528 }
1529
1530 g_lastMouseEvent = (GdkEvent*) gdk_event;
1531
1532 wxMouseEvent event( wxEVT_MOTION );
1533 InitMouseEvent(win, event, gdk_event);
1534
1535 if ( g_captureWindow )
1536 {
1537 // synthesise a mouse enter or leave event if needed
1538 GdkWindow *winUnderMouse = gdk_window_at_pointer(NULL, NULL);
1539 // This seems to be necessary and actually been added to
1540 // GDK itself in version 2.0.X
1541 gdk_flush();
1542
1543 bool hasMouse = winUnderMouse == gdk_event->window;
1544 if ( hasMouse != g_captureWindowHasMouse )
1545 {
1546 // the mouse changed window
1547 g_captureWindowHasMouse = hasMouse;
1548
1549 wxMouseEvent eventM(g_captureWindowHasMouse ? wxEVT_ENTER_WINDOW
1550 : wxEVT_LEAVE_WINDOW);
1551 InitMouseEvent(win, eventM, gdk_event);
1552 eventM.SetEventObject(win);
1553 win->GTKProcessEvent(eventM);
1554 }
1555 }
1556 else // no capture
1557 {
1558 win = FindWindowForMouseEvent(win, event.m_x, event.m_y);
1559
1560 // reset the event object and id in case win changed.
1561 event.SetEventObject( win );
1562 event.SetId( win->GetId() );
1563 }
1564
1565 if ( !g_captureWindow )
1566 {
1567 wxSetCursorEvent cevent( event.m_x, event.m_y );
1568 if (win->GTKProcessEvent( cevent ))
1569 {
1570 win->SetCursor( cevent.GetCursor() );
1571 }
1572 }
1573
1574 bool ret = win->GTKProcessEvent(event);
1575
1576 g_lastMouseEvent = NULL;
1577
1578 return ret;
1579 }
1580
1581 //-----------------------------------------------------------------------------
1582 // "scroll_event" (mouse wheel event)
1583 //-----------------------------------------------------------------------------
1584
1585 static gboolean
1586 window_scroll_event_hscrollbar(GtkWidget*, GdkEventScroll* gdk_event, wxWindow* win)
1587 {
1588 if (gdk_event->direction != GDK_SCROLL_LEFT &&
1589 gdk_event->direction != GDK_SCROLL_RIGHT)
1590 {
1591 return false;
1592 }
1593
1594 GtkRange *range = win->m_scrollBar[wxWindow::ScrollDir_Horz];
1595
1596 if (range && gtk_widget_get_visible(GTK_WIDGET(range)))
1597 {
1598 GtkAdjustment* adj = gtk_range_get_adjustment(range);
1599 double delta = gtk_adjustment_get_step_increment(adj) * 3;
1600 if (gdk_event->direction == GDK_SCROLL_LEFT)
1601 delta = -delta;
1602
1603 gtk_range_set_value(range, gtk_adjustment_get_value(adj) + delta);
1604
1605 return TRUE;
1606 }
1607
1608 return FALSE;
1609 }
1610
1611 static gboolean
1612 window_scroll_event(GtkWidget*, GdkEventScroll* gdk_event, wxWindow* win)
1613 {
1614 if (gdk_event->direction != GDK_SCROLL_UP &&
1615 gdk_event->direction != GDK_SCROLL_DOWN)
1616 {
1617 return false;
1618 }
1619
1620 wxMouseEvent event(wxEVT_MOUSEWHEEL);
1621 InitMouseEvent(win, event, gdk_event);
1622
1623 // FIXME: Get these values from GTK or GDK
1624 event.m_linesPerAction = 3;
1625 event.m_wheelDelta = 120;
1626 if (gdk_event->direction == GDK_SCROLL_UP)
1627 event.m_wheelRotation = 120;
1628 else
1629 event.m_wheelRotation = -120;
1630
1631 if (win->GTKProcessEvent(event))
1632 return TRUE;
1633
1634 GtkRange *range = win->m_scrollBar[wxWindow::ScrollDir_Vert];
1635
1636 if (range && gtk_widget_get_visible(GTK_WIDGET(range)))
1637 {
1638 GtkAdjustment* adj = gtk_range_get_adjustment(range);
1639 double delta = gtk_adjustment_get_step_increment(adj) * 3;
1640 if (gdk_event->direction == GDK_SCROLL_UP)
1641 delta = -delta;
1642
1643 gtk_range_set_value(range, gtk_adjustment_get_value(adj) + delta);
1644
1645 return TRUE;
1646 }
1647
1648 return FALSE;
1649 }
1650
1651 //-----------------------------------------------------------------------------
1652 // "popup-menu"
1653 //-----------------------------------------------------------------------------
1654
1655 static gboolean wxgtk_window_popup_menu_callback(GtkWidget*, wxWindowGTK* win)
1656 {
1657 wxContextMenuEvent event(wxEVT_CONTEXT_MENU, win->GetId(), wxPoint(-1, -1));
1658 event.SetEventObject(win);
1659 return win->GTKProcessEvent(event);
1660 }
1661
1662 //-----------------------------------------------------------------------------
1663 // "focus_in_event"
1664 //-----------------------------------------------------------------------------
1665
1666 static gboolean
1667 gtk_window_focus_in_callback( GtkWidget * WXUNUSED(widget),
1668 GdkEventFocus *WXUNUSED(event),
1669 wxWindowGTK *win )
1670 {
1671 return win->GTKHandleFocusIn();
1672 }
1673
1674 //-----------------------------------------------------------------------------
1675 // "focus_out_event"
1676 //-----------------------------------------------------------------------------
1677
1678 static gboolean
1679 gtk_window_focus_out_callback( GtkWidget * WXUNUSED(widget),
1680 GdkEventFocus * WXUNUSED(gdk_event),
1681 wxWindowGTK *win )
1682 {
1683 return win->GTKHandleFocusOut();
1684 }
1685
1686 //-----------------------------------------------------------------------------
1687 // "focus"
1688 //-----------------------------------------------------------------------------
1689
1690 static gboolean
1691 wx_window_focus_callback(GtkWidget *widget,
1692 GtkDirectionType WXUNUSED(direction),
1693 wxWindowGTK *win)
1694 {
1695 // the default handler for focus signal in GtkScrolledWindow sets
1696 // focus to the window itself even if it doesn't accept focus, i.e. has no
1697 // GTK_CAN_FOCUS in its style -- work around this by forcibly preventing
1698 // the signal from reaching gtk_scrolled_window_focus() if we don't have
1699 // any children which might accept focus (we know we don't accept the focus
1700 // ourselves as this signal is only connected in this case)
1701 if ( win->GetChildren().empty() )
1702 g_signal_stop_emission_by_name(widget, "focus");
1703
1704 // we didn't change the focus
1705 return FALSE;
1706 }
1707
1708 //-----------------------------------------------------------------------------
1709 // "enter_notify_event"
1710 //-----------------------------------------------------------------------------
1711
1712 static gboolean
1713 gtk_window_enter_callback( GtkWidget *widget,
1714 GdkEventCrossing *gdk_event,
1715 wxWindowGTK *win )
1716 {
1717 wxCOMMON_CALLBACK_PROLOGUE(gdk_event, win);
1718
1719 // Event was emitted after a grab
1720 if (gdk_event->mode != GDK_CROSSING_NORMAL) return FALSE;
1721
1722 int x = 0;
1723 int y = 0;
1724 GdkModifierType state = (GdkModifierType)0;
1725
1726 gdk_window_get_pointer(gtk_widget_get_window(widget), &x, &y, &state);
1727
1728 wxMouseEvent event( wxEVT_ENTER_WINDOW );
1729 InitMouseEvent(win, event, gdk_event);
1730 wxPoint pt = win->GetClientAreaOrigin();
1731 event.m_x = x + pt.x;
1732 event.m_y = y + pt.y;
1733
1734 if ( !g_captureWindow )
1735 {
1736 wxSetCursorEvent cevent( event.m_x, event.m_y );
1737 if (win->GTKProcessEvent( cevent ))
1738 {
1739 win->SetCursor( cevent.GetCursor() );
1740 }
1741 }
1742
1743 return win->GTKProcessEvent(event);
1744 }
1745
1746 //-----------------------------------------------------------------------------
1747 // "leave_notify_event"
1748 //-----------------------------------------------------------------------------
1749
1750 static gboolean
1751 gtk_window_leave_callback( GtkWidget *widget,
1752 GdkEventCrossing *gdk_event,
1753 wxWindowGTK *win )
1754 {
1755 wxCOMMON_CALLBACK_PROLOGUE(gdk_event, win);
1756
1757 // Event was emitted after an ungrab
1758 if (gdk_event->mode != GDK_CROSSING_NORMAL) return FALSE;
1759
1760 wxMouseEvent event( wxEVT_LEAVE_WINDOW );
1761
1762 int x = 0;
1763 int y = 0;
1764 GdkModifierType state = (GdkModifierType)0;
1765
1766 gdk_window_get_pointer(gtk_widget_get_window(widget), &x, &y, &state);
1767
1768 InitMouseEvent(win, event, gdk_event);
1769
1770 return win->GTKProcessEvent(event);
1771 }
1772
1773 //-----------------------------------------------------------------------------
1774 // "value_changed" from scrollbar
1775 //-----------------------------------------------------------------------------
1776
1777 static void
1778 gtk_scrollbar_value_changed(GtkRange* range, wxWindow* win)
1779 {
1780 wxEventType eventType = win->GTKGetScrollEventType(range);
1781 if (eventType != wxEVT_NULL)
1782 {
1783 // Convert scroll event type to scrollwin event type
1784 eventType += wxEVT_SCROLLWIN_TOP - wxEVT_SCROLL_TOP;
1785
1786 // find the scrollbar which generated the event
1787 wxWindowGTK::ScrollDir dir = win->ScrollDirFromRange(range);
1788
1789 // generate the corresponding wx event
1790 const int orient = wxWindow::OrientFromScrollDir(dir);
1791 wxScrollWinEvent event(eventType, win->GetScrollPos(orient), orient);
1792 event.SetEventObject(win);
1793
1794 win->GTKProcessEvent(event);
1795 }
1796 }
1797
1798 //-----------------------------------------------------------------------------
1799 // "button_press_event" from scrollbar
1800 //-----------------------------------------------------------------------------
1801
1802 static gboolean
1803 gtk_scrollbar_button_press_event(GtkRange*, GdkEventButton*, wxWindow* win)
1804 {
1805 g_blockEventsOnScroll = true;
1806 win->m_mouseButtonDown = true;
1807
1808 return false;
1809 }
1810
1811 //-----------------------------------------------------------------------------
1812 // "event_after" from scrollbar
1813 //-----------------------------------------------------------------------------
1814
1815 static void
1816 gtk_scrollbar_event_after(GtkRange* range, GdkEvent* event, wxWindow* win)
1817 {
1818 if (event->type == GDK_BUTTON_RELEASE)
1819 {
1820 g_signal_handlers_block_by_func(range, (void*)gtk_scrollbar_event_after, win);
1821
1822 const int orient = wxWindow::OrientFromScrollDir(
1823 win->ScrollDirFromRange(range));
1824 wxScrollWinEvent evt(wxEVT_SCROLLWIN_THUMBRELEASE,
1825 win->GetScrollPos(orient), orient);
1826 evt.SetEventObject(win);
1827 win->GTKProcessEvent(evt);
1828 }
1829 }
1830
1831 //-----------------------------------------------------------------------------
1832 // "button_release_event" from scrollbar
1833 //-----------------------------------------------------------------------------
1834
1835 static gboolean
1836 gtk_scrollbar_button_release_event(GtkRange* range, GdkEventButton*, wxWindow* win)
1837 {
1838 g_blockEventsOnScroll = false;
1839 win->m_mouseButtonDown = false;
1840 // If thumb tracking
1841 if (win->m_isScrolling)
1842 {
1843 win->m_isScrolling = false;
1844 // Hook up handler to send thumb release event after this emission is finished.
1845 // To allow setting scroll position from event handler, sending event must
1846 // be deferred until after the GtkRange handler for this signal has run
1847 g_signal_handlers_unblock_by_func(range, (void*)gtk_scrollbar_event_after, win);
1848 }
1849
1850 return false;
1851 }
1852
1853 //-----------------------------------------------------------------------------
1854 // "realize" from m_widget
1855 //-----------------------------------------------------------------------------
1856
1857 static void
1858 gtk_window_realized_callback(GtkWidget* WXUNUSED(widget), wxWindowGTK* win)
1859 {
1860 win->GTKHandleRealized();
1861 }
1862
1863 //-----------------------------------------------------------------------------
1864 // "unrealize" from m_wxwindow
1865 //-----------------------------------------------------------------------------
1866
1867 static void unrealize(GtkWidget*, wxWindowGTK* win)
1868 {
1869 if (win->m_imData)
1870 gtk_im_context_set_client_window(win->m_imData->context, NULL);
1871 }
1872
1873 //-----------------------------------------------------------------------------
1874 // "size_allocate" from m_wxwindow or m_widget
1875 //-----------------------------------------------------------------------------
1876
1877 static void
1878 size_allocate(GtkWidget*, GtkAllocation* alloc, wxWindow* win)
1879 {
1880 int w = alloc->width;
1881 int h = alloc->height;
1882 if (win->m_wxwindow)
1883 {
1884 int border_x, border_y;
1885 WX_PIZZA(win->m_wxwindow)->get_border_widths(border_x, border_y);
1886 w -= 2 * border_x;
1887 h -= 2 * border_y;
1888 if (w < 0) w = 0;
1889 if (h < 0) h = 0;
1890 }
1891 if (win->m_oldClientWidth != w || win->m_oldClientHeight != h)
1892 {
1893 win->m_oldClientWidth = w;
1894 win->m_oldClientHeight = h;
1895 // this callback can be connected to m_wxwindow,
1896 // so always get size from m_widget->allocation
1897 GtkAllocation a;
1898 gtk_widget_get_allocation(win->m_widget, &a);
1899 win->m_width = a.width;
1900 win->m_height = a.height;
1901 if (!win->m_nativeSizeEvent)
1902 {
1903 wxSizeEvent event(win->GetSize(), win->GetId());
1904 event.SetEventObject(win);
1905 win->GTKProcessEvent(event);
1906 }
1907 }
1908 }
1909
1910 //-----------------------------------------------------------------------------
1911 // "grab_broken"
1912 //-----------------------------------------------------------------------------
1913
1914 #if GTK_CHECK_VERSION(2, 8, 0)
1915 static gboolean
1916 gtk_window_grab_broken( GtkWidget*,
1917 GdkEventGrabBroken *event,
1918 wxWindow *win )
1919 {
1920 // Mouse capture has been lost involuntarily, notify the application
1921 if(!event->keyboard && wxWindow::GetCapture() == win)
1922 {
1923 wxMouseCaptureLostEvent evt( win->GetId() );
1924 evt.SetEventObject( win );
1925 win->HandleWindowEvent( evt );
1926 }
1927 return false;
1928 }
1929 #endif
1930
1931 //-----------------------------------------------------------------------------
1932 // "style_set"
1933 //-----------------------------------------------------------------------------
1934
1935 static
1936 void gtk_window_style_set_callback( GtkWidget *WXUNUSED(widget),
1937 GtkStyle *previous_style,
1938 wxWindow* win )
1939 {
1940 if (win && previous_style)
1941 {
1942 wxSysColourChangedEvent event;
1943 event.SetEventObject(win);
1944
1945 win->GTKProcessEvent( event );
1946 }
1947 }
1948
1949 } // extern "C"
1950
1951 void wxWindowGTK::GTKHandleRealized()
1952 {
1953 if (m_imData)
1954 {
1955 gtk_im_context_set_client_window
1956 (
1957 m_imData->context,
1958 m_wxwindow ? GTKGetDrawingWindow()
1959 : gtk_widget_get_window(m_widget)
1960 );
1961 }
1962
1963 // We cannot set colours and fonts before the widget
1964 // been realized, so we do this directly after realization
1965 // or otherwise in idle time
1966
1967 if (m_needsStyleChange)
1968 {
1969 SetBackgroundStyle(GetBackgroundStyle());
1970 m_needsStyleChange = false;
1971 }
1972
1973 wxWindowCreateEvent event(static_cast<wxWindow*>(this));
1974 event.SetEventObject( this );
1975 GTKProcessEvent( event );
1976
1977 GTKUpdateCursor(true, false);
1978 }
1979
1980 // ----------------------------------------------------------------------------
1981 // this wxWindowBase function is implemented here (in platform-specific file)
1982 // because it is static and so couldn't be made virtual
1983 // ----------------------------------------------------------------------------
1984
1985 wxWindow *wxWindowBase::DoFindFocus()
1986 {
1987 wxWindowGTK *focus = gs_pendingFocus ? gs_pendingFocus : gs_currentFocus;
1988 // the cast is necessary when we compile in wxUniversal mode
1989 return static_cast<wxWindow*>(focus);
1990 }
1991
1992 void wxWindowGTK::AddChildGTK(wxWindowGTK* child)
1993 {
1994 wxASSERT_MSG(m_wxwindow, "Cannot add a child to a window without a client area");
1995
1996 // the window might have been scrolled already, we
1997 // have to adapt the position
1998 wxPizza* pizza = WX_PIZZA(m_wxwindow);
1999 child->m_x += pizza->m_scroll_x;
2000 child->m_y += pizza->m_scroll_y;
2001
2002 gtk_widget_set_size_request(
2003 child->m_widget, child->m_width, child->m_height);
2004 pizza->put(child->m_widget, child->m_x, child->m_y);
2005 }
2006
2007 //-----------------------------------------------------------------------------
2008 // global functions
2009 //-----------------------------------------------------------------------------
2010
2011 wxWindow *wxGetActiveWindow()
2012 {
2013 return wxWindow::FindFocus();
2014 }
2015
2016
2017 wxMouseState wxGetMouseState()
2018 {
2019 wxMouseState ms;
2020
2021 gint x;
2022 gint y;
2023 GdkModifierType mask;
2024
2025 gdk_window_get_pointer(NULL, &x, &y, &mask);
2026
2027 ms.SetX(x);
2028 ms.SetY(y);
2029 ms.SetLeftDown((mask & GDK_BUTTON1_MASK) != 0);
2030 ms.SetMiddleDown((mask & GDK_BUTTON2_MASK) != 0);
2031 ms.SetRightDown((mask & GDK_BUTTON3_MASK) != 0);
2032 // see the comment in InitMouseEvent()
2033 ms.SetAux1Down((mask & GDK_BUTTON4_MASK) != 0);
2034 ms.SetAux2Down((mask & GDK_BUTTON5_MASK) != 0);
2035
2036 ms.SetControlDown((mask & GDK_CONTROL_MASK) != 0);
2037 ms.SetShiftDown((mask & GDK_SHIFT_MASK) != 0);
2038 ms.SetAltDown((mask & GDK_MOD1_MASK) != 0);
2039 ms.SetMetaDown((mask & GDK_META_MASK) != 0);
2040
2041 return ms;
2042 }
2043
2044 //-----------------------------------------------------------------------------
2045 // wxWindowGTK
2046 //-----------------------------------------------------------------------------
2047
2048 // in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu()
2049 // method
2050 #ifdef __WXUNIVERSAL__
2051 IMPLEMENT_ABSTRACT_CLASS(wxWindowGTK, wxWindowBase)
2052 #endif // __WXUNIVERSAL__
2053
2054 void wxWindowGTK::Init()
2055 {
2056 // GTK specific
2057 m_widget = NULL;
2058 m_wxwindow = NULL;
2059 m_focusWidget = NULL;
2060
2061 // position/size
2062 m_x = 0;
2063 m_y = 0;
2064 m_width = 0;
2065 m_height = 0;
2066
2067 m_hasVMT = false;
2068
2069 m_showOnIdle = false;
2070
2071 m_noExpose = false;
2072 m_nativeSizeEvent = false;
2073
2074 m_isScrolling = false;
2075 m_mouseButtonDown = false;
2076
2077 // initialize scrolling stuff
2078 for ( int dir = 0; dir < ScrollDir_Max; dir++ )
2079 {
2080 m_scrollBar[dir] = NULL;
2081 m_scrollPos[dir] = 0;
2082 }
2083
2084 m_oldClientWidth =
2085 m_oldClientHeight = 0;
2086
2087 m_clipPaintRegion = false;
2088
2089 m_needsStyleChange = false;
2090
2091 m_cursor = *wxSTANDARD_CURSOR;
2092
2093 m_imData = NULL;
2094 m_dirtyTabOrder = false;
2095 }
2096
2097 wxWindowGTK::wxWindowGTK()
2098 {
2099 Init();
2100 }
2101
2102 wxWindowGTK::wxWindowGTK( wxWindow *parent,
2103 wxWindowID id,
2104 const wxPoint &pos,
2105 const wxSize &size,
2106 long style,
2107 const wxString &name )
2108 {
2109 Init();
2110
2111 Create( parent, id, pos, size, style, name );
2112 }
2113
2114 bool wxWindowGTK::Create( wxWindow *parent,
2115 wxWindowID id,
2116 const wxPoint &pos,
2117 const wxSize &size,
2118 long style,
2119 const wxString &name )
2120 {
2121 // Get default border
2122 wxBorder border = GetBorder(style);
2123
2124 style &= ~wxBORDER_MASK;
2125 style |= border;
2126
2127 if (!PreCreation( parent, pos, size ) ||
2128 !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
2129 {
2130 wxFAIL_MSG( wxT("wxWindowGTK creation failed") );
2131 return false;
2132 }
2133
2134 // We should accept the native look
2135 #if 0
2136 GtkScrolledWindowClass *scroll_class = GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT_GET_CLASS(m_widget) );
2137 scroll_class->scrollbar_spacing = 0;
2138 #endif
2139
2140
2141 m_wxwindow = wxPizza::New(m_windowStyle);
2142 #ifndef __WXUNIVERSAL__
2143 if (HasFlag(wxPizza::BORDER_STYLES))
2144 {
2145 g_signal_connect(m_wxwindow, "parent_set",
2146 G_CALLBACK(parent_set), this);
2147 }
2148 #endif
2149 if (!HasFlag(wxHSCROLL) && !HasFlag(wxVSCROLL))
2150 m_widget = m_wxwindow;
2151 else
2152 {
2153 m_widget = gtk_scrolled_window_new( NULL, NULL );
2154
2155 GtkScrolledWindow *scrolledWindow = GTK_SCROLLED_WINDOW(m_widget);
2156
2157 // There is a conflict with default bindings at GTK+
2158 // level between scrolled windows and notebooks both of which want to use
2159 // Ctrl-PageUp/Down: scrolled windows for scrolling in the horizontal
2160 // direction and notebooks for changing pages -- we decide that if we don't
2161 // have wxHSCROLL style we can safely sacrifice horizontal scrolling if it
2162 // means we can get working keyboard navigation in notebooks
2163 if ( !HasFlag(wxHSCROLL) )
2164 {
2165 GtkBindingSet *
2166 bindings = gtk_binding_set_by_class(G_OBJECT_GET_CLASS(m_widget));
2167 if ( bindings )
2168 {
2169 gtk_binding_entry_remove(bindings, GDK_Page_Up, GDK_CONTROL_MASK);
2170 gtk_binding_entry_remove(bindings, GDK_Page_Down, GDK_CONTROL_MASK);
2171 }
2172 }
2173
2174 if (HasFlag(wxALWAYS_SHOW_SB))
2175 {
2176 gtk_scrolled_window_set_policy( scrolledWindow, GTK_POLICY_ALWAYS, GTK_POLICY_ALWAYS );
2177 }
2178 else
2179 {
2180 gtk_scrolled_window_set_policy( scrolledWindow, GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC );
2181 }
2182
2183 m_scrollBar[ScrollDir_Horz] = GTK_RANGE(gtk_scrolled_window_get_hscrollbar(scrolledWindow));
2184 m_scrollBar[ScrollDir_Vert] = GTK_RANGE(gtk_scrolled_window_get_vscrollbar(scrolledWindow));
2185 if (GetLayoutDirection() == wxLayout_RightToLeft)
2186 gtk_range_set_inverted( m_scrollBar[ScrollDir_Horz], TRUE );
2187
2188 gtk_container_add( GTK_CONTAINER(m_widget), m_wxwindow );
2189
2190 // connect various scroll-related events
2191 for ( int dir = 0; dir < ScrollDir_Max; dir++ )
2192 {
2193 // these handlers block mouse events to any window during scrolling
2194 // such as motion events and prevent GTK and wxWidgets from fighting
2195 // over where the slider should be
2196 g_signal_connect(m_scrollBar[dir], "button_press_event",
2197 G_CALLBACK(gtk_scrollbar_button_press_event), this);
2198 g_signal_connect(m_scrollBar[dir], "button_release_event",
2199 G_CALLBACK(gtk_scrollbar_button_release_event), this);
2200
2201 gulong handler_id = g_signal_connect(m_scrollBar[dir], "event_after",
2202 G_CALLBACK(gtk_scrollbar_event_after), this);
2203 g_signal_handler_block(m_scrollBar[dir], handler_id);
2204
2205 // these handlers get notified when scrollbar slider moves
2206 g_signal_connect_after(m_scrollBar[dir], "value_changed",
2207 G_CALLBACK(gtk_scrollbar_value_changed), this);
2208 }
2209
2210 gtk_widget_show( m_wxwindow );
2211 }
2212 g_object_ref(m_widget);
2213
2214 if (m_parent)
2215 m_parent->DoAddChild( this );
2216
2217 m_focusWidget = m_wxwindow;
2218
2219 SetCanFocus(AcceptsFocus());
2220
2221 PostCreation();
2222
2223 return true;
2224 }
2225
2226 wxWindowGTK::~wxWindowGTK()
2227 {
2228 SendDestroyEvent();
2229
2230 if (gs_currentFocus == this)
2231 gs_currentFocus = NULL;
2232 if (gs_pendingFocus == this)
2233 gs_pendingFocus = NULL;
2234
2235 if ( gs_deferredFocusOut == this )
2236 gs_deferredFocusOut = NULL;
2237
2238 m_hasVMT = false;
2239
2240 // destroy children before destroying this window itself
2241 DestroyChildren();
2242
2243 // unhook focus handlers to prevent stray events being
2244 // propagated to this (soon to be) dead object
2245 if (m_focusWidget != NULL)
2246 {
2247 g_signal_handlers_disconnect_by_func (m_focusWidget,
2248 (gpointer) gtk_window_focus_in_callback,
2249 this);
2250 g_signal_handlers_disconnect_by_func (m_focusWidget,
2251 (gpointer) gtk_window_focus_out_callback,
2252 this);
2253 }
2254
2255 if (m_widget)
2256 Show( false );
2257
2258 // delete before the widgets to avoid a crash on solaris
2259 delete m_imData;
2260 m_imData = NULL;
2261
2262 // avoid problem with GTK+ 2.18 where a frozen window causes the whole
2263 // TLW to be frozen, and if the window is then destroyed, nothing ever
2264 // gets painted again
2265 if (IsFrozen())
2266 DoThaw();
2267
2268 if (m_widget)
2269 {
2270 // Note that gtk_widget_destroy() does not destroy the widget, it just
2271 // emits the "destroy" signal. The widget is not actually destroyed
2272 // until its reference count drops to zero.
2273 gtk_widget_destroy(m_widget);
2274 // Release our reference, should be the last one
2275 g_object_unref(m_widget);
2276 m_widget = NULL;
2277 }
2278 m_wxwindow = NULL;
2279 }
2280
2281 bool wxWindowGTK::PreCreation( wxWindowGTK *parent, const wxPoint &pos, const wxSize &size )
2282 {
2283 if ( GTKNeedsParent() )
2284 {
2285 wxCHECK_MSG( parent, false, wxT("Must have non-NULL parent") );
2286 }
2287
2288 // Use either the given size, or the default if -1 is given.
2289 // See wxWindowBase for these functions.
2290 m_width = WidthDefault(size.x) ;
2291 m_height = HeightDefault(size.y);
2292
2293 m_x = (int)pos.x;
2294 m_y = (int)pos.y;
2295
2296 return true;
2297 }
2298
2299 void wxWindowGTK::PostCreation()
2300 {
2301 wxASSERT_MSG( (m_widget != NULL), wxT("invalid window") );
2302
2303 if (m_wxwindow)
2304 {
2305 if (!m_noExpose)
2306 {
2307 // these get reported to wxWidgets -> wxPaintEvent
2308
2309 g_signal_connect (m_wxwindow, "expose_event",
2310 G_CALLBACK (gtk_window_expose_callback), this);
2311
2312 if (GetLayoutDirection() == wxLayout_LeftToRight)
2313 gtk_widget_set_redraw_on_allocate(m_wxwindow, HasFlag(wxFULL_REPAINT_ON_RESIZE));
2314 }
2315
2316 // Create input method handler
2317 m_imData = new wxGtkIMData;
2318
2319 // Cannot handle drawing preedited text yet
2320 gtk_im_context_set_use_preedit( m_imData->context, FALSE );
2321
2322 g_signal_connect (m_imData->context, "commit",
2323 G_CALLBACK (gtk_wxwindow_commit_cb), this);
2324 g_signal_connect(m_wxwindow, "unrealize", G_CALLBACK(unrealize), this);
2325 }
2326
2327 // focus handling
2328
2329 if (!GTK_IS_WINDOW(m_widget))
2330 {
2331 if (m_focusWidget == NULL)
2332 m_focusWidget = m_widget;
2333
2334 if (m_wxwindow)
2335 {
2336 g_signal_connect (m_focusWidget, "focus_in_event",
2337 G_CALLBACK (gtk_window_focus_in_callback), this);
2338 g_signal_connect (m_focusWidget, "focus_out_event",
2339 G_CALLBACK (gtk_window_focus_out_callback), this);
2340 }
2341 else
2342 {
2343 g_signal_connect_after (m_focusWidget, "focus_in_event",
2344 G_CALLBACK (gtk_window_focus_in_callback), this);
2345 g_signal_connect_after (m_focusWidget, "focus_out_event",
2346 G_CALLBACK (gtk_window_focus_out_callback), this);
2347 }
2348 }
2349
2350 if ( !AcceptsFocusFromKeyboard() )
2351 {
2352 SetCanFocus(false);
2353
2354 g_signal_connect(m_widget, "focus",
2355 G_CALLBACK(wx_window_focus_callback), this);
2356 }
2357
2358 // connect to the various key and mouse handlers
2359
2360 GtkWidget *connect_widget = GetConnectWidget();
2361
2362 ConnectWidget( connect_widget );
2363
2364 // We cannot set colours, fonts and cursors before the widget has been
2365 // realized, so we do this directly after realization -- unless the widget
2366 // was in fact realized already.
2367 if ( gtk_widget_get_realized(connect_widget) )
2368 {
2369 gtk_window_realized_callback(connect_widget, this);
2370 }
2371 else
2372 {
2373 g_signal_connect (connect_widget, "realize",
2374 G_CALLBACK (gtk_window_realized_callback), this);
2375 }
2376
2377 if (!IsTopLevel())
2378 {
2379 g_signal_connect(m_wxwindow ? m_wxwindow : m_widget, "size_allocate",
2380 G_CALLBACK(size_allocate), this);
2381 }
2382
2383 #if GTK_CHECK_VERSION(2, 8, 0)
2384 if ( gtk_check_version(2,8,0) == NULL )
2385 {
2386 // Make sure we can notify the app when mouse capture is lost
2387 if ( m_wxwindow )
2388 {
2389 g_signal_connect (m_wxwindow, "grab_broken_event",
2390 G_CALLBACK (gtk_window_grab_broken), this);
2391 }
2392
2393 if ( connect_widget != m_wxwindow )
2394 {
2395 g_signal_connect (connect_widget, "grab_broken_event",
2396 G_CALLBACK (gtk_window_grab_broken), this);
2397 }
2398 }
2399 #endif // GTK+ >= 2.8
2400
2401 if ( GTKShouldConnectSizeRequest() )
2402 {
2403 // This is needed if we want to add our windows into native
2404 // GTK controls, such as the toolbar. With this callback, the
2405 // toolbar gets to know the correct size (the one set by the
2406 // programmer). Sadly, it misbehaves for wxComboBox.
2407 g_signal_connect (m_widget, "size_request",
2408 G_CALLBACK (wxgtk_window_size_request_callback),
2409 this);
2410 }
2411
2412 InheritAttributes();
2413
2414 m_hasVMT = true;
2415
2416 SetLayoutDirection(wxLayout_Default);
2417
2418 // unless the window was created initially hidden (i.e. Hide() had been
2419 // called before Create()), we should show it at GTK+ level as well
2420 if ( IsShown() )
2421 gtk_widget_show( m_widget );
2422 }
2423
2424 unsigned long
2425 wxWindowGTK::GTKConnectWidget(const char *signal, wxGTKCallback callback)
2426 {
2427 return g_signal_connect(m_widget, signal, callback, this);
2428 }
2429
2430 void wxWindowGTK::ConnectWidget( GtkWidget *widget )
2431 {
2432 g_signal_connect (widget, "key_press_event",
2433 G_CALLBACK (gtk_window_key_press_callback), this);
2434 g_signal_connect (widget, "key_release_event",
2435 G_CALLBACK (gtk_window_key_release_callback), this);
2436 g_signal_connect (widget, "button_press_event",
2437 G_CALLBACK (gtk_window_button_press_callback), this);
2438 g_signal_connect (widget, "button_release_event",
2439 G_CALLBACK (gtk_window_button_release_callback), this);
2440 g_signal_connect (widget, "motion_notify_event",
2441 G_CALLBACK (gtk_window_motion_notify_callback), this);
2442
2443 g_signal_connect (widget, "scroll_event",
2444 G_CALLBACK (window_scroll_event), this);
2445 if (m_scrollBar[ScrollDir_Horz])
2446 g_signal_connect (m_scrollBar[ScrollDir_Horz], "scroll_event",
2447 G_CALLBACK (window_scroll_event_hscrollbar), this);
2448 if (m_scrollBar[ScrollDir_Vert])
2449 g_signal_connect (m_scrollBar[ScrollDir_Vert], "scroll_event",
2450 G_CALLBACK (window_scroll_event), this);
2451
2452 g_signal_connect (widget, "popup_menu",
2453 G_CALLBACK (wxgtk_window_popup_menu_callback), this);
2454 g_signal_connect (widget, "enter_notify_event",
2455 G_CALLBACK (gtk_window_enter_callback), this);
2456 g_signal_connect (widget, "leave_notify_event",
2457 G_CALLBACK (gtk_window_leave_callback), this);
2458
2459 if (IsTopLevel() && m_wxwindow)
2460 g_signal_connect (m_wxwindow, "style_set",
2461 G_CALLBACK (gtk_window_style_set_callback), this);
2462 }
2463
2464 bool wxWindowGTK::Destroy()
2465 {
2466 m_hasVMT = false;
2467
2468 return wxWindowBase::Destroy();
2469 }
2470
2471 void wxWindowGTK::DoMoveWindow(int x, int y, int width, int height)
2472 {
2473 gtk_widget_set_size_request(m_widget, width, height);
2474
2475 // inform the parent to perform the move
2476 wxASSERT_MSG(m_parent && m_parent->m_wxwindow,
2477 "the parent window has no client area?");
2478 WX_PIZZA(m_parent->m_wxwindow)->move(m_widget, x, y);
2479 }
2480
2481 void wxWindowGTK::ConstrainSize()
2482 {
2483 #ifdef __WXGPE__
2484 // GPE's window manager doesn't like size hints at all, esp. when the user
2485 // has to use the virtual keyboard, so don't constrain size there
2486 if (!IsTopLevel())
2487 #endif
2488 {
2489 const wxSize minSize = GetMinSize();
2490 const wxSize maxSize = GetMaxSize();
2491 if (minSize.x > 0 && m_width < minSize.x) m_width = minSize.x;
2492 if (minSize.y > 0 && m_height < minSize.y) m_height = minSize.y;
2493 if (maxSize.x > 0 && m_width > maxSize.x) m_width = maxSize.x;
2494 if (maxSize.y > 0 && m_height > maxSize.y) m_height = maxSize.y;
2495 }
2496 }
2497
2498 void wxWindowGTK::DoSetSize( int x, int y, int width, int height, int sizeFlags )
2499 {
2500 wxASSERT_MSG( (m_widget != NULL), wxT("invalid window") );
2501 wxASSERT_MSG( (m_parent != NULL), wxT("wxWindowGTK::SetSize requires parent.\n") );
2502
2503 if ((sizeFlags & wxSIZE_ALLOW_MINUS_ONE) == 0 && (x == -1 || y == -1))
2504 {
2505 int currentX, currentY;
2506 GetPosition(&currentX, &currentY);
2507 if (x == -1)
2508 x = currentX;
2509 if (y == -1)
2510 y = currentY;
2511 }
2512 AdjustForParentClientOrigin(x, y, sizeFlags);
2513
2514 // calculate the best size if we should auto size the window
2515 if ( ((sizeFlags & wxSIZE_AUTO_WIDTH) && width == -1) ||
2516 ((sizeFlags & wxSIZE_AUTO_HEIGHT) && height == -1) )
2517 {
2518 const wxSize sizeBest = GetBestSize();
2519 if ( (sizeFlags & wxSIZE_AUTO_WIDTH) && width == -1 )
2520 width = sizeBest.x;
2521 if ( (sizeFlags & wxSIZE_AUTO_HEIGHT) && height == -1 )
2522 height = sizeBest.y;
2523 }
2524
2525 const wxSize oldSize(m_width, m_height);
2526 if (width != -1)
2527 m_width = width;
2528 if (height != -1)
2529 m_height = height;
2530
2531 if (m_parent->m_wxwindow)
2532 {
2533 wxPizza* pizza = WX_PIZZA(m_parent->m_wxwindow);
2534 m_x = x + pizza->m_scroll_x;
2535 m_y = y + pizza->m_scroll_y;
2536
2537 int left_border = 0;
2538 int right_border = 0;
2539 int top_border = 0;
2540 int bottom_border = 0;
2541
2542 /* the default button has a border around it */
2543 if (gtk_widget_get_can_default(m_widget))
2544 {
2545 GtkBorder *default_border = NULL;
2546 gtk_widget_style_get( m_widget, "default_border", &default_border, NULL );
2547 if (default_border)
2548 {
2549 left_border += default_border->left;
2550 right_border += default_border->right;
2551 top_border += default_border->top;
2552 bottom_border += default_border->bottom;
2553 gtk_border_free( default_border );
2554 }
2555 }
2556
2557 DoMoveWindow( m_x - left_border,
2558 m_y - top_border,
2559 m_width+left_border+right_border,
2560 m_height+top_border+bottom_border );
2561 }
2562
2563 if (m_width != oldSize.x || m_height != oldSize.y)
2564 {
2565 // update these variables to keep size_allocate handler
2566 // from sending another size event for this change
2567 GetClientSize( &m_oldClientWidth, &m_oldClientHeight );
2568
2569 gtk_widget_queue_resize(m_widget);
2570 if (!m_nativeSizeEvent)
2571 {
2572 wxSizeEvent event( wxSize(m_width,m_height), GetId() );
2573 event.SetEventObject( this );
2574 HandleWindowEvent( event );
2575 }
2576 } else
2577 if (sizeFlags & wxSIZE_FORCE_EVENT)
2578 {
2579 wxSizeEvent event( wxSize(m_width,m_height), GetId() );
2580 event.SetEventObject( this );
2581 HandleWindowEvent( event );
2582 }
2583 }
2584
2585 bool wxWindowGTK::GTKShowFromOnIdle()
2586 {
2587 if (IsShown() && m_showOnIdle && !gtk_widget_get_visible (m_widget))
2588 {
2589 GtkAllocation alloc;
2590 alloc.x = m_x;
2591 alloc.y = m_y;
2592 alloc.width = m_width;
2593 alloc.height = m_height;
2594 gtk_widget_size_allocate( m_widget, &alloc );
2595 gtk_widget_show( m_widget );
2596 wxShowEvent eventShow(GetId(), true);
2597 eventShow.SetEventObject(this);
2598 HandleWindowEvent(eventShow);
2599 m_showOnIdle = false;
2600 return true;
2601 }
2602
2603 return false;
2604 }
2605
2606 void wxWindowGTK::OnInternalIdle()
2607 {
2608 if ( gs_deferredFocusOut )
2609 GTKHandleDeferredFocusOut();
2610
2611 // Check if we have to show window now
2612 if (GTKShowFromOnIdle()) return;
2613
2614 if ( m_dirtyTabOrder )
2615 {
2616 m_dirtyTabOrder = false;
2617 RealizeTabOrder();
2618 }
2619
2620 // Update style if the window was not yet realized when
2621 // SetBackgroundStyle() was called
2622 if (m_needsStyleChange)
2623 {
2624 SetBackgroundStyle(GetBackgroundStyle());
2625 m_needsStyleChange = false;
2626 }
2627
2628 wxWindowBase::OnInternalIdle();
2629 }
2630
2631 void wxWindowGTK::DoGetSize( int *width, int *height ) const
2632 {
2633 wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
2634
2635 if (width) (*width) = m_width;
2636 if (height) (*height) = m_height;
2637 }
2638
2639 void wxWindowGTK::DoSetClientSize( int width, int height )
2640 {
2641 wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
2642
2643 const wxSize size = GetSize();
2644 const wxSize clientSize = GetClientSize();
2645 SetSize(width + (size.x - clientSize.x), height + (size.y - clientSize.y));
2646 }
2647
2648 void wxWindowGTK::DoGetClientSize( int *width, int *height ) const
2649 {
2650 wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
2651
2652 int w = m_width;
2653 int h = m_height;
2654
2655 if ( m_wxwindow )
2656 {
2657 // if window is scrollable, account for scrollbars
2658 if ( GTK_IS_SCROLLED_WINDOW(m_widget) )
2659 {
2660 GtkPolicyType policy[ScrollDir_Max];
2661 gtk_scrolled_window_get_policy(GTK_SCROLLED_WINDOW(m_widget),
2662 &policy[ScrollDir_Horz],
2663 &policy[ScrollDir_Vert]);
2664
2665 for ( int i = 0; i < ScrollDir_Max; i++ )
2666 {
2667 // don't account for the scrollbars we don't have
2668 GtkRange * const range = m_scrollBar[i];
2669 if ( !range )
2670 continue;
2671
2672 // nor for the ones we have but don't current show
2673 switch ( policy[i] )
2674 {
2675 case GTK_POLICY_NEVER:
2676 // never shown so doesn't take any place
2677 continue;
2678
2679 case GTK_POLICY_ALWAYS:
2680 // no checks necessary
2681 break;
2682
2683 case GTK_POLICY_AUTOMATIC:
2684 // may be shown or not, check
2685 GtkAdjustment *adj = gtk_range_get_adjustment(range);
2686 if (gtk_adjustment_get_upper(adj) <= gtk_adjustment_get_page_size(adj))
2687 continue;
2688 }
2689
2690 GtkScrolledWindowClass *scroll_class =
2691 GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT_GET_CLASS(m_widget) );
2692
2693 GtkRequisition req;
2694 gtk_widget_size_request(GTK_WIDGET(range), &req);
2695 if (i == ScrollDir_Horz)
2696 h -= req.height + scroll_class->scrollbar_spacing;
2697 else
2698 w -= req.width + scroll_class->scrollbar_spacing;
2699 }
2700 }
2701
2702 const wxSize sizeBorders = DoGetBorderSize();
2703 w -= sizeBorders.x;
2704 h -= sizeBorders.y;
2705
2706 if (w < 0)
2707 w = 0;
2708 if (h < 0)
2709 h = 0;
2710 }
2711
2712 if (width) *width = w;
2713 if (height) *height = h;
2714 }
2715
2716 wxSize wxWindowGTK::DoGetBorderSize() const
2717 {
2718 if ( !m_wxwindow )
2719 return wxWindowBase::DoGetBorderSize();
2720
2721 int x, y;
2722 WX_PIZZA(m_wxwindow)->get_border_widths(x, y);
2723
2724 return 2*wxSize(x, y);
2725 }
2726
2727 void wxWindowGTK::DoGetPosition( int *x, int *y ) const
2728 {
2729 wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
2730
2731 int dx = 0;
2732 int dy = 0;
2733 if (!IsTopLevel() && m_parent && m_parent->m_wxwindow)
2734 {
2735 wxPizza* pizza = WX_PIZZA(m_parent->m_wxwindow);
2736 dx = pizza->m_scroll_x;
2737 dy = pizza->m_scroll_y;
2738 }
2739
2740 if (m_x == -1 && m_y == -1)
2741 {
2742 GdkWindow *source = NULL;
2743 if (m_wxwindow)
2744 source = gtk_widget_get_window(m_wxwindow);
2745 else
2746 source = gtk_widget_get_window(m_widget);
2747
2748 if (source)
2749 {
2750 int org_x = 0;
2751 int org_y = 0;
2752 gdk_window_get_origin( source, &org_x, &org_y );
2753
2754 if (m_parent)
2755 m_parent->ScreenToClient(&org_x, &org_y);
2756
2757 const_cast<wxWindowGTK*>(this)->m_x = org_x;
2758 const_cast<wxWindowGTK*>(this)->m_y = org_y;
2759 }
2760 }
2761
2762 if (x) (*x) = m_x - dx;
2763 if (y) (*y) = m_y - dy;
2764 }
2765
2766 void wxWindowGTK::DoClientToScreen( int *x, int *y ) const
2767 {
2768 wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
2769
2770 if (gtk_widget_get_window(m_widget) == NULL) return;
2771
2772 GdkWindow *source = NULL;
2773 if (m_wxwindow)
2774 source = gtk_widget_get_window(m_wxwindow);
2775 else
2776 source = gtk_widget_get_window(m_widget);
2777
2778 int org_x = 0;
2779 int org_y = 0;
2780 gdk_window_get_origin( source, &org_x, &org_y );
2781
2782 if (!m_wxwindow)
2783 {
2784 if (!gtk_widget_get_has_window(m_widget))
2785 {
2786 GtkAllocation a;
2787 gtk_widget_get_allocation(m_widget, &a);
2788 org_x += a.x;
2789 org_y += a.y;
2790 }
2791 }
2792
2793
2794 if (x)
2795 {
2796 if (GetLayoutDirection() == wxLayout_RightToLeft)
2797 *x = (GetClientSize().x - *x) + org_x;
2798 else
2799 *x += org_x;
2800 }
2801
2802 if (y) *y += org_y;
2803 }
2804
2805 void wxWindowGTK::DoScreenToClient( int *x, int *y ) const
2806 {
2807 wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
2808
2809 if (!gtk_widget_get_realized(m_widget)) return;
2810
2811 GdkWindow *source = NULL;
2812 if (m_wxwindow)
2813 source = gtk_widget_get_window(m_wxwindow);
2814 else
2815 source = gtk_widget_get_window(m_widget);
2816
2817 int org_x = 0;
2818 int org_y = 0;
2819 gdk_window_get_origin( source, &org_x, &org_y );
2820
2821 if (!m_wxwindow)
2822 {
2823 if (!gtk_widget_get_has_window(m_widget))
2824 {
2825 GtkAllocation a;
2826 gtk_widget_get_allocation(m_widget, &a);
2827 org_x += a.x;
2828 org_y += a.y;
2829 }
2830 }
2831
2832 if (x)
2833 {
2834 if (GetLayoutDirection() == wxLayout_RightToLeft)
2835 *x = (GetClientSize().x - *x) - org_x;
2836 else
2837 *x -= org_x;
2838 }
2839 if (y) *y -= org_y;
2840 }
2841
2842 bool wxWindowGTK::Show( bool show )
2843 {
2844 if ( !wxWindowBase::Show(show) )
2845 {
2846 // nothing to do
2847 return false;
2848 }
2849
2850 // notice that we may call Hide() before the window is created and this is
2851 // actually useful to create it hidden initially -- but we can't call
2852 // Show() before it is created
2853 if ( !m_widget )
2854 {
2855 wxASSERT_MSG( !show, "can't show invalid window" );
2856 return true;
2857 }
2858
2859 if ( show )
2860 {
2861 if ( m_showOnIdle )
2862 {
2863 // defer until later
2864 return true;
2865 }
2866
2867 gtk_widget_show(m_widget);
2868 }
2869 else // hide
2870 {
2871 gtk_widget_hide(m_widget);
2872 }
2873
2874 wxShowEvent eventShow(GetId(), show);
2875 eventShow.SetEventObject(this);
2876 HandleWindowEvent(eventShow);
2877
2878 return true;
2879 }
2880
2881 void wxWindowGTK::DoEnable( bool enable )
2882 {
2883 wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
2884
2885 gtk_widget_set_sensitive( m_widget, enable );
2886 if (m_wxwindow && (m_wxwindow != m_widget))
2887 gtk_widget_set_sensitive( m_wxwindow, enable );
2888 }
2889
2890 int wxWindowGTK::GetCharHeight() const
2891 {
2892 wxCHECK_MSG( (m_widget != NULL), 12, wxT("invalid window") );
2893
2894 wxFont font = GetFont();
2895 wxCHECK_MSG( font.IsOk(), 12, wxT("invalid font") );
2896
2897 PangoContext* context = gtk_widget_get_pango_context(m_widget);
2898
2899 if (!context)
2900 return 0;
2901
2902 PangoFontDescription *desc = font.GetNativeFontInfo()->description;
2903 PangoLayout *layout = pango_layout_new(context);
2904 pango_layout_set_font_description(layout, desc);
2905 pango_layout_set_text(layout, "H", 1);
2906 PangoLayoutLine *line = (PangoLayoutLine *)pango_layout_get_lines(layout)->data;
2907
2908 PangoRectangle rect;
2909 pango_layout_line_get_extents(line, NULL, &rect);
2910
2911 g_object_unref (layout);
2912
2913 return (int) PANGO_PIXELS(rect.height);
2914 }
2915
2916 int wxWindowGTK::GetCharWidth() const
2917 {
2918 wxCHECK_MSG( (m_widget != NULL), 8, wxT("invalid window") );
2919
2920 wxFont font = GetFont();
2921 wxCHECK_MSG( font.IsOk(), 8, wxT("invalid font") );
2922
2923 PangoContext* context = gtk_widget_get_pango_context(m_widget);
2924
2925 if (!context)
2926 return 0;
2927
2928 PangoFontDescription *desc = font.GetNativeFontInfo()->description;
2929 PangoLayout *layout = pango_layout_new(context);
2930 pango_layout_set_font_description(layout, desc);
2931 pango_layout_set_text(layout, "g", 1);
2932 PangoLayoutLine *line = (PangoLayoutLine *)pango_layout_get_lines(layout)->data;
2933
2934 PangoRectangle rect;
2935 pango_layout_line_get_extents(line, NULL, &rect);
2936
2937 g_object_unref (layout);
2938
2939 return (int) PANGO_PIXELS(rect.width);
2940 }
2941
2942 void wxWindowGTK::DoGetTextExtent( const wxString& string,
2943 int *x,
2944 int *y,
2945 int *descent,
2946 int *externalLeading,
2947 const wxFont *theFont ) const
2948 {
2949 wxFont fontToUse = theFont ? *theFont : GetFont();
2950
2951 wxCHECK_RET( fontToUse.IsOk(), wxT("invalid font") );
2952
2953 if (string.empty())
2954 {
2955 if (x) (*x) = 0;
2956 if (y) (*y) = 0;
2957 return;
2958 }
2959
2960 PangoContext *context = NULL;
2961 if (m_widget)
2962 context = gtk_widget_get_pango_context( m_widget );
2963
2964 if (!context)
2965 {
2966 if (x) (*x) = 0;
2967 if (y) (*y) = 0;
2968 return;
2969 }
2970
2971 PangoFontDescription *desc = fontToUse.GetNativeFontInfo()->description;
2972 PangoLayout *layout = pango_layout_new(context);
2973 pango_layout_set_font_description(layout, desc);
2974 {
2975 const wxCharBuffer data = wxGTK_CONV( string );
2976 if ( data )
2977 pango_layout_set_text(layout, data, strlen(data));
2978 }
2979
2980 PangoRectangle rect;
2981 pango_layout_get_extents(layout, NULL, &rect);
2982
2983 if (x) (*x) = (wxCoord) PANGO_PIXELS(rect.width);
2984 if (y) (*y) = (wxCoord) PANGO_PIXELS(rect.height);
2985 if (descent)
2986 {
2987 PangoLayoutIter *iter = pango_layout_get_iter(layout);
2988 int baseline = pango_layout_iter_get_baseline(iter);
2989 pango_layout_iter_free(iter);
2990 *descent = *y - PANGO_PIXELS(baseline);
2991 }
2992 if (externalLeading) (*externalLeading) = 0; // ??
2993
2994 g_object_unref (layout);
2995 }
2996
2997 void wxWindowGTK::GTKDisableFocusOutEvent()
2998 {
2999 g_signal_handlers_block_by_func( m_focusWidget,
3000 (gpointer) gtk_window_focus_out_callback, this);
3001 }
3002
3003 void wxWindowGTK::GTKEnableFocusOutEvent()
3004 {
3005 g_signal_handlers_unblock_by_func( m_focusWidget,
3006 (gpointer) gtk_window_focus_out_callback, this);
3007 }
3008
3009 bool wxWindowGTK::GTKHandleFocusIn()
3010 {
3011 // Disable default focus handling for custom windows since the default GTK+
3012 // handler issues a repaint
3013 const bool retval = m_wxwindow ? true : false;
3014
3015
3016 // NB: if there's still unprocessed deferred focus-out event (see
3017 // GTKHandleFocusOut() for explanation), we need to process it first so
3018 // that the order of focus events -- focus-out first, then focus-in
3019 // elsewhere -- is preserved
3020 if ( gs_deferredFocusOut )
3021 {
3022 if ( GTKNeedsToFilterSameWindowFocus() &&
3023 gs_deferredFocusOut == this )
3024 {
3025 // GTK+ focus changed from this wxWindow back to itself, so don't
3026 // emit any events at all
3027 wxLogTrace(TRACE_FOCUS,
3028 "filtered out spurious focus change within %s(%p, %s)",
3029 GetClassInfo()->GetClassName(), this, GetLabel());
3030 gs_deferredFocusOut = NULL;
3031 return retval;
3032 }
3033
3034 // otherwise we need to send focus-out first
3035 wxASSERT_MSG ( gs_deferredFocusOut != this,
3036 "GTKHandleFocusIn(GTKFocus_Normal) called even though focus changed back to itself - derived class should handle this" );
3037 GTKHandleDeferredFocusOut();
3038 }
3039
3040
3041 wxLogTrace(TRACE_FOCUS,
3042 "handling focus_in event for %s(%p, %s)",
3043 GetClassInfo()->GetClassName(), this, GetLabel());
3044
3045 if (m_imData)
3046 gtk_im_context_focus_in(m_imData->context);
3047
3048 gs_currentFocus = this;
3049 gs_pendingFocus = NULL;
3050
3051 #if wxUSE_CARET
3052 // caret needs to be informed about focus change
3053 wxCaret *caret = GetCaret();
3054 if ( caret )
3055 {
3056 caret->OnSetFocus();
3057 }
3058 #endif // wxUSE_CARET
3059
3060 // Notify the parent keeping track of focus for the kbd navigation
3061 // purposes that we got it.
3062 wxChildFocusEvent eventChildFocus(static_cast<wxWindow*>(this));
3063 GTKProcessEvent(eventChildFocus);
3064
3065 wxFocusEvent eventFocus(wxEVT_SET_FOCUS, GetId());
3066 eventFocus.SetEventObject(this);
3067 GTKProcessEvent(eventFocus);
3068
3069 return retval;
3070 }
3071
3072 bool wxWindowGTK::GTKHandleFocusOut()
3073 {
3074 // Disable default focus handling for custom windows since the default GTK+
3075 // handler issues a repaint
3076 const bool retval = m_wxwindow ? true : false;
3077
3078
3079 // NB: If a control is composed of several GtkWidgets and when focus
3080 // changes from one of them to another within the same wxWindow, we get
3081 // a focus-out event followed by focus-in for another GtkWidget owned
3082 // by the same wx control. We don't want to generate two spurious
3083 // wxEVT_SET_FOCUS events in this case, so we defer sending wx events
3084 // from GTKHandleFocusOut() until we know for sure it's not coming back
3085 // (i.e. in GTKHandleFocusIn() or at idle time).
3086 if ( GTKNeedsToFilterSameWindowFocus() )
3087 {
3088 wxASSERT_MSG( gs_deferredFocusOut == NULL,
3089 "deferred focus out event already pending" );
3090 wxLogTrace(TRACE_FOCUS,
3091 "deferring focus_out event for %s(%p, %s)",
3092 GetClassInfo()->GetClassName(), this, GetLabel());
3093 gs_deferredFocusOut = this;
3094 return retval;
3095 }
3096
3097 GTKHandleFocusOutNoDeferring();
3098
3099 return retval;
3100 }
3101
3102 void wxWindowGTK::GTKHandleFocusOutNoDeferring()
3103 {
3104 wxLogTrace(TRACE_FOCUS,
3105 "handling focus_out event for %s(%p, %s)",
3106 GetClassInfo()->GetClassName(), this, GetLabel());
3107
3108 if (m_imData)
3109 gtk_im_context_focus_out(m_imData->context);
3110
3111 if ( gs_currentFocus != this )
3112 {
3113 // Something is terribly wrong, gs_currentFocus is out of sync with the
3114 // real focus. We will reset it to NULL anyway, because after this
3115 // focus-out event is handled, one of the following with happen:
3116 //
3117 // * either focus will go out of the app altogether, in which case
3118 // gs_currentFocus _should_ be NULL
3119 //
3120 // * or it goes to another control, in which case focus-in event will
3121 // follow immediately and it will set gs_currentFocus to the right
3122 // value
3123 wxLogDebug("window %s(%p, %s) lost focus even though it didn't have it",
3124 GetClassInfo()->GetClassName(), this, GetLabel());
3125 }
3126 gs_currentFocus = NULL;
3127
3128 #if wxUSE_CARET
3129 // caret needs to be informed about focus change
3130 wxCaret *caret = GetCaret();
3131 if ( caret )
3132 {
3133 caret->OnKillFocus();
3134 }
3135 #endif // wxUSE_CARET
3136
3137 wxFocusEvent event( wxEVT_KILL_FOCUS, GetId() );
3138 event.SetEventObject( this );
3139 event.SetWindow( FindFocus() );
3140 GTKProcessEvent( event );
3141 }
3142
3143 /*static*/
3144 void wxWindowGTK::GTKHandleDeferredFocusOut()
3145 {
3146 // NB: See GTKHandleFocusOut() for explanation. This function is called
3147 // from either GTKHandleFocusIn() or OnInternalIdle() to process
3148 // deferred event.
3149 if ( gs_deferredFocusOut )
3150 {
3151 wxWindowGTK *win = gs_deferredFocusOut;
3152 gs_deferredFocusOut = NULL;
3153
3154 wxLogTrace(TRACE_FOCUS,
3155 "processing deferred focus_out event for %s(%p, %s)",
3156 win->GetClassInfo()->GetClassName(), win, win->GetLabel());
3157
3158 win->GTKHandleFocusOutNoDeferring();
3159 }
3160 }
3161
3162 void wxWindowGTK::SetFocus()
3163 {
3164 wxCHECK_RET( m_widget != NULL, wxT("invalid window") );
3165
3166 // Setting "physical" focus is not immediate in GTK+ and while
3167 // gtk_widget_is_focus ("determines if the widget is the focus widget
3168 // within its toplevel", i.e. returns true for one widget per TLW, not
3169 // globally) returns true immediately after grabbing focus,
3170 // GTK_WIDGET_HAS_FOCUS (which returns true only for the one widget that
3171 // has focus at the moment) takes effect only after the window is shown
3172 // (if it was hidden at the moment of the call) or at the next event loop
3173 // iteration.
3174 //
3175 // Because we want to FindFocus() call immediately following
3176 // foo->SetFocus() to return foo, we have to keep track of "pending" focus
3177 // ourselves.
3178 gs_pendingFocus = this;
3179
3180 GtkWidget *widget = m_wxwindow ? m_wxwindow : m_focusWidget;
3181
3182 if ( GTK_IS_CONTAINER(widget) &&
3183 !gtk_widget_get_can_focus(widget) )
3184 {
3185 wxLogTrace(TRACE_FOCUS,
3186 wxT("Setting focus to a child of %s(%p, %s)"),
3187 GetClassInfo()->GetClassName(), this, GetLabel().c_str());
3188 gtk_widget_child_focus(widget, GTK_DIR_TAB_FORWARD);
3189 }
3190 else
3191 {
3192 wxLogTrace(TRACE_FOCUS,
3193 wxT("Setting focus to %s(%p, %s)"),
3194 GetClassInfo()->GetClassName(), this, GetLabel().c_str());
3195 gtk_widget_grab_focus(widget);
3196 }
3197 }
3198
3199 void wxWindowGTK::SetCanFocus(bool canFocus)
3200 {
3201 gtk_widget_set_can_focus(m_widget, canFocus);
3202
3203 if ( m_wxwindow && (m_widget != m_wxwindow) )
3204 {
3205 gtk_widget_set_can_focus(m_wxwindow, canFocus);
3206 }
3207 }
3208
3209 bool wxWindowGTK::Reparent( wxWindowBase *newParentBase )
3210 {
3211 wxCHECK_MSG( (m_widget != NULL), false, wxT("invalid window") );
3212
3213 wxWindowGTK * const newParent = (wxWindowGTK *)newParentBase;
3214
3215 wxASSERT( GTK_IS_WIDGET(m_widget) );
3216
3217 if ( !wxWindowBase::Reparent(newParent) )
3218 return false;
3219
3220 wxASSERT( GTK_IS_WIDGET(m_widget) );
3221
3222 // Notice that old m_parent pointer might be non-NULL here but the widget
3223 // still not have any parent at GTK level if it's a notebook page that had
3224 // been removed from the notebook so test this at GTK level and not wx one.
3225 if ( GtkWidget *parentGTK = gtk_widget_get_parent(m_widget) )
3226 gtk_container_remove(GTK_CONTAINER(parentGTK), m_widget);
3227
3228 wxASSERT( GTK_IS_WIDGET(m_widget) );
3229
3230 if (newParent)
3231 {
3232 if (gtk_widget_get_visible (newParent->m_widget))
3233 {
3234 m_showOnIdle = true;
3235 gtk_widget_hide( m_widget );
3236 }
3237 /* insert GTK representation */
3238 newParent->AddChildGTK(this);
3239 }
3240
3241 SetLayoutDirection(wxLayout_Default);
3242
3243 return true;
3244 }
3245
3246 void wxWindowGTK::DoAddChild(wxWindowGTK *child)
3247 {
3248 wxASSERT_MSG( (m_widget != NULL), wxT("invalid window") );
3249 wxASSERT_MSG( (child != NULL), wxT("invalid child window") );
3250
3251 /* add to list */
3252 AddChild( child );
3253
3254 /* insert GTK representation */
3255 AddChildGTK(child);
3256 }
3257
3258 void wxWindowGTK::AddChild(wxWindowBase *child)
3259 {
3260 wxWindowBase::AddChild(child);
3261 m_dirtyTabOrder = true;
3262 wxTheApp->WakeUpIdle();
3263 }
3264
3265 void wxWindowGTK::RemoveChild(wxWindowBase *child)
3266 {
3267 wxWindowBase::RemoveChild(child);
3268 m_dirtyTabOrder = true;
3269 wxTheApp->WakeUpIdle();
3270 }
3271
3272 /* static */
3273 wxLayoutDirection wxWindowGTK::GTKGetLayout(GtkWidget *widget)
3274 {
3275 return gtk_widget_get_direction(widget) == GTK_TEXT_DIR_RTL
3276 ? wxLayout_RightToLeft
3277 : wxLayout_LeftToRight;
3278 }
3279
3280 /* static */
3281 void wxWindowGTK::GTKSetLayout(GtkWidget *widget, wxLayoutDirection dir)
3282 {
3283 wxASSERT_MSG( dir != wxLayout_Default, wxT("invalid layout direction") );
3284
3285 gtk_widget_set_direction(widget,
3286 dir == wxLayout_RightToLeft ? GTK_TEXT_DIR_RTL
3287 : GTK_TEXT_DIR_LTR);
3288 }
3289
3290 wxLayoutDirection wxWindowGTK::GetLayoutDirection() const
3291 {
3292 return GTKGetLayout(m_widget);
3293 }
3294
3295 void wxWindowGTK::SetLayoutDirection(wxLayoutDirection dir)
3296 {
3297 if ( dir == wxLayout_Default )
3298 {
3299 const wxWindow *const parent = GetParent();
3300 if ( parent )
3301 {
3302 // inherit layout from parent.
3303 dir = parent->GetLayoutDirection();
3304 }
3305 else // no parent, use global default layout
3306 {
3307 dir = wxTheApp->GetLayoutDirection();
3308 }
3309 }
3310
3311 if ( dir == wxLayout_Default )
3312 return;
3313
3314 GTKSetLayout(m_widget, dir);
3315
3316 if (m_wxwindow && (m_wxwindow != m_widget))
3317 GTKSetLayout(m_wxwindow, dir);
3318 }
3319
3320 wxCoord
3321 wxWindowGTK::AdjustForLayoutDirection(wxCoord x,
3322 wxCoord WXUNUSED(width),
3323 wxCoord WXUNUSED(widthTotal)) const
3324 {
3325 // We now mirror the coordinates of RTL windows in wxPizza
3326 return x;
3327 }
3328
3329 void wxWindowGTK::DoMoveInTabOrder(wxWindow *win, WindowOrder move)
3330 {
3331 wxWindowBase::DoMoveInTabOrder(win, move);
3332 m_dirtyTabOrder = true;
3333 wxTheApp->WakeUpIdle();
3334 }
3335
3336 bool wxWindowGTK::DoNavigateIn(int flags)
3337 {
3338 if ( flags & wxNavigationKeyEvent::WinChange )
3339 {
3340 wxFAIL_MSG( wxT("not implemented") );
3341
3342 return false;
3343 }
3344 else // navigate inside the container
3345 {
3346 wxWindow *parent = wxGetTopLevelParent((wxWindow *)this);
3347 wxCHECK_MSG( parent, false, wxT("every window must have a TLW parent") );
3348
3349 GtkDirectionType dir;
3350 dir = flags & wxNavigationKeyEvent::IsForward ? GTK_DIR_TAB_FORWARD
3351 : GTK_DIR_TAB_BACKWARD;
3352
3353 gboolean rc;
3354 g_signal_emit_by_name(parent->m_widget, "focus", dir, &rc);
3355
3356 return rc == TRUE;
3357 }
3358 }
3359
3360 bool wxWindowGTK::GTKWidgetNeedsMnemonic() const
3361 {
3362 // none needed by default
3363 return false;
3364 }
3365
3366 void wxWindowGTK::GTKWidgetDoSetMnemonic(GtkWidget* WXUNUSED(w))
3367 {
3368 // nothing to do by default since none is needed
3369 }
3370
3371 void wxWindowGTK::RealizeTabOrder()
3372 {
3373 if (m_wxwindow)
3374 {
3375 if ( !m_children.empty() )
3376 {
3377 // we don't only construct the correct focus chain but also use
3378 // this opportunity to update the mnemonic widgets for the widgets
3379 // that need them
3380
3381 GList *chain = NULL;
3382 wxWindowGTK* mnemonicWindow = NULL;
3383
3384 for ( wxWindowList::const_iterator i = m_children.begin();
3385 i != m_children.end();
3386 ++i )
3387 {
3388 wxWindowGTK *win = *i;
3389
3390 bool focusableFromKeyboard = win->AcceptsFocusFromKeyboard();
3391
3392 if ( mnemonicWindow )
3393 {
3394 if ( focusableFromKeyboard )
3395 {
3396 // wxComboBox et al. needs to focus on on a different
3397 // widget than m_widget, so if the main widget isn't
3398 // focusable try the connect widget
3399 GtkWidget* w = win->m_widget;
3400 if ( !gtk_widget_get_can_focus(w) )
3401 {
3402 w = win->GetConnectWidget();
3403 if ( !gtk_widget_get_can_focus(w) )
3404 w = NULL;
3405 }
3406
3407 if ( w )
3408 {
3409 mnemonicWindow->GTKWidgetDoSetMnemonic(w);
3410 mnemonicWindow = NULL;
3411 }
3412 }
3413 }
3414 else if ( win->GTKWidgetNeedsMnemonic() )
3415 {
3416 mnemonicWindow = win;
3417 }
3418
3419 if ( focusableFromKeyboard )
3420 chain = g_list_prepend(chain, win->m_widget);
3421 }
3422
3423 chain = g_list_reverse(chain);
3424
3425 gtk_container_set_focus_chain(GTK_CONTAINER(m_wxwindow), chain);
3426 g_list_free(chain);
3427 }
3428 else // no children
3429 {
3430 gtk_container_unset_focus_chain(GTK_CONTAINER(m_wxwindow));
3431 }
3432 }
3433 }
3434
3435 void wxWindowGTK::Raise()
3436 {
3437 wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
3438
3439 if (m_wxwindow && gtk_widget_get_window(m_wxwindow))
3440 {
3441 gdk_window_raise(gtk_widget_get_window(m_wxwindow));
3442 }
3443 else if (gtk_widget_get_window(m_widget))
3444 {
3445 gdk_window_raise(gtk_widget_get_window(m_widget));
3446 }
3447 }
3448
3449 void wxWindowGTK::Lower()
3450 {
3451 wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
3452
3453 if (m_wxwindow && gtk_widget_get_window(m_wxwindow))
3454 {
3455 gdk_window_lower(gtk_widget_get_window(m_wxwindow));
3456 }
3457 else if (gtk_widget_get_window(m_widget))
3458 {
3459 gdk_window_lower(gtk_widget_get_window(m_widget));
3460 }
3461 }
3462
3463 bool wxWindowGTK::SetCursor( const wxCursor &cursor )
3464 {
3465 if ( !wxWindowBase::SetCursor(cursor.IsOk() ? cursor : *wxSTANDARD_CURSOR) )
3466 return false;
3467
3468 GTKUpdateCursor();
3469
3470 return true;
3471 }
3472
3473 void wxWindowGTK::GTKUpdateCursor(bool update_self /*=true*/, bool recurse /*=true*/)
3474 {
3475 if (update_self)
3476 {
3477 wxCursor cursor(g_globalCursor.IsOk() ? g_globalCursor : GetCursor());
3478 if ( cursor.IsOk() )
3479 {
3480 wxArrayGdkWindows windowsThis;
3481 GdkWindow* window = GTKGetWindow(windowsThis);
3482 if (window)
3483 gdk_window_set_cursor( window, cursor.GetCursor() );
3484 else
3485 {
3486 const size_t count = windowsThis.size();
3487 for ( size_t n = 0; n < count; n++ )
3488 {
3489 GdkWindow *win = windowsThis[n];
3490 // It can be zero if the window has not been realized yet.
3491 if ( win )
3492 {
3493 gdk_window_set_cursor(win, cursor.GetCursor());
3494 }
3495 }
3496 }
3497 }
3498 }
3499
3500 if (recurse)
3501 {
3502 for (wxWindowList::iterator it = GetChildren().begin(); it != GetChildren().end(); ++it)
3503 {
3504 (*it)->GTKUpdateCursor( true );
3505 }
3506 }
3507 }
3508
3509 void wxWindowGTK::WarpPointer( int x, int y )
3510 {
3511 wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
3512
3513 ClientToScreen(&x, &y);
3514 GdkDisplay* display = gtk_widget_get_display(m_widget);
3515 GdkScreen* screen = gtk_widget_get_screen(m_widget);
3516 #ifdef __WXGTK30__
3517 GdkDeviceManager* manager = gdk_display_get_device_manager(display);
3518 gdk_device_warp(gdk_device_manager_get_client_pointer(manager), screen, x, y);
3519 #else
3520 XWarpPointer(GDK_DISPLAY_XDISPLAY(display),
3521 None,
3522 GDK_WINDOW_XID(gdk_screen_get_root_window(screen)),
3523 0, 0, 0, 0, x, y);
3524 #endif
3525 }
3526
3527 wxWindowGTK::ScrollDir wxWindowGTK::ScrollDirFromRange(GtkRange *range) const
3528 {
3529 // find the scrollbar which generated the event
3530 for ( int dir = 0; dir < ScrollDir_Max; dir++ )
3531 {
3532 if ( range == m_scrollBar[dir] )
3533 return (ScrollDir)dir;
3534 }
3535
3536 wxFAIL_MSG( wxT("event from unknown scrollbar received") );
3537
3538 return ScrollDir_Max;
3539 }
3540
3541 bool wxWindowGTK::DoScrollByUnits(ScrollDir dir, ScrollUnit unit, int units)
3542 {
3543 bool changed = false;
3544 GtkRange* range = m_scrollBar[dir];
3545 if ( range && units )
3546 {
3547 GtkAdjustment* adj = gtk_range_get_adjustment(range);
3548 double inc = unit == ScrollUnit_Line ? gtk_adjustment_get_step_increment(adj)
3549 : gtk_adjustment_get_page_increment(adj);
3550
3551 const int posOld = wxRound(gtk_adjustment_get_value(adj));
3552 gtk_range_set_value(range, posOld + units*inc);
3553
3554 changed = wxRound(gtk_adjustment_get_value(adj)) != posOld;
3555 }
3556
3557 return changed;
3558 }
3559
3560 bool wxWindowGTK::ScrollLines(int lines)
3561 {
3562 return DoScrollByUnits(ScrollDir_Vert, ScrollUnit_Line, lines);
3563 }
3564
3565 bool wxWindowGTK::ScrollPages(int pages)
3566 {
3567 return DoScrollByUnits(ScrollDir_Vert, ScrollUnit_Page, pages);
3568 }
3569
3570 void wxWindowGTK::Refresh(bool WXUNUSED(eraseBackground),
3571 const wxRect *rect)
3572 {
3573 if (m_widget == NULL || !gtk_widget_get_mapped(m_widget))
3574 return;
3575
3576 if (m_wxwindow)
3577 {
3578 GdkWindow* window = gtk_widget_get_window(m_wxwindow);
3579 if (rect)
3580 {
3581 GdkRectangle r = { rect->x, rect->y, rect->width, rect->height };
3582 if (GetLayoutDirection() == wxLayout_RightToLeft)
3583 r.x = gdk_window_get_width(window) - r.x - rect->width;
3584 gdk_window_invalidate_rect(window, &r, true);
3585 }
3586 else
3587 gdk_window_invalidate_rect(window, NULL, true);
3588 }
3589 else
3590 {
3591 if (rect)
3592 gtk_widget_queue_draw_area(m_widget, rect->x, rect->y, rect->width, rect->height);
3593 else
3594 gtk_widget_queue_draw(m_widget);
3595 }
3596 }
3597
3598 void wxWindowGTK::Update()
3599 {
3600 if (m_widget && gtk_widget_get_mapped(m_widget))
3601 {
3602 GdkDisplay* display = gtk_widget_get_display(m_widget);
3603 // Flush everything out to the server, and wait for it to finish.
3604 // This ensures nothing will overwrite the drawing we are about to do.
3605 gdk_display_sync(display);
3606
3607 GdkWindow* window = GTKGetDrawingWindow();
3608 if (window == NULL)
3609 window = gtk_widget_get_window(m_widget);
3610 gdk_window_process_updates(window, true);
3611
3612 // Flush again, but no need to wait for it to finish
3613 gdk_display_flush(display);
3614 }
3615 }
3616
3617 bool wxWindowGTK::DoIsExposed( int x, int y ) const
3618 {
3619 return m_updateRegion.Contains(x, y) != wxOutRegion;
3620 }
3621
3622 bool wxWindowGTK::DoIsExposed( int x, int y, int w, int h ) const
3623 {
3624 if (GetLayoutDirection() == wxLayout_RightToLeft)
3625 return m_updateRegion.Contains(x-w, y, w, h) != wxOutRegion;
3626 else
3627 return m_updateRegion.Contains(x, y, w, h) != wxOutRegion;
3628 }
3629
3630 void wxWindowGTK::GtkSendPaintEvents()
3631 {
3632 if (!m_wxwindow)
3633 {
3634 m_updateRegion.Clear();
3635 return;
3636 }
3637
3638 // Clip to paint region in wxClientDC
3639 m_clipPaintRegion = true;
3640
3641 m_nativeUpdateRegion = m_updateRegion;
3642
3643 if (GetLayoutDirection() == wxLayout_RightToLeft)
3644 {
3645 // Transform m_updateRegion under RTL
3646 m_updateRegion.Clear();
3647
3648 gint width;
3649 gdk_drawable_get_size(gtk_widget_get_window(m_wxwindow), &width, NULL);
3650
3651 wxRegionIterator upd( m_nativeUpdateRegion );
3652 while (upd)
3653 {
3654 wxRect rect;
3655 rect.x = upd.GetX();
3656 rect.y = upd.GetY();
3657 rect.width = upd.GetWidth();
3658 rect.height = upd.GetHeight();
3659
3660 rect.x = width - rect.x - rect.width;
3661 m_updateRegion.Union( rect );
3662
3663 ++upd;
3664 }
3665 }
3666
3667 switch ( GetBackgroundStyle() )
3668 {
3669 case wxBG_STYLE_ERASE:
3670 {
3671 wxWindowDC dc( (wxWindow*)this );
3672 dc.SetDeviceClippingRegion( m_updateRegion );
3673
3674 // Work around gtk-qt <= 0.60 bug whereby the window colour
3675 // remains grey
3676 if ( UseBgCol() &&
3677 wxSystemOptions::
3678 GetOptionInt("gtk.window.force-background-colour") )
3679 {
3680 dc.SetBackground(GetBackgroundColour());
3681 dc.Clear();
3682 }
3683
3684 wxEraseEvent erase_event( GetId(), &dc );
3685 erase_event.SetEventObject( this );
3686
3687 if ( HandleWindowEvent(erase_event) )
3688 {
3689 // background erased, don't do it again
3690 break;
3691 }
3692 }
3693 // fall through
3694
3695 case wxBG_STYLE_SYSTEM:
3696 if ( GetThemeEnabled() )
3697 {
3698 // find ancestor from which to steal background
3699 wxWindow *parent = wxGetTopLevelParent((wxWindow *)this);
3700 if (!parent)
3701 parent = (wxWindow*)this;
3702
3703 if (gtk_widget_get_mapped(parent->m_widget))
3704 {
3705 wxRegionIterator upd( m_nativeUpdateRegion );
3706 while (upd)
3707 {
3708 GdkRectangle rect;
3709 rect.x = upd.GetX();
3710 rect.y = upd.GetY();
3711 rect.width = upd.GetWidth();
3712 rect.height = upd.GetHeight();
3713
3714 gtk_paint_flat_box(gtk_widget_get_style(parent->m_widget),
3715 GTKGetDrawingWindow(),
3716 gtk_widget_get_state(m_wxwindow),
3717 GTK_SHADOW_NONE,
3718 &rect,
3719 parent->m_widget,
3720 (char *)"base",
3721 0, 0, -1, -1 );
3722
3723 ++upd;
3724 }
3725 }
3726 }
3727 break;
3728
3729 case wxBG_STYLE_PAINT:
3730 // nothing to do: window will be painted over in EVT_PAINT
3731 break;
3732
3733 default:
3734 wxFAIL_MSG( "unsupported background style" );
3735 }
3736
3737 wxNcPaintEvent nc_paint_event( GetId() );
3738 nc_paint_event.SetEventObject( this );
3739 HandleWindowEvent( nc_paint_event );
3740
3741 wxPaintEvent paint_event( GetId() );
3742 paint_event.SetEventObject( this );
3743 HandleWindowEvent( paint_event );
3744
3745 m_clipPaintRegion = false;
3746
3747 m_updateRegion.Clear();
3748 m_nativeUpdateRegion.Clear();
3749 }
3750
3751 void wxWindowGTK::SetDoubleBuffered( bool on )
3752 {
3753 wxCHECK_RET( (m_widget != NULL), wxT("invalid window") );
3754
3755 if ( m_wxwindow )
3756 gtk_widget_set_double_buffered( m_wxwindow, on );
3757 }
3758
3759 bool wxWindowGTK::IsDoubleBuffered() const
3760 {
3761 return gtk_widget_get_double_buffered( m_wxwindow );
3762 }
3763
3764 void wxWindowGTK::ClearBackground()
3765 {
3766 wxCHECK_RET( m_widget != NULL, wxT("invalid window") );
3767 }
3768
3769 #if wxUSE_TOOLTIPS
3770 void wxWindowGTK::DoSetToolTip( wxToolTip *tip )
3771 {
3772 if (m_tooltip != tip)
3773 {
3774 wxWindowBase::DoSetToolTip(tip);
3775
3776 if (m_tooltip)
3777 m_tooltip->GTKSetWindow(static_cast<wxWindow*>(this));
3778 else
3779 GTKApplyToolTip(NULL);
3780 }
3781 }
3782
3783 void wxWindowGTK::GTKApplyToolTip(const char* tip)
3784 {
3785 wxToolTip::GTKApply(GetConnectWidget(), tip);
3786 }
3787 #endif // wxUSE_TOOLTIPS
3788
3789 bool wxWindowGTK::SetBackgroundColour( const wxColour &colour )
3790 {
3791 wxCHECK_MSG( m_widget != NULL, false, wxT("invalid window") );
3792
3793 if (!wxWindowBase::SetBackgroundColour(colour))
3794 return false;
3795
3796 if (colour.IsOk())
3797 {
3798 // We need the pixel value e.g. for background clearing.
3799 m_backgroundColour.CalcPixel(gtk_widget_get_colormap(m_widget));
3800 }
3801
3802 // apply style change (forceStyle=true so that new style is applied
3803 // even if the bg colour changed from valid to wxNullColour)
3804 GTKApplyWidgetStyle(true);
3805
3806 return true;
3807 }
3808
3809 bool wxWindowGTK::SetForegroundColour( const wxColour &colour )
3810 {
3811 wxCHECK_MSG( m_widget != NULL, false, wxT("invalid window") );
3812
3813 if (!wxWindowBase::SetForegroundColour(colour))
3814 {
3815 return false;
3816 }
3817
3818 if (colour.IsOk())
3819 {
3820 // We need the pixel value e.g. for background clearing.
3821 m_foregroundColour.CalcPixel(gtk_widget_get_colormap(m_widget));
3822 }
3823
3824 // apply style change (forceStyle=true so that new style is applied
3825 // even if the bg colour changed from valid to wxNullColour):
3826 GTKApplyWidgetStyle(true);
3827
3828 return true;
3829 }
3830
3831 PangoContext *wxWindowGTK::GTKGetPangoDefaultContext()
3832 {
3833 return gtk_widget_get_pango_context( m_widget );
3834 }
3835
3836 GtkRcStyle *wxWindowGTK::GTKCreateWidgetStyle(bool forceStyle)
3837 {
3838 // do we need to apply any changes at all?
3839 if ( !forceStyle &&
3840 !m_font.IsOk() &&
3841 !m_foregroundColour.IsOk() && !m_backgroundColour.IsOk() )
3842 {
3843 return NULL;
3844 }
3845
3846 GtkRcStyle *style = gtk_rc_style_new();
3847
3848 if ( m_font.IsOk() )
3849 {
3850 style->font_desc =
3851 pango_font_description_copy( m_font.GetNativeFontInfo()->description );
3852 }
3853
3854 int flagsNormal = 0,
3855 flagsPrelight = 0,
3856 flagsActive = 0,
3857 flagsInsensitive = 0;
3858
3859 if ( m_foregroundColour.IsOk() )
3860 {
3861 const GdkColor *fg = m_foregroundColour.GetColor();
3862
3863 style->fg[GTK_STATE_NORMAL] =
3864 style->text[GTK_STATE_NORMAL] = *fg;
3865 flagsNormal |= GTK_RC_FG | GTK_RC_TEXT;
3866
3867 style->fg[GTK_STATE_PRELIGHT] =
3868 style->text[GTK_STATE_PRELIGHT] = *fg;
3869 flagsPrelight |= GTK_RC_FG | GTK_RC_TEXT;
3870
3871 style->fg[GTK_STATE_ACTIVE] =
3872 style->text[GTK_STATE_ACTIVE] = *fg;
3873 flagsActive |= GTK_RC_FG | GTK_RC_TEXT;
3874 }
3875
3876 if ( m_backgroundColour.IsOk() )
3877 {
3878 const GdkColor *bg = m_backgroundColour.GetColor();
3879
3880 style->bg[GTK_STATE_NORMAL] =
3881 style->base[GTK_STATE_NORMAL] = *bg;
3882 flagsNormal |= GTK_RC_BG | GTK_RC_BASE;
3883
3884 style->bg[GTK_STATE_PRELIGHT] =
3885 style->base[GTK_STATE_PRELIGHT] = *bg;
3886 flagsPrelight |= GTK_RC_BG | GTK_RC_BASE;
3887
3888 style->bg[GTK_STATE_ACTIVE] =
3889 style->base[GTK_STATE_ACTIVE] = *bg;
3890 flagsActive |= GTK_RC_BG | GTK_RC_BASE;
3891
3892 style->bg[GTK_STATE_INSENSITIVE] =
3893 style->base[GTK_STATE_INSENSITIVE] = *bg;
3894 flagsInsensitive |= GTK_RC_BG | GTK_RC_BASE;
3895 }
3896
3897 style->color_flags[GTK_STATE_NORMAL] = (GtkRcFlags)flagsNormal;
3898 style->color_flags[GTK_STATE_PRELIGHT] = (GtkRcFlags)flagsPrelight;
3899 style->color_flags[GTK_STATE_ACTIVE] = (GtkRcFlags)flagsActive;
3900 style->color_flags[GTK_STATE_INSENSITIVE] = (GtkRcFlags)flagsInsensitive;
3901
3902 return style;
3903 }
3904
3905 void wxWindowGTK::GTKApplyWidgetStyle(bool forceStyle)
3906 {
3907 GtkRcStyle *style = GTKCreateWidgetStyle(forceStyle);
3908 if ( style )
3909 {
3910 DoApplyWidgetStyle(style);
3911 g_object_unref(style);
3912 }
3913
3914 // Style change may affect GTK+'s size calculation:
3915 InvalidateBestSize();
3916 }
3917
3918 void wxWindowGTK::DoApplyWidgetStyle(GtkRcStyle *style)
3919 {
3920 if ( m_wxwindow )
3921 {
3922 // block the signal temporarily to avoid sending
3923 // wxSysColourChangedEvents when we change the colours ourselves
3924 bool unblock = false;
3925 if ( IsTopLevel() )
3926 {
3927 unblock = true;
3928 g_signal_handlers_block_by_func(
3929 m_wxwindow, (void *)gtk_window_style_set_callback, this);
3930 }
3931
3932 gtk_widget_modify_style(m_wxwindow, style);
3933
3934 if ( unblock )
3935 {
3936 g_signal_handlers_unblock_by_func(
3937 m_wxwindow, (void *)gtk_window_style_set_callback, this);
3938 }
3939 }
3940 else
3941 {
3942 gtk_widget_modify_style(m_widget, style);
3943 }
3944 }
3945
3946 bool wxWindowGTK::SetBackgroundStyle(wxBackgroundStyle style)
3947 {
3948 wxWindowBase::SetBackgroundStyle(style);
3949
3950 if ( style == wxBG_STYLE_PAINT )
3951 {
3952 GdkWindow *window;
3953 if ( m_wxwindow )
3954 {
3955 window = GTKGetDrawingWindow();
3956 }
3957 else
3958 {
3959 GtkWidget * const w = GetConnectWidget();
3960 window = w ? gtk_widget_get_window(w) : NULL;
3961 }
3962
3963 if (window)
3964 {
3965 // Make sure GDK/X11 doesn't refresh the window
3966 // automatically.
3967 gdk_window_set_back_pixmap( window, None, False );
3968 #ifdef __X__
3969 Display* display = GDK_WINDOW_DISPLAY(window);
3970 XFlush(display);
3971 #endif
3972 m_needsStyleChange = false;
3973 }
3974 else // window not realized yet
3975 {
3976 // Do in OnIdle, because the window is not yet available
3977 m_needsStyleChange = true;
3978 }
3979
3980 // Don't apply widget style, or we get a grey background
3981 }
3982 else
3983 {
3984 // apply style change (forceStyle=true so that new style is applied
3985 // even if the bg colour changed from valid to wxNullColour):
3986 GTKApplyWidgetStyle(true);
3987 }
3988
3989 return true;
3990 }
3991
3992 // ----------------------------------------------------------------------------
3993 // Pop-up menu stuff
3994 // ----------------------------------------------------------------------------
3995
3996 #if wxUSE_MENUS_NATIVE
3997
3998 extern "C" {
3999 static
4000 void wxPopupMenuPositionCallback( GtkMenu *menu,
4001 gint *x, gint *y,
4002 gboolean * WXUNUSED(whatever),
4003 gpointer user_data )
4004 {
4005 // ensure that the menu appears entirely on screen
4006 GtkRequisition req;
4007 gtk_widget_get_child_requisition(GTK_WIDGET(menu), &req);
4008
4009 wxSize sizeScreen = wxGetDisplaySize();
4010 wxPoint *pos = (wxPoint*)user_data;
4011
4012 gint xmax = sizeScreen.x - req.width,
4013 ymax = sizeScreen.y - req.height;
4014
4015 *x = pos->x < xmax ? pos->x : xmax;
4016 *y = pos->y < ymax ? pos->y : ymax;
4017 }
4018 }
4019
4020 bool wxWindowGTK::DoPopupMenu( wxMenu *menu, int x, int y )
4021 {
4022 wxCHECK_MSG( m_widget != NULL, false, wxT("invalid window") );
4023
4024 menu->UpdateUI();
4025
4026 wxPoint pos;
4027 gpointer userdata;
4028 GtkMenuPositionFunc posfunc;
4029 if ( x == -1 && y == -1 )
4030 {
4031 // use GTK's default positioning algorithm
4032 userdata = NULL;
4033 posfunc = NULL;
4034 }
4035 else
4036 {
4037 pos = ClientToScreen(wxPoint(x, y));
4038 userdata = &pos;
4039 posfunc = wxPopupMenuPositionCallback;
4040 }
4041
4042 menu->m_popupShown = true;
4043 gtk_menu_popup(
4044 GTK_MENU(menu->m_menu),
4045 NULL, // parent menu shell
4046 NULL, // parent menu item
4047 posfunc, // function to position it
4048 userdata, // client data
4049 0, // button used to activate it
4050 gtk_get_current_event_time()
4051 );
4052
4053 while (menu->m_popupShown)
4054 {
4055 gtk_main_iteration();
4056 }
4057
4058 return true;
4059 }
4060
4061 #endif // wxUSE_MENUS_NATIVE
4062
4063 #if wxUSE_DRAG_AND_DROP
4064
4065 void wxWindowGTK::SetDropTarget( wxDropTarget *dropTarget )
4066 {
4067 wxCHECK_RET( m_widget != NULL, wxT("invalid window") );
4068
4069 GtkWidget *dnd_widget = GetConnectWidget();
4070
4071 if (m_dropTarget) m_dropTarget->GtkUnregisterWidget( dnd_widget );
4072
4073 if (m_dropTarget) delete m_dropTarget;
4074 m_dropTarget = dropTarget;
4075
4076 if (m_dropTarget) m_dropTarget->GtkRegisterWidget( dnd_widget );
4077 }
4078
4079 #endif // wxUSE_DRAG_AND_DROP
4080
4081 GtkWidget* wxWindowGTK::GetConnectWidget()
4082 {
4083 GtkWidget *connect_widget = m_widget;
4084 if (m_wxwindow) connect_widget = m_wxwindow;
4085
4086 return connect_widget;
4087 }
4088
4089 bool wxWindowGTK::GTKIsOwnWindow(GdkWindow *window) const
4090 {
4091 wxArrayGdkWindows windowsThis;
4092 GdkWindow * const winThis = GTKGetWindow(windowsThis);
4093
4094 return winThis ? window == winThis
4095 : windowsThis.Index(window) != wxNOT_FOUND;
4096 }
4097
4098 GdkWindow *wxWindowGTK::GTKGetWindow(wxArrayGdkWindows& WXUNUSED(windows)) const
4099 {
4100 return m_wxwindow ? GTKGetDrawingWindow() : gtk_widget_get_window(m_widget);
4101 }
4102
4103 bool wxWindowGTK::SetFont( const wxFont &font )
4104 {
4105 wxCHECK_MSG( m_widget != NULL, false, wxT("invalid window") );
4106
4107 if (!wxWindowBase::SetFont(font))
4108 return false;
4109
4110 // apply style change (forceStyle=true so that new style is applied
4111 // even if the font changed from valid to wxNullFont):
4112 GTKApplyWidgetStyle(true);
4113
4114 return true;
4115 }
4116
4117 void wxWindowGTK::DoCaptureMouse()
4118 {
4119 wxCHECK_RET( m_widget != NULL, wxT("invalid window") );
4120
4121 GdkWindow *window = NULL;
4122 if (m_wxwindow)
4123 window = GTKGetDrawingWindow();
4124 else
4125 window = gtk_widget_get_window(GetConnectWidget());
4126
4127 wxCHECK_RET( window, wxT("CaptureMouse() failed") );
4128
4129 const wxCursor* cursor = &m_cursor;
4130 if (!cursor->IsOk())
4131 cursor = wxSTANDARD_CURSOR;
4132
4133 gdk_pointer_grab( window, FALSE,
4134 (GdkEventMask)
4135 (GDK_BUTTON_PRESS_MASK |
4136 GDK_BUTTON_RELEASE_MASK |
4137 GDK_POINTER_MOTION_HINT_MASK |
4138 GDK_POINTER_MOTION_MASK),
4139 NULL,
4140 cursor->GetCursor(),
4141 (guint32)GDK_CURRENT_TIME );
4142 g_captureWindow = this;
4143 g_captureWindowHasMouse = true;
4144 }
4145
4146 void wxWindowGTK::DoReleaseMouse()
4147 {
4148 wxCHECK_RET( m_widget != NULL, wxT("invalid window") );
4149
4150 wxCHECK_RET( g_captureWindow, wxT("can't release mouse - not captured") );
4151
4152 g_captureWindow = NULL;
4153
4154 GdkWindow *window = NULL;
4155 if (m_wxwindow)
4156 window = GTKGetDrawingWindow();
4157 else
4158 window = gtk_widget_get_window(GetConnectWidget());
4159
4160 if (!window)
4161 return;
4162
4163 gdk_pointer_ungrab ( (guint32)GDK_CURRENT_TIME );
4164 }
4165
4166 void wxWindowGTK::GTKReleaseMouseAndNotify()
4167 {
4168 DoReleaseMouse();
4169 wxMouseCaptureLostEvent evt(GetId());
4170 evt.SetEventObject( this );
4171 HandleWindowEvent( evt );
4172 }
4173
4174 /* static */
4175 wxWindow *wxWindowBase::GetCapture()
4176 {
4177 return (wxWindow *)g_captureWindow;
4178 }
4179
4180 bool wxWindowGTK::IsRetained() const
4181 {
4182 return false;
4183 }
4184
4185 void wxWindowGTK::SetScrollbar(int orient,
4186 int pos,
4187 int thumbVisible,
4188 int range,
4189 bool WXUNUSED(update))
4190 {
4191 const int dir = ScrollDirFromOrient(orient);
4192 GtkRange* const sb = m_scrollBar[dir];
4193 wxCHECK_RET( sb, wxT("this window is not scrollable") );
4194
4195 if (range <= 0)
4196 {
4197 // GtkRange requires upper > lower
4198 range =
4199 thumbVisible = 1;
4200 }
4201
4202 g_signal_handlers_block_by_func(
4203 sb, (void*)gtk_scrollbar_value_changed, this);
4204
4205 gtk_range_set_increments(sb, 1, thumbVisible);
4206 gtk_adjustment_set_page_size(gtk_range_get_adjustment(sb), thumbVisible);
4207 gtk_range_set_range(sb, 0, range);
4208 gtk_range_set_value(sb, pos);
4209 m_scrollPos[dir] = gtk_range_get_value(sb);
4210
4211 g_signal_handlers_unblock_by_func(
4212 sb, (void*)gtk_scrollbar_value_changed, this);
4213 }
4214
4215 void wxWindowGTK::SetScrollPos(int orient, int pos, bool WXUNUSED(refresh))
4216 {
4217 const int dir = ScrollDirFromOrient(orient);
4218 GtkRange * const sb = m_scrollBar[dir];
4219 wxCHECK_RET( sb, wxT("this window is not scrollable") );
4220
4221 // This check is more than an optimization. Without it, the slider
4222 // will not move smoothly while tracking when using wxScrollHelper.
4223 if (GetScrollPos(orient) != pos)
4224 {
4225 g_signal_handlers_block_by_func(
4226 sb, (void*)gtk_scrollbar_value_changed, this);
4227
4228 gtk_range_set_value(sb, pos);
4229 m_scrollPos[dir] = gtk_range_get_value(sb);
4230
4231 g_signal_handlers_unblock_by_func(
4232 sb, (void*)gtk_scrollbar_value_changed, this);
4233 }
4234 }
4235
4236 int wxWindowGTK::GetScrollThumb(int orient) const
4237 {
4238 GtkRange * const sb = m_scrollBar[ScrollDirFromOrient(orient)];
4239 wxCHECK_MSG( sb, 0, wxT("this window is not scrollable") );
4240
4241 return wxRound(gtk_adjustment_get_page_size(gtk_range_get_adjustment(sb)));
4242 }
4243
4244 int wxWindowGTK::GetScrollPos( int orient ) const
4245 {
4246 GtkRange * const sb = m_scrollBar[ScrollDirFromOrient(orient)];
4247 wxCHECK_MSG( sb, 0, wxT("this window is not scrollable") );
4248
4249 return wxRound(gtk_range_get_value(sb));
4250 }
4251
4252 int wxWindowGTK::GetScrollRange( int orient ) const
4253 {
4254 GtkRange * const sb = m_scrollBar[ScrollDirFromOrient(orient)];
4255 wxCHECK_MSG( sb, 0, wxT("this window is not scrollable") );
4256
4257 return wxRound(gtk_adjustment_get_upper(gtk_range_get_adjustment(sb)));
4258 }
4259
4260 // Determine if increment is the same as +/-x, allowing for some small
4261 // difference due to possible inexactness in floating point arithmetic
4262 static inline bool IsScrollIncrement(double increment, double x)
4263 {
4264 wxASSERT(increment > 0);
4265 const double tolerance = 1.0 / 1024;
4266 return fabs(increment - fabs(x)) < tolerance;
4267 }
4268
4269 wxEventType wxWindowGTK::GTKGetScrollEventType(GtkRange* range)
4270 {
4271 wxASSERT(range == m_scrollBar[0] || range == m_scrollBar[1]);
4272
4273 const int barIndex = range == m_scrollBar[1];
4274
4275 const double value = gtk_range_get_value(range);
4276
4277 // save previous position
4278 const double oldPos = m_scrollPos[barIndex];
4279 // update current position
4280 m_scrollPos[barIndex] = value;
4281 // If event should be ignored, or integral position has not changed
4282 if (!m_hasVMT || g_blockEventsOnDrag || wxRound(value) == wxRound(oldPos))
4283 {
4284 return wxEVT_NULL;
4285 }
4286
4287 wxEventType eventType = wxEVT_SCROLL_THUMBTRACK;
4288 if (!m_isScrolling)
4289 {
4290 // Difference from last change event
4291 const double diff = value - oldPos;
4292 const bool isDown = diff > 0;
4293
4294 GtkAdjustment* adj = gtk_range_get_adjustment(range);
4295 if (IsScrollIncrement(gtk_adjustment_get_step_increment(adj), diff))
4296 {
4297 eventType = isDown ? wxEVT_SCROLL_LINEDOWN : wxEVT_SCROLL_LINEUP;
4298 }
4299 else if (IsScrollIncrement(gtk_adjustment_get_page_increment(adj), diff))
4300 {
4301 eventType = isDown ? wxEVT_SCROLL_PAGEDOWN : wxEVT_SCROLL_PAGEUP;
4302 }
4303 else if (m_mouseButtonDown)
4304 {
4305 // Assume track event
4306 m_isScrolling = true;
4307 }
4308 }
4309 return eventType;
4310 }
4311
4312 void wxWindowGTK::ScrollWindow( int dx, int dy, const wxRect* WXUNUSED(rect) )
4313 {
4314 wxCHECK_RET( m_widget != NULL, wxT("invalid window") );
4315
4316 wxCHECK_RET( m_wxwindow != NULL, wxT("window needs client area for scrolling") );
4317
4318 // No scrolling requested.
4319 if ((dx == 0) && (dy == 0)) return;
4320
4321 m_clipPaintRegion = true;
4322
4323 WX_PIZZA(m_wxwindow)->scroll(dx, dy);
4324
4325 m_clipPaintRegion = false;
4326
4327 #if wxUSE_CARET
4328 bool restoreCaret = (GetCaret() != NULL && GetCaret()->IsVisible());
4329 if (restoreCaret)
4330 {
4331 wxRect caretRect(GetCaret()->GetPosition(), GetCaret()->GetSize());
4332 if (dx > 0)
4333 caretRect.width += dx;
4334 else
4335 {
4336 caretRect.x += dx; caretRect.width -= dx;
4337 }
4338 if (dy > 0)
4339 caretRect.height += dy;
4340 else
4341 {
4342 caretRect.y += dy; caretRect.height -= dy;
4343 }
4344
4345 RefreshRect(caretRect);
4346 }
4347 #endif // wxUSE_CARET
4348 }
4349
4350 void wxWindowGTK::GTKScrolledWindowSetBorder(GtkWidget* w, int wxstyle)
4351 {
4352 //RN: Note that static controls usually have no border on gtk, so maybe
4353 //it makes sense to treat that as simply no border at the wx level
4354 //as well...
4355 if (!(wxstyle & wxNO_BORDER) && !(wxstyle & wxBORDER_STATIC))
4356 {
4357 GtkShadowType gtkstyle;
4358
4359 if(wxstyle & wxBORDER_RAISED)
4360 gtkstyle = GTK_SHADOW_OUT;
4361 else if ((wxstyle & wxBORDER_SUNKEN) || (wxstyle & wxBORDER_THEME))
4362 gtkstyle = GTK_SHADOW_IN;
4363 #if 0
4364 // Now obsolete
4365 else if (wxstyle & wxBORDER_DOUBLE)
4366 gtkstyle = GTK_SHADOW_ETCHED_IN;
4367 #endif
4368 else //default
4369 gtkstyle = GTK_SHADOW_IN;
4370
4371 gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(w),
4372 gtkstyle );
4373 }
4374 }
4375
4376 void wxWindowGTK::SetWindowStyleFlag( long style )
4377 {
4378 // Updates the internal variable. NB: Now m_windowStyle bits carry the _new_ style values already
4379 wxWindowBase::SetWindowStyleFlag(style);
4380 }
4381
4382 // Find the wxWindow at the current mouse position, also returning the mouse
4383 // position.
4384 wxWindow* wxFindWindowAtPointer(wxPoint& pt)
4385 {
4386 pt = wxGetMousePosition();
4387 wxWindow* found = wxFindWindowAtPoint(pt);
4388 return found;
4389 }
4390
4391 // Get the current mouse position.
4392 wxPoint wxGetMousePosition()
4393 {
4394 /* This crashes when used within wxHelpContext,
4395 so we have to use the X-specific implementation below.
4396 gint x, y;
4397 GdkModifierType *mask;
4398 (void) gdk_window_get_pointer(NULL, &x, &y, mask);
4399
4400 return wxPoint(x, y);
4401 */
4402
4403 int x, y;
4404 GdkWindow* windowAtPtr = gdk_window_at_pointer(& x, & y);
4405
4406 Display *display = windowAtPtr ? GDK_WINDOW_XDISPLAY(windowAtPtr) : GDK_DISPLAY();
4407 Window rootWindow = RootWindowOfScreen (DefaultScreenOfDisplay(display));
4408 Window rootReturn, childReturn;
4409 int rootX, rootY, winX, winY;
4410 unsigned int maskReturn;
4411
4412 XQueryPointer (display,
4413 rootWindow,
4414 &rootReturn,
4415 &childReturn,
4416 &rootX, &rootY, &winX, &winY, &maskReturn);
4417 return wxPoint(rootX, rootY);
4418
4419 }
4420
4421 GdkWindow* wxWindowGTK::GTKGetDrawingWindow() const
4422 {
4423 GdkWindow* window = NULL;
4424 if (m_wxwindow)
4425 window = gtk_widget_get_window(m_wxwindow);
4426 return window;
4427 }
4428
4429 // ----------------------------------------------------------------------------
4430 // freeze/thaw
4431 // ----------------------------------------------------------------------------
4432
4433 extern "C"
4434 {
4435
4436 // this is called if we attempted to freeze unrealized widget when it finally
4437 // is realized (and so can be frozen):
4438 static void wx_frozen_widget_realize(GtkWidget* w, wxWindowGTK* win)
4439 {
4440 wxASSERT( w && gtk_widget_get_has_window(w) );
4441 wxASSERT( gtk_widget_get_realized(w) );
4442
4443 g_signal_handlers_disconnect_by_func
4444 (
4445 w,
4446 (void*)wx_frozen_widget_realize,
4447 win
4448 );
4449
4450 GdkWindow* window;
4451 if (w == win->m_wxwindow)
4452 window = win->GTKGetDrawingWindow();
4453 else
4454 window = gtk_widget_get_window(w);
4455 gdk_window_freeze_updates(window);
4456 }
4457
4458 } // extern "C"
4459
4460 void wxWindowGTK::GTKFreezeWidget(GtkWidget *w)
4461 {
4462 if ( !w || !gtk_widget_get_has_window(w) )
4463 return; // window-less widget, cannot be frozen
4464
4465 GdkWindow* window = gtk_widget_get_window(w);
4466 if (window == NULL)
4467 {
4468 // we can't thaw unrealized widgets because they don't have GdkWindow,
4469 // so set it up to be done immediately after realization:
4470 g_signal_connect_after
4471 (
4472 w,
4473 "realize",
4474 G_CALLBACK(wx_frozen_widget_realize),
4475 this
4476 );
4477 return;
4478 }
4479
4480 if (w == m_wxwindow)
4481 window = GTKGetDrawingWindow();
4482 gdk_window_freeze_updates(window);
4483 }
4484
4485 void wxWindowGTK::GTKThawWidget(GtkWidget *w)
4486 {
4487 if ( !w || !gtk_widget_get_has_window(w) )
4488 return; // window-less widget, cannot be frozen
4489
4490 GdkWindow* window = gtk_widget_get_window(w);
4491 if (window == NULL)
4492 {
4493 // the widget wasn't realized yet, no need to thaw
4494 g_signal_handlers_disconnect_by_func
4495 (
4496 w,
4497 (void*)wx_frozen_widget_realize,
4498 this
4499 );
4500 return;
4501 }
4502
4503 if (w == m_wxwindow)
4504 window = GTKGetDrawingWindow();
4505 gdk_window_thaw_updates(window);
4506 }
4507
4508 void wxWindowGTK::DoFreeze()
4509 {
4510 GTKFreezeWidget(m_widget);
4511 if ( m_wxwindow && m_widget != m_wxwindow )
4512 GTKFreezeWidget(m_wxwindow);
4513 }
4514
4515 void wxWindowGTK::DoThaw()
4516 {
4517 GTKThawWidget(m_widget);
4518 if ( m_wxwindow && m_widget != m_wxwindow )
4519 GTKThawWidget(m_wxwindow);
4520 }