1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/window.cpp
3 // Purpose: wxWindowGTK implementation
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
14 #define XWarpPointer XWARPPOINTER
17 #include "wx/window.h"
22 #include "wx/toplevel.h"
23 #include "wx/dcclient.h"
25 #include "wx/settings.h"
26 #include "wx/msgdlg.h"
31 #include "wx/tooltip.h"
33 #include "wx/fontutil.h"
34 #include "wx/scopeguard.h"
35 #include "wx/sysopt.h"
39 #include "wx/gtk/private.h"
40 #include "wx/gtk/private/win_gtk.h"
41 #include "wx/gtk/private/event.h"
42 using namespace wxGTKImpl
;
46 #include <gdk/gdkkeysyms.h>
47 #if GTK_CHECK_VERSION(3,0,0)
48 #include <gdk/gdkkeysyms-compat.h>
51 // gdk_window_set_composited() is only supported since 2.12
52 #define wxGTK_VERSION_REQUIRED_FOR_COMPOSITING 2,12,0
53 #define wxGTK_HAS_COMPOSITING_SUPPORT GTK_CHECK_VERSION(2,12,0)
55 //-----------------------------------------------------------------------------
56 // documentation on internals
57 //-----------------------------------------------------------------------------
60 I have been asked several times about writing some documentation about
61 the GTK port of wxWidgets, especially its internal structures. Obviously,
62 you cannot understand wxGTK without knowing a little about the GTK, but
63 some more information about what the wxWindow, which is the base class
64 for all other window classes, does seems required as well.
68 What does wxWindow do? It contains the common interface for the following
69 jobs of its descendants:
71 1) Define the rudimentary behaviour common to all window classes, such as
72 resizing, intercepting user input (so as to make it possible to use these
73 events for special purposes in a derived class), window names etc.
75 2) Provide the possibility to contain and manage children, if the derived
76 class is allowed to contain children, which holds true for those window
77 classes which do not display a native GTK widget. To name them, these
78 classes are wxPanel, wxScrolledWindow, wxDialog, wxFrame. The MDI frame-
79 work classes are a special case and are handled a bit differently from
80 the rest. The same holds true for the wxNotebook class.
82 3) Provide the possibility to draw into a client area of a window. This,
83 too, only holds true for classes that do not display a native GTK widget
86 4) Provide the entire mechanism for scrolling widgets. This actual inter-
87 face for this is usually in wxScrolledWindow, but the GTK implementation
90 5) A multitude of helper or extra methods for special purposes, such as
91 Drag'n'Drop, managing validators etc.
93 6) Display a border (sunken, raised, simple or none).
95 Normally one might expect, that one wxWidgets window would always correspond
96 to one GTK widget. Under GTK, there is no such all-round widget that has all
97 the functionality. Moreover, the GTK defines a client area as a different
98 widget from the actual widget you are handling. Last but not least some
99 special classes (e.g. wxFrame) handle different categories of widgets and
100 still have the possibility to draw something in the client area.
101 It was therefore required to write a special purpose GTK widget, that would
102 represent a client area in the sense of wxWidgets capable to do the jobs
103 2), 3) and 4). I have written this class and it resides in win_gtk.c of
106 All windows must have a widget, with which they interact with other under-
107 lying GTK widgets. It is this widget, e.g. that has to be resized etc and
108 the wxWindow class has a member variable called m_widget which holds a
109 pointer to this widget. When the window class represents a GTK native widget,
110 this is (in most cases) the only GTK widget the class manages. E.g. the
111 wxStaticText class handles only a GtkLabel widget a pointer to which you
112 can find in m_widget (defined in wxWindow)
114 When the class has a client area for drawing into and for containing children
115 it has to handle the client area widget (of the type wxPizza, defined in
116 win_gtk.cpp), but there could be any number of widgets, handled by a class.
117 The common rule for all windows is only, that the widget that interacts with
118 the rest of GTK must be referenced in m_widget and all other widgets must be
119 children of this widget on the GTK level. The top-most widget, which also
120 represents the client area, must be in the m_wxwindow field and must be of
123 As I said, the window classes that display a GTK native widget only have
124 one widget, so in the case of e.g. the wxButton class m_widget holds a
125 pointer to a GtkButton widget. But windows with client areas (for drawing
126 and children) have a m_widget field that is a pointer to a GtkScrolled-
127 Window and a m_wxwindow field that is pointer to a wxPizza and this
128 one is (in the GTK sense) a child of the GtkScrolledWindow.
130 If the m_wxwindow field is set, then all input to this widget is inter-
131 cepted and sent to the wxWidgets class. If not, all input to the widget
132 that gets pointed to by m_widget gets intercepted and sent to the class.
136 The design of scrolling in wxWidgets is markedly different from that offered
137 by the GTK itself and therefore we cannot simply take it as it is. In GTK,
138 clicking on a scrollbar belonging to scrolled window will inevitably move
139 the window. In wxWidgets, the scrollbar will only emit an event, send this
140 to (normally) a wxScrolledWindow and that class will call ScrollWindow()
141 which actually moves the window and its sub-windows. Note that wxPizza
142 memorizes how much it has been scrolled but that wxWidgets forgets this
143 so that the two coordinates systems have to be kept in synch. This is done
144 in various places using the pizza->m_scroll_x and pizza->m_scroll_y values.
148 Singularly the most broken code in GTK is the code that is supposed to
149 inform subwindows (child windows) about new positions. Very often, duplicate
150 events are sent without changes in size or position, equally often no
151 events are sent at all (All this is due to a bug in the GtkContainer code
152 which got fixed in GTK 1.2.6). For that reason, wxGTK completely ignores
153 GTK's own system and it simply waits for size events for toplevel windows
154 and then iterates down the respective size events to all window. This has
155 the disadvantage that windows might get size events before the GTK widget
156 actually has the reported size. This doesn't normally pose any problem, but
157 the OpenGL drawing routines rely on correct behaviour. Therefore, I have
158 added the m_nativeSizeEvents flag, which is true only for the OpenGL canvas,
159 i.e. the wxGLCanvas will emit a size event, when (and not before) the X11
160 window that is used for OpenGL output really has that size (as reported by
165 If someone at some point of time feels the immense desire to have a look at,
166 change or attempt to optimise the Refresh() logic, this person will need an
167 intimate understanding of what "draw" and "expose" events are and what
168 they are used for, in particular when used in connection with GTK's
169 own windowless widgets. Beware.
173 Cursors, too, have been a constant source of pleasure. The main difficulty
174 is that a GdkWindow inherits a cursor if the programmer sets a new cursor
175 for the parent. To prevent this from doing too much harm, SetCursor calls
176 GTKUpdateCursor, which will recursively re-set the cursors of all child windows.
177 Also don't forget that cursors (like much else) are connected to GdkWindows,
178 not GtkWidgets and that the "window" field of a GtkWidget might very well
179 point to the GdkWindow of the parent widget (-> "window-less widget") and
180 that the two obviously have very different meanings.
183 //-----------------------------------------------------------------------------
185 //-----------------------------------------------------------------------------
187 // Don't allow event propagation during drag
188 bool g_blockEventsOnDrag
;
189 // Don't allow mouse event propagation during scroll
190 bool g_blockEventsOnScroll
;
191 extern wxCursor g_globalCursor
;
193 // mouse capture state: the window which has it and if the mouse is currently
195 static wxWindowGTK
*g_captureWindow
= NULL
;
196 static bool g_captureWindowHasMouse
= false;
198 // The window that currently has focus:
199 static wxWindowGTK
*gs_currentFocus
= NULL
;
200 // The window that is scheduled to get focus in the next event loop iteration
201 // or NULL if there's no pending focus change:
202 static wxWindowGTK
*gs_pendingFocus
= NULL
;
204 // the window that has deferred focus-out event pending, if any (see
205 // GTKAddDeferredFocusOut() for details)
206 static wxWindowGTK
*gs_deferredFocusOut
= NULL
;
208 // global variables because GTK+ DnD want to have the
209 // mouse event that caused it
210 GdkEvent
*g_lastMouseEvent
= NULL
;
211 int g_lastButtonNumber
= 0;
213 //-----------------------------------------------------------------------------
215 //-----------------------------------------------------------------------------
217 // the trace mask used for the focus debugging messages
218 #define TRACE_FOCUS wxT("focus")
220 //-----------------------------------------------------------------------------
221 // "size_request" of m_widget
222 //-----------------------------------------------------------------------------
226 wxgtk_window_size_request_callback(GtkWidget
* WXUNUSED(widget
),
227 GtkRequisition
*requisition
,
231 win
->GetSize( &w
, &h
);
237 requisition
->height
= h
;
238 requisition
->width
= w
;
242 //-----------------------------------------------------------------------------
243 // "expose_event" of m_wxwindow
244 //-----------------------------------------------------------------------------
248 gtk_window_expose_callback( GtkWidget
*,
249 GdkEventExpose
*gdk_event
,
252 if (gdk_event
->window
== win
->GTKGetDrawingWindow())
254 win
->GetUpdateRegion() = wxRegion( gdk_event
->region
);
255 win
->GtkSendPaintEvents();
257 // Let parent window draw window-less widgets
262 #ifndef __WXUNIVERSAL__
263 //-----------------------------------------------------------------------------
264 // "expose_event" from m_wxwindow->parent, for drawing border
265 //-----------------------------------------------------------------------------
269 expose_event_border(GtkWidget
* widget
, GdkEventExpose
* gdk_event
, wxWindow
* win
)
271 if (gdk_event
->window
!= gtk_widget_get_parent_window(win
->m_wxwindow
))
278 gtk_widget_get_allocation(win
->m_wxwindow
, &alloc
);
279 const int x
= alloc
.x
;
280 const int y
= alloc
.y
;
281 const int w
= alloc
.width
;
282 const int h
= alloc
.height
;
284 if (w
<= 0 || h
<= 0)
287 if (win
->HasFlag(wxBORDER_SIMPLE
))
289 gdk_draw_rectangle(gdk_event
->window
,
290 gtk_widget_get_style(widget
)->black_gc
, false, x
, y
, w
- 1, h
- 1);
294 GtkShadowType shadow
= GTK_SHADOW_IN
;
295 if (win
->HasFlag(wxBORDER_RAISED
))
296 shadow
= GTK_SHADOW_OUT
;
298 // Style detail to use
300 if (win
->m_widget
== win
->m_wxwindow
)
301 // for non-scrollable wxWindows
304 // for scrollable ones
307 // clip rect is required to avoid painting background
308 // over upper left (w,h) of parent window
309 GdkRectangle clipRect
= { x
, y
, w
, h
};
311 gtk_widget_get_style(win
->m_wxwindow
), gdk_event
->window
, GTK_STATE_NORMAL
,
312 shadow
, &clipRect
, wxGTKPrivate::GetEntryWidget(), detail
, x
, y
, w
, h
);
318 //-----------------------------------------------------------------------------
319 // "parent_set" from m_wxwindow
320 //-----------------------------------------------------------------------------
324 parent_set(GtkWidget
* widget
, GtkWidget
* old_parent
, wxWindow
* win
)
328 g_signal_handlers_disconnect_by_func(
329 old_parent
, (void*)expose_event_border
, win
);
331 GtkWidget
* parent
= gtk_widget_get_parent(widget
);
334 g_signal_connect_after(parent
, "expose_event",
335 G_CALLBACK(expose_event_border
), win
);
339 #endif // !__WXUNIVERSAL__
341 //-----------------------------------------------------------------------------
342 // "key_press_event" from any window
343 //-----------------------------------------------------------------------------
345 // set WXTRACE to this to see the key event codes on the console
346 #define TRACE_KEYS wxT("keyevent")
348 // translates an X key symbol to WXK_XXX value
350 // if isChar is true it means that the value returned will be used for EVT_CHAR
351 // event and then we choose the logical WXK_XXX, i.e. '/' for GDK_KP_Divide,
352 // for example, while if it is false it means that the value is going to be
353 // used for KEY_DOWN/UP events and then we translate GDK_KP_Divide to
355 static long wxTranslateKeySymToWXKey(KeySym keysym
, bool isChar
)
361 // Shift, Control and Alt don't generate the CHAR events at all
364 key_code
= isChar
? 0 : WXK_SHIFT
;
368 key_code
= isChar
? 0 : WXK_CONTROL
;
376 key_code
= isChar
? 0 : WXK_ALT
;
379 // neither do the toggle modifies
380 case GDK_Scroll_Lock
:
381 key_code
= isChar
? 0 : WXK_SCROLL
;
385 key_code
= isChar
? 0 : WXK_CAPITAL
;
389 key_code
= isChar
? 0 : WXK_NUMLOCK
;
393 // various other special keys
406 case GDK_ISO_Left_Tab
:
413 key_code
= WXK_RETURN
;
417 key_code
= WXK_CLEAR
;
421 key_code
= WXK_PAUSE
;
425 key_code
= WXK_SELECT
;
429 key_code
= WXK_PRINT
;
433 key_code
= WXK_EXECUTE
;
437 key_code
= WXK_ESCAPE
;
440 // cursor and other extended keyboard keys
442 key_code
= WXK_DELETE
;
458 key_code
= WXK_RIGHT
;
465 case GDK_Prior
: // == GDK_Page_Up
466 key_code
= WXK_PAGEUP
;
469 case GDK_Next
: // == GDK_Page_Down
470 key_code
= WXK_PAGEDOWN
;
482 key_code
= WXK_INSERT
;
497 key_code
= (isChar
? '0' : int(WXK_NUMPAD0
)) + keysym
- GDK_KP_0
;
501 key_code
= isChar
? ' ' : int(WXK_NUMPAD_SPACE
);
505 key_code
= isChar
? WXK_TAB
: WXK_NUMPAD_TAB
;
509 key_code
= isChar
? WXK_RETURN
: WXK_NUMPAD_ENTER
;
513 key_code
= isChar
? WXK_F1
: WXK_NUMPAD_F1
;
517 key_code
= isChar
? WXK_F2
: WXK_NUMPAD_F2
;
521 key_code
= isChar
? WXK_F3
: WXK_NUMPAD_F3
;
525 key_code
= isChar
? WXK_F4
: WXK_NUMPAD_F4
;
529 key_code
= isChar
? WXK_HOME
: WXK_NUMPAD_HOME
;
533 key_code
= isChar
? WXK_LEFT
: WXK_NUMPAD_LEFT
;
537 key_code
= isChar
? WXK_UP
: WXK_NUMPAD_UP
;
541 key_code
= isChar
? WXK_RIGHT
: WXK_NUMPAD_RIGHT
;
545 key_code
= isChar
? WXK_DOWN
: WXK_NUMPAD_DOWN
;
548 case GDK_KP_Prior
: // == GDK_KP_Page_Up
549 key_code
= isChar
? WXK_PAGEUP
: WXK_NUMPAD_PAGEUP
;
552 case GDK_KP_Next
: // == GDK_KP_Page_Down
553 key_code
= isChar
? WXK_PAGEDOWN
: WXK_NUMPAD_PAGEDOWN
;
557 key_code
= isChar
? WXK_END
: WXK_NUMPAD_END
;
561 key_code
= isChar
? WXK_HOME
: WXK_NUMPAD_BEGIN
;
565 key_code
= isChar
? WXK_INSERT
: WXK_NUMPAD_INSERT
;
569 key_code
= isChar
? WXK_DELETE
: WXK_NUMPAD_DELETE
;
573 key_code
= isChar
? '=' : int(WXK_NUMPAD_EQUAL
);
576 case GDK_KP_Multiply
:
577 key_code
= isChar
? '*' : int(WXK_NUMPAD_MULTIPLY
);
581 key_code
= isChar
? '+' : int(WXK_NUMPAD_ADD
);
584 case GDK_KP_Separator
:
585 // FIXME: what is this?
586 key_code
= isChar
? '.' : int(WXK_NUMPAD_SEPARATOR
);
589 case GDK_KP_Subtract
:
590 key_code
= isChar
? '-' : int(WXK_NUMPAD_SUBTRACT
);
594 key_code
= isChar
? '.' : int(WXK_NUMPAD_DECIMAL
);
598 key_code
= isChar
? '/' : int(WXK_NUMPAD_DIVIDE
);
615 key_code
= WXK_F1
+ keysym
- GDK_F1
;
625 static inline bool wxIsAsciiKeysym(KeySym ks
)
630 static void wxFillOtherKeyEventFields(wxKeyEvent
& event
,
632 GdkEventKey
*gdk_event
)
634 event
.SetTimestamp( gdk_event
->time
);
635 event
.SetId(win
->GetId());
637 event
.m_shiftDown
= (gdk_event
->state
& GDK_SHIFT_MASK
) != 0;
638 event
.m_controlDown
= (gdk_event
->state
& GDK_CONTROL_MASK
) != 0;
639 event
.m_altDown
= (gdk_event
->state
& GDK_MOD1_MASK
) != 0;
640 event
.m_metaDown
= (gdk_event
->state
& GDK_META_MASK
) != 0;
642 // Normally we take the state of modifiers directly from the low level GDK
643 // event but unfortunately GDK uses a different convention from MSW for the
644 // key events corresponding to the modifier keys themselves: in it, when
645 // e.g. Shift key is pressed, GDK_SHIFT_MASK is not set while it is set
646 // when Shift is released. Under MSW the situation is exactly reversed and
647 // the modifier corresponding to the key is set when it is pressed and
648 // unset when it is released. To ensure consistent behaviour between
649 // platforms (and because it seems to make slightly more sense, although
650 // arguably both behaviours are reasonable) we follow MSW here.
652 // Final notice: we set the flags to the desired value instead of just
653 // inverting them because they are not set correctly (i.e. in the same way
654 // as for the real events generated by the user) for wxUIActionSimulator-
655 // produced events and it seems better to keep that class code the same
656 // among all platforms and fix the discrepancy here instead of adding
657 // wxGTK-specific code to wxUIActionSimulator.
658 const bool isPress
= gdk_event
->type
== GDK_KEY_PRESS
;
659 switch ( gdk_event
->keyval
)
663 event
.m_shiftDown
= isPress
;
668 event
.m_controlDown
= isPress
;
673 event
.m_altDown
= isPress
;
680 event
.m_metaDown
= isPress
;
684 event
.m_rawCode
= (wxUint32
) gdk_event
->keyval
;
685 event
.m_rawFlags
= gdk_event
->hardware_keycode
;
687 wxGetMousePosition(&event
.m_x
, &event
.m_y
);
688 win
->ScreenToClient(&event
.m_x
, &event
.m_y
);
689 event
.SetEventObject( win
);
694 wxTranslateGTKKeyEventToWx(wxKeyEvent
& event
,
696 GdkEventKey
*gdk_event
)
698 // VZ: it seems that GDK_KEY_RELEASE event doesn't set event->string
699 // but only event->keyval which is quite useless to us, so remember
700 // the last character from GDK_KEY_PRESS and reuse it as last resort
702 // NB: should be MT-safe as we're always called from the main thread only
707 } s_lastKeyPress
= { 0, 0 };
709 KeySym keysym
= gdk_event
->keyval
;
711 wxLogTrace(TRACE_KEYS
, wxT("Key %s event: keysym = %ld"),
712 event
.GetEventType() == wxEVT_KEY_UP
? wxT("release")
716 long key_code
= wxTranslateKeySymToWXKey(keysym
, false /* !isChar */);
720 // do we have the translation or is it a plain ASCII character?
721 if ( (gdk_event
->length
== 1) || wxIsAsciiKeysym(keysym
) )
723 // we should use keysym if it is ASCII as X does some translations
724 // like "I pressed while Control is down" => "Ctrl-I" == "TAB"
725 // which we don't want here (but which we do use for OnChar())
726 if ( !wxIsAsciiKeysym(keysym
) )
728 keysym
= (KeySym
)gdk_event
->string
[0];
731 // we want to always get the same key code when the same key is
732 // pressed regardless of the state of the modifiers, i.e. on a
733 // standard US keyboard pressing '5' or '%' ('5' key with
734 // Shift) should result in the same key code in OnKeyDown():
735 // '5' (although OnChar() will get either '5' or '%').
737 // to do it we first translate keysym to keycode (== scan code)
738 // and then back but always using the lower register
739 Display
*dpy
= (Display
*)wxGetDisplay();
740 KeyCode keycode
= XKeysymToKeycode(dpy
, keysym
);
742 wxLogTrace(TRACE_KEYS
, wxT("\t-> keycode %d"), keycode
);
744 KeySym keysymNormalized
= XKeycodeToKeysym(dpy
, keycode
, 0);
746 // use the normalized, i.e. lower register, keysym if we've
748 key_code
= keysymNormalized
? keysymNormalized
: keysym
;
750 // as explained above, we want to have lower register key codes
751 // normally but for the letter keys we want to have the upper ones
753 // NB: don't use XConvertCase() here, we want to do it for letters
755 key_code
= toupper(key_code
);
757 else // non ASCII key, what to do?
759 // by default, ignore it
762 // but if we have cached information from the last KEY_PRESS
763 if ( gdk_event
->type
== GDK_KEY_RELEASE
)
766 if ( keysym
== s_lastKeyPress
.keysym
)
768 key_code
= s_lastKeyPress
.keycode
;
773 if ( gdk_event
->type
== GDK_KEY_PRESS
)
775 // remember it to be reused for KEY_UP event later
776 s_lastKeyPress
.keysym
= keysym
;
777 s_lastKeyPress
.keycode
= key_code
;
781 wxLogTrace(TRACE_KEYS
, wxT("\t-> wxKeyCode %ld"), key_code
);
783 // sending unknown key events doesn't really make sense
787 event
.m_keyCode
= key_code
;
790 event
.m_uniChar
= gdk_keyval_to_unicode(key_code
? key_code
: keysym
);
791 if ( !event
.m_uniChar
&& event
.m_keyCode
<= WXK_DELETE
)
793 // Set Unicode key code to the ASCII equivalent for compatibility. E.g.
794 // let RETURN generate the key event with both key and Unicode key
796 event
.m_uniChar
= event
.m_keyCode
;
798 #endif // wxUSE_UNICODE
800 // now fill all the other fields
801 wxFillOtherKeyEventFields(event
, win
, gdk_event
);
809 GtkIMContext
*context
;
810 GdkEventKey
*lastKeyEvent
;
814 context
= gtk_im_multicontext_new();
819 g_object_unref (context
);
826 // Send wxEVT_CHAR_HOOK event to the parent of the window and return true only
827 // if it was processed (and not skipped).
828 bool SendCharHookEvent(const wxKeyEvent
& event
, wxWindow
*win
)
830 // wxEVT_CHAR_HOOK must be sent to allow the parent windows (e.g. a dialog
831 // which typically closes when Esc key is pressed in any of its controls)
832 // to handle key events in all of its children unless the mouse is captured
833 // in which case we consider that the keyboard should be "captured" too.
834 if ( !g_captureWindow
)
836 wxKeyEvent
eventCharHook(wxEVT_CHAR_HOOK
, event
);
837 if ( win
->HandleWindowEvent(eventCharHook
)
838 && !event
.IsNextEventAllowed() )
845 // Adjust wxEVT_CHAR event key code fields. This function takes care of two
847 // (a) Ctrl-letter key presses generate key codes in range 1..26
848 // (b) Unicode key codes are same as key codes for the codes in 1..255 range
849 void AdjustCharEventKeyCodes(wxKeyEvent
& event
)
851 const int code
= event
.m_keyCode
;
853 // Check for (a) above.
854 if ( event
.ControlDown() )
856 // We intentionally don't use isupper/lower() here, we really need
857 // ASCII letters only as it doesn't make sense to translate any other
858 // ones into this range which has only 26 slots.
859 if ( code
>= 'a' && code
<= 'z' )
860 event
.m_keyCode
= code
- 'a' + 1;
861 else if ( code
>= 'A' && code
<= 'Z' )
862 event
.m_keyCode
= code
- 'A' + 1;
865 // Adjust the Unicode equivalent in the same way too.
866 if ( event
.m_keyCode
!= code
)
867 event
.m_uniChar
= event
.m_keyCode
;
868 #endif // wxUSE_UNICODE
872 // Check for (b) from above.
874 // FIXME: Should we do it for key codes up to 255?
875 if ( !event
.m_uniChar
&& code
< WXK_DELETE
)
876 event
.m_uniChar
= code
;
877 #endif // wxUSE_UNICODE
880 } // anonymous namespace
884 gtk_window_key_press_callback( GtkWidget
*WXUNUSED(widget
),
885 GdkEventKey
*gdk_event
,
890 if (g_blockEventsOnDrag
)
893 wxKeyEvent
event( wxEVT_KEY_DOWN
);
895 bool return_after_IM
= false;
897 if( wxTranslateGTKKeyEventToWx(event
, win
, gdk_event
) )
899 // Send the CHAR_HOOK event first
900 if ( SendCharHookEvent(event
, win
) )
902 // Don't do anything at all with this event any more.
906 // Emit KEY_DOWN event
907 ret
= win
->HandleWindowEvent( event
);
911 // Return after IM processing as we cannot do
912 // anything with it anyhow.
913 return_after_IM
= true;
916 if (!ret
&& win
->m_imData
)
918 win
->m_imData
->lastKeyEvent
= gdk_event
;
920 // We should let GTK+ IM filter key event first. According to GTK+ 2.0 API
921 // docs, if IM filter returns true, no further processing should be done.
922 // we should send the key_down event anyway.
923 bool intercepted_by_IM
= gtk_im_context_filter_keypress(win
->m_imData
->context
, gdk_event
);
924 win
->m_imData
->lastKeyEvent
= NULL
;
925 if (intercepted_by_IM
)
927 wxLogTrace(TRACE_KEYS
, wxT("Key event intercepted by IM"));
938 wxWindowGTK
*ancestor
= win
;
941 int command
= ancestor
->GetAcceleratorTable()->GetCommand( event
);
944 wxCommandEvent
menu_event( wxEVT_COMMAND_MENU_SELECTED
, command
);
945 ret
= ancestor
->HandleWindowEvent( menu_event
);
949 // if the accelerator wasn't handled as menu event, try
950 // it as button click (for compatibility with other
952 wxCommandEvent
button_event( wxEVT_COMMAND_BUTTON_CLICKED
, command
);
953 ret
= ancestor
->HandleWindowEvent( button_event
);
958 if (ancestor
->IsTopLevel())
960 ancestor
= ancestor
->GetParent();
963 #endif // wxUSE_ACCEL
965 // Only send wxEVT_CHAR event if not processed yet. Thus, ALT-x
966 // will only be sent if it is not in an accelerator table.
970 KeySym keysym
= gdk_event
->keyval
;
971 // Find key code for EVT_CHAR and EVT_CHAR_HOOK events
972 key_code
= wxTranslateKeySymToWXKey(keysym
, true /* isChar */);
975 if ( wxIsAsciiKeysym(keysym
) )
978 key_code
= (unsigned char)keysym
;
980 // gdk_event->string is actually deprecated
981 else if ( gdk_event
->length
== 1 )
983 key_code
= (unsigned char)gdk_event
->string
[0];
989 wxKeyEvent
eventChar(wxEVT_CHAR
, event
);
991 wxLogTrace(TRACE_KEYS
, wxT("Char event: %ld"), key_code
);
993 eventChar
.m_keyCode
= key_code
;
995 AdjustCharEventKeyCodes(eventChar
);
997 ret
= win
->HandleWindowEvent(eventChar
);
1007 gtk_wxwindow_commit_cb (GtkIMContext
* WXUNUSED(context
),
1011 wxKeyEvent
event( wxEVT_CHAR
);
1013 // take modifiers, cursor position, timestamp etc. from the last
1014 // key_press_event that was fed into Input Method:
1015 if (window
->m_imData
->lastKeyEvent
)
1017 wxFillOtherKeyEventFields(event
,
1018 window
, window
->m_imData
->lastKeyEvent
);
1022 event
.SetEventObject( window
);
1025 const wxString
data(wxGTK_CONV_BACK_SYS(str
));
1029 for( wxString::const_iterator pstr
= data
.begin(); pstr
!= data
.end(); ++pstr
)
1032 event
.m_uniChar
= *pstr
;
1033 // Backward compatible for ISO-8859-1
1034 event
.m_keyCode
= *pstr
< 256 ? event
.m_uniChar
: 0;
1035 wxLogTrace(TRACE_KEYS
, wxT("IM sent character '%c'"), event
.m_uniChar
);
1037 event
.m_keyCode
= (char)*pstr
;
1038 #endif // wxUSE_UNICODE
1040 AdjustCharEventKeyCodes(event
);
1042 window
->HandleWindowEvent(event
);
1048 //-----------------------------------------------------------------------------
1049 // "key_release_event" from any window
1050 //-----------------------------------------------------------------------------
1054 gtk_window_key_release_callback( GtkWidget
* WXUNUSED(widget
),
1055 GdkEventKey
*gdk_event
,
1061 if (g_blockEventsOnDrag
)
1064 wxKeyEvent
event( wxEVT_KEY_UP
);
1065 if ( !wxTranslateGTKKeyEventToWx(event
, win
, gdk_event
) )
1067 // unknown key pressed, ignore (the event would be useless anyhow)
1071 return win
->GTKProcessEvent(event
);
1075 //-----------------------------------------------------------------------------
1076 // key and mouse events, after, from m_widget
1077 //-----------------------------------------------------------------------------
1080 static gboolean
key_and_mouse_event_after(GtkWidget
* widget
, GdkEventKey
*, wxWindow
*)
1082 // If a widget does not handle a key or mouse event, GTK+ sends it up the
1083 // parent chain until it is handled. These events are not supposed to
1084 // propagate in wxWidgets, so prevent it unless widget is in a native
1086 return WX_IS_PIZZA(gtk_widget_get_parent(widget
));
1090 // ============================================================================
1092 // ============================================================================
1094 // ----------------------------------------------------------------------------
1095 // mouse event processing helpers
1096 // ----------------------------------------------------------------------------
1098 static void AdjustEventButtonState(wxMouseEvent
& event
)
1100 // GDK reports the old state of the button for a button press event, but
1101 // for compatibility with MSW and common sense we want m_leftDown be TRUE
1102 // for a LEFT_DOWN event, not FALSE, so we will invert
1103 // left/right/middleDown for the corresponding click events
1105 if ((event
.GetEventType() == wxEVT_LEFT_DOWN
) ||
1106 (event
.GetEventType() == wxEVT_LEFT_DCLICK
) ||
1107 (event
.GetEventType() == wxEVT_LEFT_UP
))
1109 event
.m_leftDown
= !event
.m_leftDown
;
1113 if ((event
.GetEventType() == wxEVT_MIDDLE_DOWN
) ||
1114 (event
.GetEventType() == wxEVT_MIDDLE_DCLICK
) ||
1115 (event
.GetEventType() == wxEVT_MIDDLE_UP
))
1117 event
.m_middleDown
= !event
.m_middleDown
;
1121 if ((event
.GetEventType() == wxEVT_RIGHT_DOWN
) ||
1122 (event
.GetEventType() == wxEVT_RIGHT_DCLICK
) ||
1123 (event
.GetEventType() == wxEVT_RIGHT_UP
))
1125 event
.m_rightDown
= !event
.m_rightDown
;
1129 if ((event
.GetEventType() == wxEVT_AUX1_DOWN
) ||
1130 (event
.GetEventType() == wxEVT_AUX1_DCLICK
))
1132 event
.m_aux1Down
= true;
1136 if ((event
.GetEventType() == wxEVT_AUX2_DOWN
) ||
1137 (event
.GetEventType() == wxEVT_AUX2_DCLICK
))
1139 event
.m_aux2Down
= true;
1144 // find the window to send the mouse event to
1146 wxWindowGTK
*FindWindowForMouseEvent(wxWindowGTK
*win
, wxCoord
& x
, wxCoord
& y
)
1151 if (win
->m_wxwindow
)
1153 wxPizza
* pizza
= WX_PIZZA(win
->m_wxwindow
);
1154 xx
+= pizza
->m_scroll_x
;
1155 yy
+= pizza
->m_scroll_y
;
1158 wxWindowList::compatibility_iterator node
= win
->GetChildren().GetFirst();
1161 wxWindowGTK
*child
= node
->GetData();
1163 node
= node
->GetNext();
1164 if (!child
->IsShown())
1167 if (child
->GTKIsTransparentForMouse())
1169 // wxStaticBox is transparent in the box itself
1170 int xx1
= child
->m_x
;
1171 int yy1
= child
->m_y
;
1172 int xx2
= child
->m_x
+ child
->m_width
;
1173 int yy2
= child
->m_y
+ child
->m_height
;
1176 if (((xx
>= xx1
) && (xx
<= xx1
+10) && (yy
>= yy1
) && (yy
<= yy2
)) ||
1178 ((xx
>= xx2
-10) && (xx
<= xx2
) && (yy
>= yy1
) && (yy
<= yy2
)) ||
1180 ((xx
>= xx1
) && (xx
<= xx2
) && (yy
>= yy1
) && (yy
<= yy1
+10)) ||
1182 ((xx
>= xx1
) && (xx
<= xx2
) && (yy
>= yy2
-1) && (yy
<= yy2
)))
1193 if ((child
->m_wxwindow
== NULL
) &&
1194 win
->IsClientAreaChild(child
) &&
1195 (child
->m_x
<= xx
) &&
1196 (child
->m_y
<= yy
) &&
1197 (child
->m_x
+child
->m_width
>= xx
) &&
1198 (child
->m_y
+child
->m_height
>= yy
))
1211 // ----------------------------------------------------------------------------
1212 // common event handlers helpers
1213 // ----------------------------------------------------------------------------
1215 bool wxWindowGTK::GTKProcessEvent(wxEvent
& event
) const
1217 // nothing special at this level
1218 return HandleWindowEvent(event
);
1221 bool wxWindowGTK::GTKShouldIgnoreEvent() const
1223 return !m_hasVMT
|| g_blockEventsOnDrag
;
1226 int wxWindowGTK::GTKCallbackCommonPrologue(GdkEventAny
*event
) const
1230 if (g_blockEventsOnDrag
)
1232 if (g_blockEventsOnScroll
)
1235 if (!GTKIsOwnWindow(event
->window
))
1241 // overloads for all GDK event types we use here: we need to have this as
1242 // GdkEventXXX can't be implicitly cast to GdkEventAny even if it, in fact,
1243 // derives from it in the sense that the structs have the same layout
1244 #define wxDEFINE_COMMON_PROLOGUE_OVERLOAD(T) \
1245 static int wxGtkCallbackCommonPrologue(T *event, wxWindowGTK *win) \
1247 return win->GTKCallbackCommonPrologue((GdkEventAny *)event); \
1250 wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventButton
)
1251 wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventMotion
)
1252 wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventCrossing
)
1254 #undef wxDEFINE_COMMON_PROLOGUE_OVERLOAD
1256 #define wxCOMMON_CALLBACK_PROLOGUE(event, win) \
1257 const int rc = wxGtkCallbackCommonPrologue(event, win); \
1261 // all event handlers must have C linkage as they're called from GTK+ C code
1265 //-----------------------------------------------------------------------------
1266 // "button_press_event"
1267 //-----------------------------------------------------------------------------
1270 gtk_window_button_press_callback( GtkWidget
*widget
,
1271 GdkEventButton
*gdk_event
,
1274 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1276 g_lastButtonNumber
= gdk_event
->button
;
1278 // GDK sends surplus button down events
1279 // before a double click event. We
1280 // need to filter these out.
1281 if ((gdk_event
->type
== GDK_BUTTON_PRESS
) && (win
->m_wxwindow
))
1283 GdkEvent
*peek_event
= gdk_event_peek();
1286 if ((peek_event
->type
== GDK_2BUTTON_PRESS
) ||
1287 (peek_event
->type
== GDK_3BUTTON_PRESS
))
1289 gdk_event_free( peek_event
);
1294 gdk_event_free( peek_event
);
1299 wxEventType event_type
= wxEVT_NULL
;
1301 if ( gdk_event
->type
== GDK_2BUTTON_PRESS
&&
1302 gdk_event
->button
>= 1 && gdk_event
->button
<= 3 )
1304 // Reset GDK internal timestamp variables in order to disable GDK
1305 // triple click events. GDK will then next time believe no button has
1306 // been clicked just before, and send a normal button click event.
1307 GdkDisplay
* display
= gtk_widget_get_display (widget
);
1308 display
->button_click_time
[1] = 0;
1309 display
->button_click_time
[0] = 0;
1312 if (gdk_event
->button
== 1)
1314 // note that GDK generates triple click events which are not supported
1315 // by wxWidgets but still have to be passed to the app as otherwise
1316 // clicks would simply go missing
1317 switch (gdk_event
->type
)
1319 // we shouldn't get triple clicks at all for GTK2 because we
1320 // suppress them artificially using the code above but we still
1321 // should map them to something for GTK1 and not just ignore them
1322 // as this would lose clicks
1323 case GDK_3BUTTON_PRESS
: // we could also map this to DCLICK...
1324 case GDK_BUTTON_PRESS
:
1325 event_type
= wxEVT_LEFT_DOWN
;
1328 case GDK_2BUTTON_PRESS
:
1329 event_type
= wxEVT_LEFT_DCLICK
;
1333 // just to silence gcc warnings
1337 else if (gdk_event
->button
== 2)
1339 switch (gdk_event
->type
)
1341 case GDK_3BUTTON_PRESS
:
1342 case GDK_BUTTON_PRESS
:
1343 event_type
= wxEVT_MIDDLE_DOWN
;
1346 case GDK_2BUTTON_PRESS
:
1347 event_type
= wxEVT_MIDDLE_DCLICK
;
1354 else if (gdk_event
->button
== 3)
1356 switch (gdk_event
->type
)
1358 case GDK_3BUTTON_PRESS
:
1359 case GDK_BUTTON_PRESS
:
1360 event_type
= wxEVT_RIGHT_DOWN
;
1363 case GDK_2BUTTON_PRESS
:
1364 event_type
= wxEVT_RIGHT_DCLICK
;
1372 else if (gdk_event
->button
== 8)
1374 switch (gdk_event
->type
)
1376 case GDK_3BUTTON_PRESS
:
1377 case GDK_BUTTON_PRESS
:
1378 event_type
= wxEVT_AUX1_DOWN
;
1381 case GDK_2BUTTON_PRESS
:
1382 event_type
= wxEVT_AUX1_DCLICK
;
1390 else if (gdk_event
->button
== 9)
1392 switch (gdk_event
->type
)
1394 case GDK_3BUTTON_PRESS
:
1395 case GDK_BUTTON_PRESS
:
1396 event_type
= wxEVT_AUX2_DOWN
;
1399 case GDK_2BUTTON_PRESS
:
1400 event_type
= wxEVT_AUX2_DCLICK
;
1408 if ( event_type
== wxEVT_NULL
)
1410 // unknown mouse button or click type
1414 g_lastMouseEvent
= (GdkEvent
*) gdk_event
;
1416 wxMouseEvent
event( event_type
);
1417 InitMouseEvent( win
, event
, gdk_event
);
1419 AdjustEventButtonState(event
);
1421 // find the correct window to send the event to: it may be a different one
1422 // from the one which got it at GTK+ level because some controls don't have
1423 // their own X window and thus cannot get any events.
1424 if ( !g_captureWindow
)
1425 win
= FindWindowForMouseEvent(win
, event
.m_x
, event
.m_y
);
1427 // reset the event object and id in case win changed.
1428 event
.SetEventObject( win
);
1429 event
.SetId( win
->GetId() );
1431 bool ret
= win
->GTKProcessEvent( event
);
1432 g_lastMouseEvent
= NULL
;
1436 if ((event_type
== wxEVT_LEFT_DOWN
) && !win
->IsOfStandardClass() &&
1437 (gs_currentFocus
!= win
) /* && win->IsFocusable() */)
1442 if (event_type
== wxEVT_RIGHT_DOWN
)
1444 // generate a "context menu" event: this is similar to right mouse
1445 // click under many GUIs except that it is generated differently
1446 // (right up under MSW, ctrl-click under Mac, right down here) and
1448 // (a) it's a command event and so is propagated to the parent
1449 // (b) under some ports it can be generated from kbd too
1450 // (c) it uses screen coords (because of (a))
1451 wxContextMenuEvent
evtCtx(
1454 win
->ClientToScreen(event
.GetPosition()));
1455 evtCtx
.SetEventObject(win
);
1456 return win
->GTKProcessEvent(evtCtx
);
1462 //-----------------------------------------------------------------------------
1463 // "button_release_event"
1464 //-----------------------------------------------------------------------------
1467 gtk_window_button_release_callback( GtkWidget
*WXUNUSED(widget
),
1468 GdkEventButton
*gdk_event
,
1471 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1473 g_lastButtonNumber
= 0;
1475 wxEventType event_type
= wxEVT_NULL
;
1477 switch (gdk_event
->button
)
1480 event_type
= wxEVT_LEFT_UP
;
1484 event_type
= wxEVT_MIDDLE_UP
;
1488 event_type
= wxEVT_RIGHT_UP
;
1492 event_type
= wxEVT_AUX1_UP
;
1496 event_type
= wxEVT_AUX2_UP
;
1500 // unknown button, don't process
1504 g_lastMouseEvent
= (GdkEvent
*) gdk_event
;
1506 wxMouseEvent
event( event_type
);
1507 InitMouseEvent( win
, event
, gdk_event
);
1509 AdjustEventButtonState(event
);
1511 if ( !g_captureWindow
)
1512 win
= FindWindowForMouseEvent(win
, event
.m_x
, event
.m_y
);
1514 // reset the event object and id in case win changed.
1515 event
.SetEventObject( win
);
1516 event
.SetId( win
->GetId() );
1518 bool ret
= win
->GTKProcessEvent(event
);
1520 g_lastMouseEvent
= NULL
;
1525 //-----------------------------------------------------------------------------
1526 // "motion_notify_event"
1527 //-----------------------------------------------------------------------------
1530 gtk_window_motion_notify_callback( GtkWidget
* WXUNUSED(widget
),
1531 GdkEventMotion
*gdk_event
,
1534 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1536 if (gdk_event
->is_hint
)
1540 GdkModifierType state
;
1541 gdk_window_get_pointer(gdk_event
->window
, &x
, &y
, &state
);
1546 g_lastMouseEvent
= (GdkEvent
*) gdk_event
;
1548 wxMouseEvent
event( wxEVT_MOTION
);
1549 InitMouseEvent(win
, event
, gdk_event
);
1551 if ( g_captureWindow
)
1553 // synthesise a mouse enter or leave event if needed
1554 GdkWindow
*winUnderMouse
= gdk_window_at_pointer(NULL
, NULL
);
1555 // This seems to be necessary and actually been added to
1556 // GDK itself in version 2.0.X
1559 bool hasMouse
= winUnderMouse
== gdk_event
->window
;
1560 if ( hasMouse
!= g_captureWindowHasMouse
)
1562 // the mouse changed window
1563 g_captureWindowHasMouse
= hasMouse
;
1565 wxMouseEvent
eventM(g_captureWindowHasMouse
? wxEVT_ENTER_WINDOW
1566 : wxEVT_LEAVE_WINDOW
);
1567 InitMouseEvent(win
, eventM
, gdk_event
);
1568 eventM
.SetEventObject(win
);
1569 win
->GTKProcessEvent(eventM
);
1574 win
= FindWindowForMouseEvent(win
, event
.m_x
, event
.m_y
);
1576 // reset the event object and id in case win changed.
1577 event
.SetEventObject( win
);
1578 event
.SetId( win
->GetId() );
1581 if ( !g_captureWindow
)
1583 wxSetCursorEvent
cevent( event
.m_x
, event
.m_y
);
1584 if (win
->GTKProcessEvent( cevent
))
1586 win
->SetCursor( cevent
.GetCursor() );
1590 bool ret
= win
->GTKProcessEvent(event
);
1592 g_lastMouseEvent
= NULL
;
1597 //-----------------------------------------------------------------------------
1598 // "scroll_event" (mouse wheel event)
1599 //-----------------------------------------------------------------------------
1602 window_scroll_event_hscrollbar(GtkWidget
*, GdkEventScroll
* gdk_event
, wxWindow
* win
)
1604 if (gdk_event
->direction
!= GDK_SCROLL_LEFT
&&
1605 gdk_event
->direction
!= GDK_SCROLL_RIGHT
)
1610 GtkRange
*range
= win
->m_scrollBar
[wxWindow::ScrollDir_Horz
];
1612 if (range
&& gtk_widget_get_visible(GTK_WIDGET(range
)))
1614 GtkAdjustment
* adj
= gtk_range_get_adjustment(range
);
1615 double delta
= gtk_adjustment_get_step_increment(adj
) * 3;
1616 if (gdk_event
->direction
== GDK_SCROLL_LEFT
)
1619 gtk_range_set_value(range
, gtk_adjustment_get_value(adj
) + delta
);
1628 window_scroll_event(GtkWidget
*, GdkEventScroll
* gdk_event
, wxWindow
* win
)
1630 if (gdk_event
->direction
!= GDK_SCROLL_UP
&&
1631 gdk_event
->direction
!= GDK_SCROLL_DOWN
)
1636 wxMouseEvent
event(wxEVT_MOUSEWHEEL
);
1637 InitMouseEvent(win
, event
, gdk_event
);
1639 // FIXME: Get these values from GTK or GDK
1640 event
.m_linesPerAction
= 3;
1641 event
.m_wheelDelta
= 120;
1642 if (gdk_event
->direction
== GDK_SCROLL_UP
)
1643 event
.m_wheelRotation
= 120;
1645 event
.m_wheelRotation
= -120;
1647 if (win
->GTKProcessEvent(event
))
1650 GtkRange
*range
= win
->m_scrollBar
[wxWindow::ScrollDir_Vert
];
1652 if (range
&& gtk_widget_get_visible(GTK_WIDGET(range
)))
1654 GtkAdjustment
* adj
= gtk_range_get_adjustment(range
);
1655 double delta
= gtk_adjustment_get_step_increment(adj
) * 3;
1656 if (gdk_event
->direction
== GDK_SCROLL_UP
)
1659 gtk_range_set_value(range
, gtk_adjustment_get_value(adj
) + delta
);
1667 //-----------------------------------------------------------------------------
1669 //-----------------------------------------------------------------------------
1671 static gboolean
wxgtk_window_popup_menu_callback(GtkWidget
*, wxWindowGTK
* win
)
1673 wxContextMenuEvent
event(wxEVT_CONTEXT_MENU
, win
->GetId(), wxPoint(-1, -1));
1674 event
.SetEventObject(win
);
1675 return win
->GTKProcessEvent(event
);
1678 //-----------------------------------------------------------------------------
1680 //-----------------------------------------------------------------------------
1683 gtk_window_focus_in_callback( GtkWidget
* WXUNUSED(widget
),
1684 GdkEventFocus
*WXUNUSED(event
),
1687 return win
->GTKHandleFocusIn();
1690 //-----------------------------------------------------------------------------
1691 // "focus_out_event"
1692 //-----------------------------------------------------------------------------
1695 gtk_window_focus_out_callback( GtkWidget
* WXUNUSED(widget
),
1696 GdkEventFocus
* WXUNUSED(gdk_event
),
1699 return win
->GTKHandleFocusOut();
1702 //-----------------------------------------------------------------------------
1704 //-----------------------------------------------------------------------------
1707 wx_window_focus_callback(GtkWidget
*widget
,
1708 GtkDirectionType
WXUNUSED(direction
),
1711 // the default handler for focus signal in GtkScrolledWindow sets
1712 // focus to the window itself even if it doesn't accept focus, i.e. has no
1713 // GTK_CAN_FOCUS in its style -- work around this by forcibly preventing
1714 // the signal from reaching gtk_scrolled_window_focus() if we don't have
1715 // any children which might accept focus (we know we don't accept the focus
1716 // ourselves as this signal is only connected in this case)
1717 if ( win
->GetChildren().empty() )
1718 g_signal_stop_emission_by_name(widget
, "focus");
1720 // we didn't change the focus
1724 //-----------------------------------------------------------------------------
1725 // "enter_notify_event"
1726 //-----------------------------------------------------------------------------
1729 gtk_window_enter_callback( GtkWidget
*widget
,
1730 GdkEventCrossing
*gdk_event
,
1733 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1735 // Event was emitted after a grab
1736 if (gdk_event
->mode
!= GDK_CROSSING_NORMAL
) return FALSE
;
1740 GdkModifierType state
= (GdkModifierType
)0;
1742 gdk_window_get_pointer(gtk_widget_get_window(widget
), &x
, &y
, &state
);
1744 wxMouseEvent
event( wxEVT_ENTER_WINDOW
);
1745 InitMouseEvent(win
, event
, gdk_event
);
1746 wxPoint pt
= win
->GetClientAreaOrigin();
1747 event
.m_x
= x
+ pt
.x
;
1748 event
.m_y
= y
+ pt
.y
;
1750 if ( !g_captureWindow
)
1752 wxSetCursorEvent
cevent( event
.m_x
, event
.m_y
);
1753 if (win
->GTKProcessEvent( cevent
))
1755 win
->SetCursor( cevent
.GetCursor() );
1759 return win
->GTKProcessEvent(event
);
1762 //-----------------------------------------------------------------------------
1763 // "leave_notify_event"
1764 //-----------------------------------------------------------------------------
1767 gtk_window_leave_callback( GtkWidget
*widget
,
1768 GdkEventCrossing
*gdk_event
,
1771 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1773 // Event was emitted after an ungrab
1774 if (gdk_event
->mode
!= GDK_CROSSING_NORMAL
) return FALSE
;
1776 wxMouseEvent
event( wxEVT_LEAVE_WINDOW
);
1780 GdkModifierType state
= (GdkModifierType
)0;
1782 gdk_window_get_pointer(gtk_widget_get_window(widget
), &x
, &y
, &state
);
1784 InitMouseEvent(win
, event
, gdk_event
);
1786 return win
->GTKProcessEvent(event
);
1789 //-----------------------------------------------------------------------------
1790 // "value_changed" from scrollbar
1791 //-----------------------------------------------------------------------------
1794 gtk_scrollbar_value_changed(GtkRange
* range
, wxWindow
* win
)
1796 wxEventType eventType
= win
->GTKGetScrollEventType(range
);
1797 if (eventType
!= wxEVT_NULL
)
1799 // Convert scroll event type to scrollwin event type
1800 eventType
+= wxEVT_SCROLLWIN_TOP
- wxEVT_SCROLL_TOP
;
1802 // find the scrollbar which generated the event
1803 wxWindowGTK::ScrollDir dir
= win
->ScrollDirFromRange(range
);
1805 // generate the corresponding wx event
1806 const int orient
= wxWindow::OrientFromScrollDir(dir
);
1807 wxScrollWinEvent
event(eventType
, win
->GetScrollPos(orient
), orient
);
1808 event
.SetEventObject(win
);
1810 win
->GTKProcessEvent(event
);
1814 //-----------------------------------------------------------------------------
1815 // "button_press_event" from scrollbar
1816 //-----------------------------------------------------------------------------
1819 gtk_scrollbar_button_press_event(GtkRange
*, GdkEventButton
*, wxWindow
* win
)
1821 g_blockEventsOnScroll
= true;
1822 win
->m_mouseButtonDown
= true;
1827 //-----------------------------------------------------------------------------
1828 // "event_after" from scrollbar
1829 //-----------------------------------------------------------------------------
1832 gtk_scrollbar_event_after(GtkRange
* range
, GdkEvent
* event
, wxWindow
* win
)
1834 if (event
->type
== GDK_BUTTON_RELEASE
)
1836 g_signal_handlers_block_by_func(range
, (void*)gtk_scrollbar_event_after
, win
);
1838 const int orient
= wxWindow::OrientFromScrollDir(
1839 win
->ScrollDirFromRange(range
));
1840 wxScrollWinEvent
evt(wxEVT_SCROLLWIN_THUMBRELEASE
,
1841 win
->GetScrollPos(orient
), orient
);
1842 evt
.SetEventObject(win
);
1843 win
->GTKProcessEvent(evt
);
1847 //-----------------------------------------------------------------------------
1848 // "button_release_event" from scrollbar
1849 //-----------------------------------------------------------------------------
1852 gtk_scrollbar_button_release_event(GtkRange
* range
, GdkEventButton
*, wxWindow
* win
)
1854 g_blockEventsOnScroll
= false;
1855 win
->m_mouseButtonDown
= false;
1856 // If thumb tracking
1857 if (win
->m_isScrolling
)
1859 win
->m_isScrolling
= false;
1860 // Hook up handler to send thumb release event after this emission is finished.
1861 // To allow setting scroll position from event handler, sending event must
1862 // be deferred until after the GtkRange handler for this signal has run
1863 g_signal_handlers_unblock_by_func(range
, (void*)gtk_scrollbar_event_after
, win
);
1869 //-----------------------------------------------------------------------------
1870 // "realize" from m_widget
1871 //-----------------------------------------------------------------------------
1874 gtk_window_realized_callback(GtkWidget
* WXUNUSED(widget
), wxWindowGTK
* win
)
1876 win
->GTKHandleRealized();
1879 //-----------------------------------------------------------------------------
1880 // "unrealize" from m_wxwindow
1881 //-----------------------------------------------------------------------------
1883 static void unrealize(GtkWidget
*, wxWindowGTK
* win
)
1886 gtk_im_context_set_client_window(win
->m_imData
->context
, NULL
);
1889 //-----------------------------------------------------------------------------
1890 // "size_allocate" from m_wxwindow or m_widget
1891 //-----------------------------------------------------------------------------
1894 size_allocate(GtkWidget
*, GtkAllocation
* alloc
, wxWindow
* win
)
1896 int w
= alloc
->width
;
1897 int h
= alloc
->height
;
1898 if (win
->m_wxwindow
)
1900 int border_x
, border_y
;
1901 WX_PIZZA(win
->m_wxwindow
)->get_border_widths(border_x
, border_y
);
1907 if (win
->m_oldClientWidth
!= w
|| win
->m_oldClientHeight
!= h
)
1909 win
->m_oldClientWidth
= w
;
1910 win
->m_oldClientHeight
= h
;
1911 // this callback can be connected to m_wxwindow,
1912 // so always get size from m_widget->allocation
1914 gtk_widget_get_allocation(win
->m_widget
, &a
);
1915 win
->m_width
= a
.width
;
1916 win
->m_height
= a
.height
;
1917 if (!win
->m_nativeSizeEvent
)
1919 wxSizeEvent
event(win
->GetSize(), win
->GetId());
1920 event
.SetEventObject(win
);
1921 win
->GTKProcessEvent(event
);
1926 //-----------------------------------------------------------------------------
1928 //-----------------------------------------------------------------------------
1930 #if GTK_CHECK_VERSION(2, 8, 0)
1932 gtk_window_grab_broken( GtkWidget
*,
1933 GdkEventGrabBroken
*event
,
1936 // Mouse capture has been lost involuntarily, notify the application
1937 if(!event
->keyboard
&& wxWindow::GetCapture() == win
)
1939 wxMouseCaptureLostEvent
evt( win
->GetId() );
1940 evt
.SetEventObject( win
);
1941 win
->HandleWindowEvent( evt
);
1947 //-----------------------------------------------------------------------------
1949 //-----------------------------------------------------------------------------
1952 void gtk_window_style_set_callback( GtkWidget
*WXUNUSED(widget
),
1953 GtkStyle
*previous_style
,
1956 if (win
&& previous_style
)
1958 if (win
->IsTopLevel())
1960 wxSysColourChangedEvent event
;
1961 event
.SetEventObject(win
);
1962 win
->GTKProcessEvent(event
);
1966 // Border width could change, which will change client size.
1967 // Make sure size event occurs for this
1968 win
->m_oldClientWidth
= 0;
1975 void wxWindowGTK::GTKHandleRealized()
1979 gtk_im_context_set_client_window
1982 m_wxwindow
? GTKGetDrawingWindow()
1983 : gtk_widget_get_window(m_widget
)
1987 // Use composited window if background is transparent, if supported.
1988 if (m_backgroundStyle
== wxBG_STYLE_TRANSPARENT
)
1990 #if wxGTK_HAS_COMPOSITING_SUPPORT
1991 if (IsTransparentBackgroundSupported())
1993 GdkWindow
* const window
= GTKGetDrawingWindow();
1995 gdk_window_set_composited(window
, true);
1998 #endif // wxGTK_HAS_COMPOSITING_SUPPORT
2000 // We revert to erase mode if transparency is not supported
2001 m_backgroundStyle
= wxBG_STYLE_ERASE
;
2006 // We cannot set colours and fonts before the widget
2007 // been realized, so we do this directly after realization
2008 // or otherwise in idle time
2010 if (m_needsStyleChange
)
2012 SetBackgroundStyle(GetBackgroundStyle());
2013 m_needsStyleChange
= false;
2016 wxWindowCreateEvent
event(static_cast<wxWindow
*>(this));
2017 event
.SetEventObject( this );
2018 GTKProcessEvent( event
);
2020 GTKUpdateCursor(true, false);
2023 // ----------------------------------------------------------------------------
2024 // this wxWindowBase function is implemented here (in platform-specific file)
2025 // because it is static and so couldn't be made virtual
2026 // ----------------------------------------------------------------------------
2028 wxWindow
*wxWindowBase::DoFindFocus()
2030 wxWindowGTK
*focus
= gs_pendingFocus
? gs_pendingFocus
: gs_currentFocus
;
2031 // the cast is necessary when we compile in wxUniversal mode
2032 return static_cast<wxWindow
*>(focus
);
2035 void wxWindowGTK::AddChildGTK(wxWindowGTK
* child
)
2037 wxASSERT_MSG(m_wxwindow
, "Cannot add a child to a window without a client area");
2039 // the window might have been scrolled already, we
2040 // have to adapt the position
2041 wxPizza
* pizza
= WX_PIZZA(m_wxwindow
);
2042 child
->m_x
+= pizza
->m_scroll_x
;
2043 child
->m_y
+= pizza
->m_scroll_y
;
2045 gtk_widget_set_size_request(
2046 child
->m_widget
, child
->m_width
, child
->m_height
);
2047 pizza
->put(child
->m_widget
, child
->m_x
, child
->m_y
);
2050 //-----------------------------------------------------------------------------
2052 //-----------------------------------------------------------------------------
2054 wxWindow
*wxGetActiveWindow()
2056 return wxWindow::FindFocus();
2060 wxMouseState
wxGetMouseState()
2066 GdkModifierType mask
;
2068 gdk_window_get_pointer(NULL
, &x
, &y
, &mask
);
2072 ms
.SetLeftDown((mask
& GDK_BUTTON1_MASK
) != 0);
2073 ms
.SetMiddleDown((mask
& GDK_BUTTON2_MASK
) != 0);
2074 ms
.SetRightDown((mask
& GDK_BUTTON3_MASK
) != 0);
2075 // see the comment in InitMouseEvent()
2076 ms
.SetAux1Down((mask
& GDK_BUTTON4_MASK
) != 0);
2077 ms
.SetAux2Down((mask
& GDK_BUTTON5_MASK
) != 0);
2079 ms
.SetControlDown((mask
& GDK_CONTROL_MASK
) != 0);
2080 ms
.SetShiftDown((mask
& GDK_SHIFT_MASK
) != 0);
2081 ms
.SetAltDown((mask
& GDK_MOD1_MASK
) != 0);
2082 ms
.SetMetaDown((mask
& GDK_META_MASK
) != 0);
2087 //-----------------------------------------------------------------------------
2089 //-----------------------------------------------------------------------------
2091 // in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu()
2093 #ifdef __WXUNIVERSAL__
2094 IMPLEMENT_ABSTRACT_CLASS(wxWindowGTK
, wxWindowBase
)
2095 #endif // __WXUNIVERSAL__
2097 void wxWindowGTK::Init()
2102 m_focusWidget
= NULL
;
2112 m_showOnIdle
= false;
2115 m_nativeSizeEvent
= false;
2117 m_isScrolling
= false;
2118 m_mouseButtonDown
= false;
2120 // initialize scrolling stuff
2121 for ( int dir
= 0; dir
< ScrollDir_Max
; dir
++ )
2123 m_scrollBar
[dir
] = NULL
;
2124 m_scrollPos
[dir
] = 0;
2128 m_oldClientHeight
= 0;
2130 m_clipPaintRegion
= false;
2132 m_needsStyleChange
= false;
2134 m_cursor
= *wxSTANDARD_CURSOR
;
2137 m_dirtyTabOrder
= false;
2140 wxWindowGTK::wxWindowGTK()
2145 wxWindowGTK::wxWindowGTK( wxWindow
*parent
,
2150 const wxString
&name
)
2154 Create( parent
, id
, pos
, size
, style
, name
);
2157 bool wxWindowGTK::Create( wxWindow
*parent
,
2162 const wxString
&name
)
2164 // Get default border
2165 wxBorder border
= GetBorder(style
);
2167 style
&= ~wxBORDER_MASK
;
2170 if (!PreCreation( parent
, pos
, size
) ||
2171 !CreateBase( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
2173 wxFAIL_MSG( wxT("wxWindowGTK creation failed") );
2177 // We should accept the native look
2179 GtkScrolledWindowClass
*scroll_class
= GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT_GET_CLASS(m_widget
) );
2180 scroll_class
->scrollbar_spacing
= 0;
2184 m_wxwindow
= wxPizza::New(m_windowStyle
);
2185 #ifndef __WXUNIVERSAL__
2186 if (HasFlag(wxPizza::BORDER_STYLES
))
2188 g_signal_connect(m_wxwindow
, "parent_set",
2189 G_CALLBACK(parent_set
), this);
2192 if (!HasFlag(wxHSCROLL
) && !HasFlag(wxVSCROLL
))
2193 m_widget
= m_wxwindow
;
2196 m_widget
= gtk_scrolled_window_new( NULL
, NULL
);
2198 GtkScrolledWindow
*scrolledWindow
= GTK_SCROLLED_WINDOW(m_widget
);
2200 // There is a conflict with default bindings at GTK+
2201 // level between scrolled windows and notebooks both of which want to use
2202 // Ctrl-PageUp/Down: scrolled windows for scrolling in the horizontal
2203 // direction and notebooks for changing pages -- we decide that if we don't
2204 // have wxHSCROLL style we can safely sacrifice horizontal scrolling if it
2205 // means we can get working keyboard navigation in notebooks
2206 if ( !HasFlag(wxHSCROLL
) )
2209 bindings
= gtk_binding_set_by_class(G_OBJECT_GET_CLASS(m_widget
));
2212 gtk_binding_entry_remove(bindings
, GDK_Page_Up
, GDK_CONTROL_MASK
);
2213 gtk_binding_entry_remove(bindings
, GDK_Page_Down
, GDK_CONTROL_MASK
);
2217 if (HasFlag(wxALWAYS_SHOW_SB
))
2219 gtk_scrolled_window_set_policy( scrolledWindow
, GTK_POLICY_ALWAYS
, GTK_POLICY_ALWAYS
);
2223 gtk_scrolled_window_set_policy( scrolledWindow
, GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
2226 m_scrollBar
[ScrollDir_Horz
] = GTK_RANGE(gtk_scrolled_window_get_hscrollbar(scrolledWindow
));
2227 m_scrollBar
[ScrollDir_Vert
] = GTK_RANGE(gtk_scrolled_window_get_vscrollbar(scrolledWindow
));
2228 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2229 gtk_range_set_inverted( m_scrollBar
[ScrollDir_Horz
], TRUE
);
2231 gtk_container_add( GTK_CONTAINER(m_widget
), m_wxwindow
);
2233 // connect various scroll-related events
2234 for ( int dir
= 0; dir
< ScrollDir_Max
; dir
++ )
2236 // these handlers block mouse events to any window during scrolling
2237 // such as motion events and prevent GTK and wxWidgets from fighting
2238 // over where the slider should be
2239 g_signal_connect(m_scrollBar
[dir
], "button_press_event",
2240 G_CALLBACK(gtk_scrollbar_button_press_event
), this);
2241 g_signal_connect(m_scrollBar
[dir
], "button_release_event",
2242 G_CALLBACK(gtk_scrollbar_button_release_event
), this);
2244 gulong handler_id
= g_signal_connect(m_scrollBar
[dir
], "event_after",
2245 G_CALLBACK(gtk_scrollbar_event_after
), this);
2246 g_signal_handler_block(m_scrollBar
[dir
], handler_id
);
2248 // these handlers get notified when scrollbar slider moves
2249 g_signal_connect_after(m_scrollBar
[dir
], "value_changed",
2250 G_CALLBACK(gtk_scrollbar_value_changed
), this);
2253 gtk_widget_show( m_wxwindow
);
2255 g_object_ref(m_widget
);
2258 m_parent
->DoAddChild( this );
2260 m_focusWidget
= m_wxwindow
;
2262 SetCanFocus(AcceptsFocus());
2269 wxWindowGTK::~wxWindowGTK()
2273 if (gs_currentFocus
== this)
2274 gs_currentFocus
= NULL
;
2275 if (gs_pendingFocus
== this)
2276 gs_pendingFocus
= NULL
;
2278 if ( gs_deferredFocusOut
== this )
2279 gs_deferredFocusOut
= NULL
;
2283 // destroy children before destroying this window itself
2286 // unhook focus handlers to prevent stray events being
2287 // propagated to this (soon to be) dead object
2288 if (m_focusWidget
!= NULL
)
2290 g_signal_handlers_disconnect_by_func (m_focusWidget
,
2291 (gpointer
) gtk_window_focus_in_callback
,
2293 g_signal_handlers_disconnect_by_func (m_focusWidget
,
2294 (gpointer
) gtk_window_focus_out_callback
,
2301 // delete before the widgets to avoid a crash on solaris
2305 // avoid problem with GTK+ 2.18 where a frozen window causes the whole
2306 // TLW to be frozen, and if the window is then destroyed, nothing ever
2307 // gets painted again
2313 // Note that gtk_widget_destroy() does not destroy the widget, it just
2314 // emits the "destroy" signal. The widget is not actually destroyed
2315 // until its reference count drops to zero.
2316 gtk_widget_destroy(m_widget
);
2317 // Release our reference, should be the last one
2318 g_object_unref(m_widget
);
2324 bool wxWindowGTK::PreCreation( wxWindowGTK
*parent
, const wxPoint
&pos
, const wxSize
&size
)
2326 if ( GTKNeedsParent() )
2328 wxCHECK_MSG( parent
, false, wxT("Must have non-NULL parent") );
2331 // Use either the given size, or the default if -1 is given.
2332 // See wxWindowBase for these functions.
2333 m_width
= WidthDefault(size
.x
) ;
2334 m_height
= HeightDefault(size
.y
);
2342 void wxWindowGTK::PostCreation()
2344 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid window") );
2346 #if wxGTK_HAS_COMPOSITING_SUPPORT
2347 // Set RGBA visual as soon as possible to minimize the possibility that
2348 // somebody uses the wrong one.
2349 if ( m_backgroundStyle
== wxBG_STYLE_TRANSPARENT
&&
2350 IsTransparentBackgroundSupported() )
2352 GdkScreen
*screen
= gtk_widget_get_screen (m_widget
);
2354 GdkColormap
*rgba_colormap
= gdk_screen_get_rgba_colormap (screen
);
2357 gtk_widget_set_colormap(m_widget
, rgba_colormap
);
2359 #endif // wxGTK_HAS_COMPOSITING_SUPPORT
2365 // these get reported to wxWidgets -> wxPaintEvent
2367 g_signal_connect (m_wxwindow
, "expose_event",
2368 G_CALLBACK (gtk_window_expose_callback
), this);
2370 if (GetLayoutDirection() == wxLayout_LeftToRight
)
2371 gtk_widget_set_redraw_on_allocate(m_wxwindow
, HasFlag(wxFULL_REPAINT_ON_RESIZE
));
2374 // Create input method handler
2375 m_imData
= new wxGtkIMData
;
2377 // Cannot handle drawing preedited text yet
2378 gtk_im_context_set_use_preedit( m_imData
->context
, FALSE
);
2380 g_signal_connect (m_imData
->context
, "commit",
2381 G_CALLBACK (gtk_wxwindow_commit_cb
), this);
2382 g_signal_connect(m_wxwindow
, "unrealize", G_CALLBACK(unrealize
), this);
2387 if (!GTK_IS_WINDOW(m_widget
))
2389 if (m_focusWidget
== NULL
)
2390 m_focusWidget
= m_widget
;
2394 g_signal_connect (m_focusWidget
, "focus_in_event",
2395 G_CALLBACK (gtk_window_focus_in_callback
), this);
2396 g_signal_connect (m_focusWidget
, "focus_out_event",
2397 G_CALLBACK (gtk_window_focus_out_callback
), this);
2401 g_signal_connect_after (m_focusWidget
, "focus_in_event",
2402 G_CALLBACK (gtk_window_focus_in_callback
), this);
2403 g_signal_connect_after (m_focusWidget
, "focus_out_event",
2404 G_CALLBACK (gtk_window_focus_out_callback
), this);
2408 if ( !AcceptsFocusFromKeyboard() )
2412 g_signal_connect(m_widget
, "focus",
2413 G_CALLBACK(wx_window_focus_callback
), this);
2416 // connect to the various key and mouse handlers
2418 GtkWidget
*connect_widget
= GetConnectWidget();
2420 ConnectWidget( connect_widget
);
2422 // connect handler to prevent events from propagating up parent chain
2423 g_signal_connect_after(m_widget
,
2424 "key_press_event", G_CALLBACK(key_and_mouse_event_after
), this);
2425 g_signal_connect_after(m_widget
,
2426 "key_release_event", G_CALLBACK(key_and_mouse_event_after
), this);
2427 g_signal_connect_after(m_widget
,
2428 "button_press_event", G_CALLBACK(key_and_mouse_event_after
), this);
2429 g_signal_connect_after(m_widget
,
2430 "button_release_event", G_CALLBACK(key_and_mouse_event_after
), this);
2431 g_signal_connect_after(m_widget
,
2432 "motion_notify_event", G_CALLBACK(key_and_mouse_event_after
), this);
2434 // We cannot set colours, fonts and cursors before the widget has been
2435 // realized, so we do this directly after realization -- unless the widget
2436 // was in fact realized already.
2437 if ( gtk_widget_get_realized(connect_widget
) )
2439 gtk_window_realized_callback(connect_widget
, this);
2443 g_signal_connect (connect_widget
, "realize",
2444 G_CALLBACK (gtk_window_realized_callback
), this);
2449 g_signal_connect(m_wxwindow
? m_wxwindow
: m_widget
, "size_allocate",
2450 G_CALLBACK(size_allocate
), this);
2453 #if GTK_CHECK_VERSION(2, 8, 0)
2454 if ( gtk_check_version(2,8,0) == NULL
)
2456 // Make sure we can notify the app when mouse capture is lost
2459 g_signal_connect (m_wxwindow
, "grab_broken_event",
2460 G_CALLBACK (gtk_window_grab_broken
), this);
2463 if ( connect_widget
!= m_wxwindow
)
2465 g_signal_connect (connect_widget
, "grab_broken_event",
2466 G_CALLBACK (gtk_window_grab_broken
), this);
2469 #endif // GTK+ >= 2.8
2471 if ( GTKShouldConnectSizeRequest() )
2473 // This is needed if we want to add our windows into native
2474 // GTK controls, such as the toolbar. With this callback, the
2475 // toolbar gets to know the correct size (the one set by the
2476 // programmer). Sadly, it misbehaves for wxComboBox.
2477 g_signal_connect (m_widget
, "size_request",
2478 G_CALLBACK (wxgtk_window_size_request_callback
),
2482 InheritAttributes();
2486 SetLayoutDirection(wxLayout_Default
);
2488 // unless the window was created initially hidden (i.e. Hide() had been
2489 // called before Create()), we should show it at GTK+ level as well
2491 gtk_widget_show( m_widget
);
2495 wxWindowGTK::GTKConnectWidget(const char *signal
, wxGTKCallback callback
)
2497 return g_signal_connect(m_widget
, signal
, callback
, this);
2500 void wxWindowGTK::ConnectWidget( GtkWidget
*widget
)
2502 g_signal_connect (widget
, "key_press_event",
2503 G_CALLBACK (gtk_window_key_press_callback
), this);
2504 g_signal_connect (widget
, "key_release_event",
2505 G_CALLBACK (gtk_window_key_release_callback
), this);
2506 g_signal_connect (widget
, "button_press_event",
2507 G_CALLBACK (gtk_window_button_press_callback
), this);
2508 g_signal_connect (widget
, "button_release_event",
2509 G_CALLBACK (gtk_window_button_release_callback
), this);
2510 g_signal_connect (widget
, "motion_notify_event",
2511 G_CALLBACK (gtk_window_motion_notify_callback
), this);
2513 g_signal_connect (widget
, "scroll_event",
2514 G_CALLBACK (window_scroll_event
), this);
2515 if (m_scrollBar
[ScrollDir_Horz
])
2516 g_signal_connect (m_scrollBar
[ScrollDir_Horz
], "scroll_event",
2517 G_CALLBACK (window_scroll_event_hscrollbar
), this);
2518 if (m_scrollBar
[ScrollDir_Vert
])
2519 g_signal_connect (m_scrollBar
[ScrollDir_Vert
], "scroll_event",
2520 G_CALLBACK (window_scroll_event
), this);
2522 g_signal_connect (widget
, "popup_menu",
2523 G_CALLBACK (wxgtk_window_popup_menu_callback
), this);
2524 g_signal_connect (widget
, "enter_notify_event",
2525 G_CALLBACK (gtk_window_enter_callback
), this);
2526 g_signal_connect (widget
, "leave_notify_event",
2527 G_CALLBACK (gtk_window_leave_callback
), this);
2529 if (m_wxwindow
&& (IsTopLevel() || HasFlag(wxBORDER_RAISED
| wxBORDER_SUNKEN
| wxBORDER_THEME
)))
2530 g_signal_connect (m_wxwindow
, "style_set",
2531 G_CALLBACK (gtk_window_style_set_callback
), this);
2534 bool wxWindowGTK::Destroy()
2538 return wxWindowBase::Destroy();
2541 void wxWindowGTK::DoMoveWindow(int x
, int y
, int width
, int height
)
2543 gtk_widget_set_size_request(m_widget
, width
, height
);
2545 // inform the parent to perform the move
2546 wxASSERT_MSG(m_parent
&& m_parent
->m_wxwindow
,
2547 "the parent window has no client area?");
2548 WX_PIZZA(m_parent
->m_wxwindow
)->move(m_widget
, x
, y
);
2551 void wxWindowGTK::ConstrainSize()
2554 // GPE's window manager doesn't like size hints at all, esp. when the user
2555 // has to use the virtual keyboard, so don't constrain size there
2559 const wxSize minSize
= GetMinSize();
2560 const wxSize maxSize
= GetMaxSize();
2561 if (minSize
.x
> 0 && m_width
< minSize
.x
) m_width
= minSize
.x
;
2562 if (minSize
.y
> 0 && m_height
< minSize
.y
) m_height
= minSize
.y
;
2563 if (maxSize
.x
> 0 && m_width
> maxSize
.x
) m_width
= maxSize
.x
;
2564 if (maxSize
.y
> 0 && m_height
> maxSize
.y
) m_height
= maxSize
.y
;
2568 void wxWindowGTK::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
2570 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid window") );
2571 wxASSERT_MSG( (m_parent
!= NULL
), wxT("wxWindowGTK::SetSize requires parent.\n") );
2573 if ((sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) == 0 && (x
== -1 || y
== -1))
2575 int currentX
, currentY
;
2576 GetPosition(¤tX
, ¤tY
);
2582 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
2584 // calculate the best size if we should auto size the window
2585 if ( ((sizeFlags
& wxSIZE_AUTO_WIDTH
) && width
== -1) ||
2586 ((sizeFlags
& wxSIZE_AUTO_HEIGHT
) && height
== -1) )
2588 const wxSize sizeBest
= GetBestSize();
2589 if ( (sizeFlags
& wxSIZE_AUTO_WIDTH
) && width
== -1 )
2591 if ( (sizeFlags
& wxSIZE_AUTO_HEIGHT
) && height
== -1 )
2592 height
= sizeBest
.y
;
2595 const wxSize
oldSize(m_width
, m_height
);
2601 if (m_parent
->m_wxwindow
)
2603 wxPizza
* pizza
= WX_PIZZA(m_parent
->m_wxwindow
);
2604 m_x
= x
+ pizza
->m_scroll_x
;
2605 m_y
= y
+ pizza
->m_scroll_y
;
2607 int left_border
= 0;
2608 int right_border
= 0;
2610 int bottom_border
= 0;
2612 /* the default button has a border around it */
2613 if (gtk_widget_get_can_default(m_widget
))
2615 GtkBorder
*default_border
= NULL
;
2616 gtk_widget_style_get( m_widget
, "default_border", &default_border
, NULL
);
2619 left_border
+= default_border
->left
;
2620 right_border
+= default_border
->right
;
2621 top_border
+= default_border
->top
;
2622 bottom_border
+= default_border
->bottom
;
2623 gtk_border_free( default_border
);
2627 DoMoveWindow( m_x
- left_border
,
2629 m_width
+left_border
+right_border
,
2630 m_height
+top_border
+bottom_border
);
2633 if (m_width
!= oldSize
.x
|| m_height
!= oldSize
.y
)
2635 // update these variables to keep size_allocate handler
2636 // from sending another size event for this change
2637 GetClientSize( &m_oldClientWidth
, &m_oldClientHeight
);
2639 gtk_widget_queue_resize(m_widget
);
2640 if (!m_nativeSizeEvent
)
2642 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
2643 event
.SetEventObject( this );
2644 HandleWindowEvent( event
);
2647 if (sizeFlags
& wxSIZE_FORCE_EVENT
)
2649 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
2650 event
.SetEventObject( this );
2651 HandleWindowEvent( event
);
2655 bool wxWindowGTK::GTKShowFromOnIdle()
2657 if (IsShown() && m_showOnIdle
&& !gtk_widget_get_visible (m_widget
))
2659 GtkAllocation alloc
;
2662 alloc
.width
= m_width
;
2663 alloc
.height
= m_height
;
2664 gtk_widget_size_allocate( m_widget
, &alloc
);
2665 gtk_widget_show( m_widget
);
2666 wxShowEvent
eventShow(GetId(), true);
2667 eventShow
.SetEventObject(this);
2668 HandleWindowEvent(eventShow
);
2669 m_showOnIdle
= false;
2676 void wxWindowGTK::OnInternalIdle()
2678 if ( gs_deferredFocusOut
)
2679 GTKHandleDeferredFocusOut();
2681 // Check if we have to show window now
2682 if (GTKShowFromOnIdle()) return;
2684 if ( m_dirtyTabOrder
)
2686 m_dirtyTabOrder
= false;
2690 wxWindowBase::OnInternalIdle();
2693 void wxWindowGTK::DoGetSize( int *width
, int *height
) const
2695 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2697 if (width
) (*width
) = m_width
;
2698 if (height
) (*height
) = m_height
;
2701 void wxWindowGTK::DoSetClientSize( int width
, int height
)
2703 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2705 const wxSize size
= GetSize();
2706 const wxSize clientSize
= GetClientSize();
2707 SetSize(width
+ (size
.x
- clientSize
.x
), height
+ (size
.y
- clientSize
.y
));
2710 void wxWindowGTK::DoGetClientSize( int *width
, int *height
) const
2712 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2719 // if window is scrollable, account for scrollbars
2720 if ( GTK_IS_SCROLLED_WINDOW(m_widget
) )
2722 GtkPolicyType policy
[ScrollDir_Max
];
2723 gtk_scrolled_window_get_policy(GTK_SCROLLED_WINDOW(m_widget
),
2724 &policy
[ScrollDir_Horz
],
2725 &policy
[ScrollDir_Vert
]);
2727 for ( int i
= 0; i
< ScrollDir_Max
; i
++ )
2729 // don't account for the scrollbars we don't have
2730 GtkRange
* const range
= m_scrollBar
[i
];
2734 // nor for the ones we have but don't current show
2735 switch ( policy
[i
] )
2737 case GTK_POLICY_NEVER
:
2738 // never shown so doesn't take any place
2741 case GTK_POLICY_ALWAYS
:
2742 // no checks necessary
2745 case GTK_POLICY_AUTOMATIC
:
2746 // may be shown or not, check
2747 GtkAdjustment
*adj
= gtk_range_get_adjustment(range
);
2748 if (gtk_adjustment_get_upper(adj
) <= gtk_adjustment_get_page_size(adj
))
2752 GtkScrolledWindowClass
*scroll_class
=
2753 GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT_GET_CLASS(m_widget
) );
2756 gtk_widget_size_request(GTK_WIDGET(range
), &req
);
2757 if (i
== ScrollDir_Horz
)
2758 h
-= req
.height
+ scroll_class
->scrollbar_spacing
;
2760 w
-= req
.width
+ scroll_class
->scrollbar_spacing
;
2764 const wxSize sizeBorders
= DoGetBorderSize();
2774 if (width
) *width
= w
;
2775 if (height
) *height
= h
;
2778 wxSize
wxWindowGTK::DoGetBorderSize() const
2781 return wxWindowBase::DoGetBorderSize();
2784 WX_PIZZA(m_wxwindow
)->get_border_widths(x
, y
);
2786 return 2*wxSize(x
, y
);
2789 void wxWindowGTK::DoGetPosition( int *x
, int *y
) const
2791 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2795 if (!IsTopLevel() && m_parent
&& m_parent
->m_wxwindow
)
2797 wxPizza
* pizza
= WX_PIZZA(m_parent
->m_wxwindow
);
2798 dx
= pizza
->m_scroll_x
;
2799 dy
= pizza
->m_scroll_y
;
2802 if (m_x
== -1 && m_y
== -1)
2804 GdkWindow
*source
= NULL
;
2806 source
= gtk_widget_get_window(m_wxwindow
);
2808 source
= gtk_widget_get_window(m_widget
);
2814 gdk_window_get_origin( source
, &org_x
, &org_y
);
2817 m_parent
->ScreenToClient(&org_x
, &org_y
);
2819 const_cast<wxWindowGTK
*>(this)->m_x
= org_x
;
2820 const_cast<wxWindowGTK
*>(this)->m_y
= org_y
;
2824 if (x
) (*x
) = m_x
- dx
;
2825 if (y
) (*y
) = m_y
- dy
;
2828 void wxWindowGTK::DoClientToScreen( int *x
, int *y
) const
2830 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2832 if (gtk_widget_get_window(m_widget
) == NULL
) return;
2834 GdkWindow
*source
= NULL
;
2836 source
= gtk_widget_get_window(m_wxwindow
);
2838 source
= gtk_widget_get_window(m_widget
);
2842 gdk_window_get_origin( source
, &org_x
, &org_y
);
2846 if (!gtk_widget_get_has_window(m_widget
))
2849 gtk_widget_get_allocation(m_widget
, &a
);
2858 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2859 *x
= (GetClientSize().x
- *x
) + org_x
;
2867 void wxWindowGTK::DoScreenToClient( int *x
, int *y
) const
2869 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2871 if (!gtk_widget_get_realized(m_widget
)) return;
2873 GdkWindow
*source
= NULL
;
2875 source
= gtk_widget_get_window(m_wxwindow
);
2877 source
= gtk_widget_get_window(m_widget
);
2881 gdk_window_get_origin( source
, &org_x
, &org_y
);
2885 if (!gtk_widget_get_has_window(m_widget
))
2888 gtk_widget_get_allocation(m_widget
, &a
);
2896 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2897 *x
= (GetClientSize().x
- *x
) - org_x
;
2904 bool wxWindowGTK::Show( bool show
)
2906 if ( !wxWindowBase::Show(show
) )
2912 // notice that we may call Hide() before the window is created and this is
2913 // actually useful to create it hidden initially -- but we can't call
2914 // Show() before it is created
2917 wxASSERT_MSG( !show
, "can't show invalid window" );
2925 // defer until later
2929 gtk_widget_show(m_widget
);
2933 gtk_widget_hide(m_widget
);
2936 wxShowEvent
eventShow(GetId(), show
);
2937 eventShow
.SetEventObject(this);
2938 HandleWindowEvent(eventShow
);
2943 void wxWindowGTK::DoEnable( bool enable
)
2945 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2947 gtk_widget_set_sensitive( m_widget
, enable
);
2948 if (m_wxwindow
&& (m_wxwindow
!= m_widget
))
2949 gtk_widget_set_sensitive( m_wxwindow
, enable
);
2952 int wxWindowGTK::GetCharHeight() const
2954 wxCHECK_MSG( (m_widget
!= NULL
), 12, wxT("invalid window") );
2956 wxFont font
= GetFont();
2957 wxCHECK_MSG( font
.IsOk(), 12, wxT("invalid font") );
2959 PangoContext
* context
= gtk_widget_get_pango_context(m_widget
);
2964 PangoFontDescription
*desc
= font
.GetNativeFontInfo()->description
;
2965 PangoLayout
*layout
= pango_layout_new(context
);
2966 pango_layout_set_font_description(layout
, desc
);
2967 pango_layout_set_text(layout
, "H", 1);
2968 PangoLayoutLine
*line
= (PangoLayoutLine
*)pango_layout_get_lines(layout
)->data
;
2970 PangoRectangle rect
;
2971 pango_layout_line_get_extents(line
, NULL
, &rect
);
2973 g_object_unref (layout
);
2975 return (int) PANGO_PIXELS(rect
.height
);
2978 int wxWindowGTK::GetCharWidth() const
2980 wxCHECK_MSG( (m_widget
!= NULL
), 8, wxT("invalid window") );
2982 wxFont font
= GetFont();
2983 wxCHECK_MSG( font
.IsOk(), 8, wxT("invalid font") );
2985 PangoContext
* context
= gtk_widget_get_pango_context(m_widget
);
2990 PangoFontDescription
*desc
= font
.GetNativeFontInfo()->description
;
2991 PangoLayout
*layout
= pango_layout_new(context
);
2992 pango_layout_set_font_description(layout
, desc
);
2993 pango_layout_set_text(layout
, "g", 1);
2994 PangoLayoutLine
*line
= (PangoLayoutLine
*)pango_layout_get_lines(layout
)->data
;
2996 PangoRectangle rect
;
2997 pango_layout_line_get_extents(line
, NULL
, &rect
);
2999 g_object_unref (layout
);
3001 return (int) PANGO_PIXELS(rect
.width
);
3004 void wxWindowGTK::DoGetTextExtent( const wxString
& string
,
3008 int *externalLeading
,
3009 const wxFont
*theFont
) const
3011 wxFont fontToUse
= theFont
? *theFont
: GetFont();
3013 wxCHECK_RET( fontToUse
.IsOk(), wxT("invalid font") );
3022 PangoContext
*context
= NULL
;
3024 context
= gtk_widget_get_pango_context( m_widget
);
3033 PangoFontDescription
*desc
= fontToUse
.GetNativeFontInfo()->description
;
3034 PangoLayout
*layout
= pango_layout_new(context
);
3035 pango_layout_set_font_description(layout
, desc
);
3037 const wxCharBuffer data
= wxGTK_CONV( string
);
3039 pango_layout_set_text(layout
, data
, strlen(data
));
3042 PangoRectangle rect
;
3043 pango_layout_get_extents(layout
, NULL
, &rect
);
3045 if (x
) (*x
) = (wxCoord
) PANGO_PIXELS(rect
.width
);
3046 if (y
) (*y
) = (wxCoord
) PANGO_PIXELS(rect
.height
);
3049 PangoLayoutIter
*iter
= pango_layout_get_iter(layout
);
3050 int baseline
= pango_layout_iter_get_baseline(iter
);
3051 pango_layout_iter_free(iter
);
3052 *descent
= *y
- PANGO_PIXELS(baseline
);
3054 if (externalLeading
) (*externalLeading
) = 0; // ??
3056 g_object_unref (layout
);
3059 void wxWindowGTK::GTKDisableFocusOutEvent()
3061 g_signal_handlers_block_by_func( m_focusWidget
,
3062 (gpointer
) gtk_window_focus_out_callback
, this);
3065 void wxWindowGTK::GTKEnableFocusOutEvent()
3067 g_signal_handlers_unblock_by_func( m_focusWidget
,
3068 (gpointer
) gtk_window_focus_out_callback
, this);
3071 bool wxWindowGTK::GTKHandleFocusIn()
3073 // Disable default focus handling for custom windows since the default GTK+
3074 // handler issues a repaint
3075 const bool retval
= m_wxwindow
? true : false;
3078 // NB: if there's still unprocessed deferred focus-out event (see
3079 // GTKHandleFocusOut() for explanation), we need to process it first so
3080 // that the order of focus events -- focus-out first, then focus-in
3081 // elsewhere -- is preserved
3082 if ( gs_deferredFocusOut
)
3084 if ( GTKNeedsToFilterSameWindowFocus() &&
3085 gs_deferredFocusOut
== this )
3087 // GTK+ focus changed from this wxWindow back to itself, so don't
3088 // emit any events at all
3089 wxLogTrace(TRACE_FOCUS
,
3090 "filtered out spurious focus change within %s(%p, %s)",
3091 GetClassInfo()->GetClassName(), this, GetLabel());
3092 gs_deferredFocusOut
= NULL
;
3096 // otherwise we need to send focus-out first
3097 wxASSERT_MSG ( gs_deferredFocusOut
!= this,
3098 "GTKHandleFocusIn(GTKFocus_Normal) called even though focus changed back to itself - derived class should handle this" );
3099 GTKHandleDeferredFocusOut();
3103 wxLogTrace(TRACE_FOCUS
,
3104 "handling focus_in event for %s(%p, %s)",
3105 GetClassInfo()->GetClassName(), this, GetLabel());
3108 gtk_im_context_focus_in(m_imData
->context
);
3110 gs_currentFocus
= this;
3111 gs_pendingFocus
= NULL
;
3114 // caret needs to be informed about focus change
3115 wxCaret
*caret
= GetCaret();
3118 caret
->OnSetFocus();
3120 #endif // wxUSE_CARET
3122 // Notify the parent keeping track of focus for the kbd navigation
3123 // purposes that we got it.
3124 wxChildFocusEvent
eventChildFocus(static_cast<wxWindow
*>(this));
3125 GTKProcessEvent(eventChildFocus
);
3127 wxFocusEvent
eventFocus(wxEVT_SET_FOCUS
, GetId());
3128 eventFocus
.SetEventObject(this);
3129 GTKProcessEvent(eventFocus
);
3134 bool wxWindowGTK::GTKHandleFocusOut()
3136 // Disable default focus handling for custom windows since the default GTK+
3137 // handler issues a repaint
3138 const bool retval
= m_wxwindow
? true : false;
3141 // NB: If a control is composed of several GtkWidgets and when focus
3142 // changes from one of them to another within the same wxWindow, we get
3143 // a focus-out event followed by focus-in for another GtkWidget owned
3144 // by the same wx control. We don't want to generate two spurious
3145 // wxEVT_SET_FOCUS events in this case, so we defer sending wx events
3146 // from GTKHandleFocusOut() until we know for sure it's not coming back
3147 // (i.e. in GTKHandleFocusIn() or at idle time).
3148 if ( GTKNeedsToFilterSameWindowFocus() )
3150 wxASSERT_MSG( gs_deferredFocusOut
== NULL
,
3151 "deferred focus out event already pending" );
3152 wxLogTrace(TRACE_FOCUS
,
3153 "deferring focus_out event for %s(%p, %s)",
3154 GetClassInfo()->GetClassName(), this, GetLabel());
3155 gs_deferredFocusOut
= this;
3159 GTKHandleFocusOutNoDeferring();
3164 void wxWindowGTK::GTKHandleFocusOutNoDeferring()
3166 wxLogTrace(TRACE_FOCUS
,
3167 "handling focus_out event for %s(%p, %s)",
3168 GetClassInfo()->GetClassName(), this, GetLabel());
3171 gtk_im_context_focus_out(m_imData
->context
);
3173 if ( gs_currentFocus
!= this )
3175 // Something is terribly wrong, gs_currentFocus is out of sync with the
3176 // real focus. We will reset it to NULL anyway, because after this
3177 // focus-out event is handled, one of the following with happen:
3179 // * either focus will go out of the app altogether, in which case
3180 // gs_currentFocus _should_ be NULL
3182 // * or it goes to another control, in which case focus-in event will
3183 // follow immediately and it will set gs_currentFocus to the right
3185 wxLogDebug("window %s(%p, %s) lost focus even though it didn't have it",
3186 GetClassInfo()->GetClassName(), this, GetLabel());
3188 gs_currentFocus
= NULL
;
3191 // caret needs to be informed about focus change
3192 wxCaret
*caret
= GetCaret();
3195 caret
->OnKillFocus();
3197 #endif // wxUSE_CARET
3199 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetId() );
3200 event
.SetEventObject( this );
3201 event
.SetWindow( FindFocus() );
3202 GTKProcessEvent( event
);
3206 void wxWindowGTK::GTKHandleDeferredFocusOut()
3208 // NB: See GTKHandleFocusOut() for explanation. This function is called
3209 // from either GTKHandleFocusIn() or OnInternalIdle() to process
3211 if ( gs_deferredFocusOut
)
3213 wxWindowGTK
*win
= gs_deferredFocusOut
;
3214 gs_deferredFocusOut
= NULL
;
3216 wxLogTrace(TRACE_FOCUS
,
3217 "processing deferred focus_out event for %s(%p, %s)",
3218 win
->GetClassInfo()->GetClassName(), win
, win
->GetLabel());
3220 win
->GTKHandleFocusOutNoDeferring();
3224 void wxWindowGTK::SetFocus()
3226 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
3228 // Setting "physical" focus is not immediate in GTK+ and while
3229 // gtk_widget_is_focus ("determines if the widget is the focus widget
3230 // within its toplevel", i.e. returns true for one widget per TLW, not
3231 // globally) returns true immediately after grabbing focus,
3232 // GTK_WIDGET_HAS_FOCUS (which returns true only for the one widget that
3233 // has focus at the moment) takes effect only after the window is shown
3234 // (if it was hidden at the moment of the call) or at the next event loop
3237 // Because we want to FindFocus() call immediately following
3238 // foo->SetFocus() to return foo, we have to keep track of "pending" focus
3240 gs_pendingFocus
= this;
3242 GtkWidget
*widget
= m_wxwindow
? m_wxwindow
: m_focusWidget
;
3244 if ( GTK_IS_CONTAINER(widget
) &&
3245 !gtk_widget_get_can_focus(widget
) )
3247 wxLogTrace(TRACE_FOCUS
,
3248 wxT("Setting focus to a child of %s(%p, %s)"),
3249 GetClassInfo()->GetClassName(), this, GetLabel().c_str());
3250 gtk_widget_child_focus(widget
, GTK_DIR_TAB_FORWARD
);
3254 wxLogTrace(TRACE_FOCUS
,
3255 wxT("Setting focus to %s(%p, %s)"),
3256 GetClassInfo()->GetClassName(), this, GetLabel().c_str());
3257 gtk_widget_grab_focus(widget
);
3261 void wxWindowGTK::SetCanFocus(bool canFocus
)
3263 gtk_widget_set_can_focus(m_widget
, canFocus
);
3265 if ( m_wxwindow
&& (m_widget
!= m_wxwindow
) )
3267 gtk_widget_set_can_focus(m_wxwindow
, canFocus
);
3271 bool wxWindowGTK::Reparent( wxWindowBase
*newParentBase
)
3273 wxCHECK_MSG( (m_widget
!= NULL
), false, wxT("invalid window") );
3275 wxWindowGTK
* const newParent
= (wxWindowGTK
*)newParentBase
;
3277 wxASSERT( GTK_IS_WIDGET(m_widget
) );
3279 if ( !wxWindowBase::Reparent(newParent
) )
3282 wxASSERT( GTK_IS_WIDGET(m_widget
) );
3284 // Notice that old m_parent pointer might be non-NULL here but the widget
3285 // still not have any parent at GTK level if it's a notebook page that had
3286 // been removed from the notebook so test this at GTK level and not wx one.
3287 if ( GtkWidget
*parentGTK
= gtk_widget_get_parent(m_widget
) )
3288 gtk_container_remove(GTK_CONTAINER(parentGTK
), m_widget
);
3290 wxASSERT( GTK_IS_WIDGET(m_widget
) );
3294 if (gtk_widget_get_visible (newParent
->m_widget
))
3296 m_showOnIdle
= true;
3297 gtk_widget_hide( m_widget
);
3299 /* insert GTK representation */
3300 newParent
->AddChildGTK(this);
3303 SetLayoutDirection(wxLayout_Default
);
3308 void wxWindowGTK::DoAddChild(wxWindowGTK
*child
)
3310 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid window") );
3311 wxASSERT_MSG( (child
!= NULL
), wxT("invalid child window") );
3316 /* insert GTK representation */
3320 void wxWindowGTK::AddChild(wxWindowBase
*child
)
3322 wxWindowBase::AddChild(child
);
3323 m_dirtyTabOrder
= true;
3324 wxTheApp
->WakeUpIdle();
3327 void wxWindowGTK::RemoveChild(wxWindowBase
*child
)
3329 wxWindowBase::RemoveChild(child
);
3330 m_dirtyTabOrder
= true;
3331 wxTheApp
->WakeUpIdle();
3335 wxLayoutDirection
wxWindowGTK::GTKGetLayout(GtkWidget
*widget
)
3337 return gtk_widget_get_direction(widget
) == GTK_TEXT_DIR_RTL
3338 ? wxLayout_RightToLeft
3339 : wxLayout_LeftToRight
;
3343 void wxWindowGTK::GTKSetLayout(GtkWidget
*widget
, wxLayoutDirection dir
)
3345 wxASSERT_MSG( dir
!= wxLayout_Default
, wxT("invalid layout direction") );
3347 gtk_widget_set_direction(widget
,
3348 dir
== wxLayout_RightToLeft
? GTK_TEXT_DIR_RTL
3349 : GTK_TEXT_DIR_LTR
);
3352 wxLayoutDirection
wxWindowGTK::GetLayoutDirection() const
3354 return GTKGetLayout(m_widget
);
3357 void wxWindowGTK::SetLayoutDirection(wxLayoutDirection dir
)
3359 if ( dir
== wxLayout_Default
)
3361 const wxWindow
*const parent
= GetParent();
3364 // inherit layout from parent.
3365 dir
= parent
->GetLayoutDirection();
3367 else // no parent, use global default layout
3369 dir
= wxTheApp
->GetLayoutDirection();
3373 if ( dir
== wxLayout_Default
)
3376 GTKSetLayout(m_widget
, dir
);
3378 if (m_wxwindow
&& (m_wxwindow
!= m_widget
))
3379 GTKSetLayout(m_wxwindow
, dir
);
3383 wxWindowGTK::AdjustForLayoutDirection(wxCoord x
,
3384 wxCoord
WXUNUSED(width
),
3385 wxCoord
WXUNUSED(widthTotal
)) const
3387 // We now mirror the coordinates of RTL windows in wxPizza
3391 void wxWindowGTK::DoMoveInTabOrder(wxWindow
*win
, WindowOrder move
)
3393 wxWindowBase::DoMoveInTabOrder(win
, move
);
3394 m_dirtyTabOrder
= true;
3395 wxTheApp
->WakeUpIdle();
3398 bool wxWindowGTK::DoNavigateIn(int flags
)
3400 if ( flags
& wxNavigationKeyEvent::WinChange
)
3402 wxFAIL_MSG( wxT("not implemented") );
3406 else // navigate inside the container
3408 wxWindow
*parent
= wxGetTopLevelParent((wxWindow
*)this);
3409 wxCHECK_MSG( parent
, false, wxT("every window must have a TLW parent") );
3411 GtkDirectionType dir
;
3412 dir
= flags
& wxNavigationKeyEvent::IsForward
? GTK_DIR_TAB_FORWARD
3413 : GTK_DIR_TAB_BACKWARD
;
3416 g_signal_emit_by_name(parent
->m_widget
, "focus", dir
, &rc
);
3422 bool wxWindowGTK::GTKWidgetNeedsMnemonic() const
3424 // none needed by default
3428 void wxWindowGTK::GTKWidgetDoSetMnemonic(GtkWidget
* WXUNUSED(w
))
3430 // nothing to do by default since none is needed
3433 void wxWindowGTK::RealizeTabOrder()
3437 if ( !m_children
.empty() )
3439 // we don't only construct the correct focus chain but also use
3440 // this opportunity to update the mnemonic widgets for the widgets
3443 GList
*chain
= NULL
;
3444 wxWindowGTK
* mnemonicWindow
= NULL
;
3446 for ( wxWindowList::const_iterator i
= m_children
.begin();
3447 i
!= m_children
.end();
3450 wxWindowGTK
*win
= *i
;
3452 bool focusableFromKeyboard
= win
->AcceptsFocusFromKeyboard();
3454 if ( mnemonicWindow
)
3456 if ( focusableFromKeyboard
)
3458 // wxComboBox et al. needs to focus on on a different
3459 // widget than m_widget, so if the main widget isn't
3460 // focusable try the connect widget
3461 GtkWidget
* w
= win
->m_widget
;
3462 if ( !gtk_widget_get_can_focus(w
) )
3464 w
= win
->GetConnectWidget();
3465 if ( !gtk_widget_get_can_focus(w
) )
3471 mnemonicWindow
->GTKWidgetDoSetMnemonic(w
);
3472 mnemonicWindow
= NULL
;
3476 else if ( win
->GTKWidgetNeedsMnemonic() )
3478 mnemonicWindow
= win
;
3481 if ( focusableFromKeyboard
)
3482 chain
= g_list_prepend(chain
, win
->m_widget
);
3485 chain
= g_list_reverse(chain
);
3487 gtk_container_set_focus_chain(GTK_CONTAINER(m_wxwindow
), chain
);
3492 gtk_container_unset_focus_chain(GTK_CONTAINER(m_wxwindow
));
3497 void wxWindowGTK::Raise()
3499 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
3501 if (m_wxwindow
&& gtk_widget_get_window(m_wxwindow
))
3503 gdk_window_raise(gtk_widget_get_window(m_wxwindow
));
3505 else if (gtk_widget_get_window(m_widget
))
3507 gdk_window_raise(gtk_widget_get_window(m_widget
));
3511 void wxWindowGTK::Lower()
3513 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
3515 if (m_wxwindow
&& gtk_widget_get_window(m_wxwindow
))
3517 gdk_window_lower(gtk_widget_get_window(m_wxwindow
));
3519 else if (gtk_widget_get_window(m_widget
))
3521 gdk_window_lower(gtk_widget_get_window(m_widget
));
3525 bool wxWindowGTK::SetCursor( const wxCursor
&cursor
)
3527 if ( !wxWindowBase::SetCursor(cursor
.IsOk() ? cursor
: *wxSTANDARD_CURSOR
) )
3535 void wxWindowGTK::GTKUpdateCursor(bool update_self
/*=true*/, bool recurse
/*=true*/)
3539 wxCursor
cursor(g_globalCursor
.IsOk() ? g_globalCursor
: GetCursor());
3540 if ( cursor
.IsOk() )
3542 wxArrayGdkWindows windowsThis
;
3543 GdkWindow
* window
= GTKGetWindow(windowsThis
);
3545 gdk_window_set_cursor( window
, cursor
.GetCursor() );
3548 const size_t count
= windowsThis
.size();
3549 for ( size_t n
= 0; n
< count
; n
++ )
3551 GdkWindow
*win
= windowsThis
[n
];
3552 // It can be zero if the window has not been realized yet.
3555 gdk_window_set_cursor(win
, cursor
.GetCursor());
3564 for (wxWindowList::iterator it
= GetChildren().begin(); it
!= GetChildren().end(); ++it
)
3566 (*it
)->GTKUpdateCursor( true );
3571 void wxWindowGTK::WarpPointer( int x
, int y
)
3573 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
3575 ClientToScreen(&x
, &y
);
3576 GdkDisplay
* display
= gtk_widget_get_display(m_widget
);
3577 GdkScreen
* screen
= gtk_widget_get_screen(m_widget
);
3579 GdkDeviceManager
* manager
= gdk_display_get_device_manager(display
);
3580 gdk_device_warp(gdk_device_manager_get_client_pointer(manager
), screen
, x
, y
);
3582 XWarpPointer(GDK_DISPLAY_XDISPLAY(display
),
3584 GDK_WINDOW_XID(gdk_screen_get_root_window(screen
)),
3589 wxWindowGTK::ScrollDir
wxWindowGTK::ScrollDirFromRange(GtkRange
*range
) const
3591 // find the scrollbar which generated the event
3592 for ( int dir
= 0; dir
< ScrollDir_Max
; dir
++ )
3594 if ( range
== m_scrollBar
[dir
] )
3595 return (ScrollDir
)dir
;
3598 wxFAIL_MSG( wxT("event from unknown scrollbar received") );
3600 return ScrollDir_Max
;
3603 bool wxWindowGTK::DoScrollByUnits(ScrollDir dir
, ScrollUnit unit
, int units
)
3605 bool changed
= false;
3606 GtkRange
* range
= m_scrollBar
[dir
];
3607 if ( range
&& units
)
3609 GtkAdjustment
* adj
= gtk_range_get_adjustment(range
);
3610 double inc
= unit
== ScrollUnit_Line
? gtk_adjustment_get_step_increment(adj
)
3611 : gtk_adjustment_get_page_increment(adj
);
3613 const int posOld
= wxRound(gtk_adjustment_get_value(adj
));
3614 gtk_range_set_value(range
, posOld
+ units
*inc
);
3616 changed
= wxRound(gtk_adjustment_get_value(adj
)) != posOld
;
3622 bool wxWindowGTK::ScrollLines(int lines
)
3624 return DoScrollByUnits(ScrollDir_Vert
, ScrollUnit_Line
, lines
);
3627 bool wxWindowGTK::ScrollPages(int pages
)
3629 return DoScrollByUnits(ScrollDir_Vert
, ScrollUnit_Page
, pages
);
3632 void wxWindowGTK::Refresh(bool WXUNUSED(eraseBackground
),
3637 if (gtk_widget_get_mapped(m_wxwindow
))
3639 GdkWindow
* window
= gtk_widget_get_window(m_wxwindow
);
3642 GdkRectangle r
= { rect
->x
, rect
->y
, rect
->width
, rect
->height
};
3643 if (GetLayoutDirection() == wxLayout_RightToLeft
)
3644 r
.x
= gdk_window_get_width(window
) - r
.x
- rect
->width
;
3645 gdk_window_invalidate_rect(window
, &r
, true);
3648 gdk_window_invalidate_rect(window
, NULL
, true);
3653 if (gtk_widget_get_mapped(m_widget
))
3656 gtk_widget_queue_draw_area(m_widget
, rect
->x
, rect
->y
, rect
->width
, rect
->height
);
3658 gtk_widget_queue_draw(m_widget
);
3663 void wxWindowGTK::Update()
3665 if (m_widget
&& gtk_widget_get_mapped(m_widget
))
3667 GdkDisplay
* display
= gtk_widget_get_display(m_widget
);
3668 // Flush everything out to the server, and wait for it to finish.
3669 // This ensures nothing will overwrite the drawing we are about to do.
3670 gdk_display_sync(display
);
3672 GdkWindow
* window
= GTKGetDrawingWindow();
3674 window
= gtk_widget_get_window(m_widget
);
3675 gdk_window_process_updates(window
, true);
3677 // Flush again, but no need to wait for it to finish
3678 gdk_display_flush(display
);
3682 bool wxWindowGTK::DoIsExposed( int x
, int y
) const
3684 return m_updateRegion
.Contains(x
, y
) != wxOutRegion
;
3687 bool wxWindowGTK::DoIsExposed( int x
, int y
, int w
, int h
) const
3689 if (GetLayoutDirection() == wxLayout_RightToLeft
)
3690 return m_updateRegion
.Contains(x
-w
, y
, w
, h
) != wxOutRegion
;
3692 return m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
;
3695 void wxWindowGTK::GtkSendPaintEvents()
3699 m_updateRegion
.Clear();
3702 #if wxGTK_HAS_COMPOSITING_SUPPORT
3705 // Clip to paint region in wxClientDC
3706 m_clipPaintRegion
= true;
3708 m_nativeUpdateRegion
= m_updateRegion
;
3710 if (GetLayoutDirection() == wxLayout_RightToLeft
)
3712 // Transform m_updateRegion under RTL
3713 m_updateRegion
.Clear();
3716 gdk_drawable_get_size(gtk_widget_get_window(m_wxwindow
), &width
, NULL
);
3718 wxRegionIterator
upd( m_nativeUpdateRegion
);
3722 rect
.x
= upd
.GetX();
3723 rect
.y
= upd
.GetY();
3724 rect
.width
= upd
.GetWidth();
3725 rect
.height
= upd
.GetHeight();
3727 rect
.x
= width
- rect
.x
- rect
.width
;
3728 m_updateRegion
.Union( rect
);
3734 switch ( GetBackgroundStyle() )
3736 case wxBG_STYLE_TRANSPARENT
:
3737 #if wxGTK_HAS_COMPOSITING_SUPPORT
3738 if (IsTransparentBackgroundSupported())
3740 // Set a transparent background, so that overlaying in parent
3741 // might indeed let see through where this child did not
3742 // explicitly paint.
3743 // NB: it works also for top level windows (but this is the
3744 // windows manager which then does the compositing job)
3745 cr
= gdk_cairo_create(m_wxwindow
->window
);
3746 gdk_cairo_region(cr
, m_nativeUpdateRegion
.GetRegion());
3749 cairo_set_operator(cr
, CAIRO_OPERATOR_CLEAR
);
3751 cairo_set_operator(cr
, CAIRO_OPERATOR_OVER
);
3752 cairo_surface_flush(cairo_get_target(cr
));
3754 #endif // wxGTK_HAS_COMPOSITING_SUPPORT
3757 case wxBG_STYLE_ERASE
:
3759 wxWindowDC
dc( (wxWindow
*)this );
3760 dc
.SetDeviceClippingRegion( m_updateRegion
);
3762 // Work around gtk-qt <= 0.60 bug whereby the window colour
3766 GetOptionInt("gtk.window.force-background-colour") )
3768 dc
.SetBackground(GetBackgroundColour());
3772 wxEraseEvent
erase_event( GetId(), &dc
);
3773 erase_event
.SetEventObject( this );
3775 if ( HandleWindowEvent(erase_event
) )
3777 // background erased, don't do it again
3783 case wxBG_STYLE_SYSTEM
:
3784 if ( GetThemeEnabled() )
3786 // find ancestor from which to steal background
3787 wxWindow
*parent
= wxGetTopLevelParent((wxWindow
*)this);
3789 parent
= (wxWindow
*)this;
3791 if (gtk_widget_get_mapped(parent
->m_widget
))
3793 wxRegionIterator
upd( m_nativeUpdateRegion
);
3797 rect
.x
= upd
.GetX();
3798 rect
.y
= upd
.GetY();
3799 rect
.width
= upd
.GetWidth();
3800 rect
.height
= upd
.GetHeight();
3802 gtk_paint_flat_box(gtk_widget_get_style(parent
->m_widget
),
3803 GTKGetDrawingWindow(),
3804 gtk_widget_get_state(m_wxwindow
),
3817 case wxBG_STYLE_PAINT
:
3818 // nothing to do: window will be painted over in EVT_PAINT
3822 wxFAIL_MSG( "unsupported background style" );
3825 wxNcPaintEvent
nc_paint_event( GetId() );
3826 nc_paint_event
.SetEventObject( this );
3827 HandleWindowEvent( nc_paint_event
);
3829 wxPaintEvent
paint_event( GetId() );
3830 paint_event
.SetEventObject( this );
3831 HandleWindowEvent( paint_event
);
3833 #if wxGTK_HAS_COMPOSITING_SUPPORT
3834 if (IsTransparentBackgroundSupported())
3835 { // now composite children which need it
3836 // Overlay all our composite children on top of the painted area
3837 wxWindowList::compatibility_iterator node
;
3838 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
3840 wxWindow
*compositeChild
= node
->GetData();
3841 if (compositeChild
->GetBackgroundStyle() == wxBG_STYLE_TRANSPARENT
)
3845 cr
= gdk_cairo_create(m_wxwindow
->window
);
3846 gdk_cairo_region(cr
, m_nativeUpdateRegion
.GetRegion());
3850 GtkWidget
*child
= compositeChild
->m_wxwindow
;
3851 GtkAllocation alloc
;
3852 gtk_widget_get_allocation(child
, &alloc
);
3854 // The source data is the (composited) child
3855 gdk_cairo_set_source_window(
3856 cr
, gtk_widget_get_window(child
), alloc
.x
, alloc
.y
);
3864 #endif // wxGTK_HAS_COMPOSITING_SUPPORT
3866 m_clipPaintRegion
= false;
3868 m_updateRegion
.Clear();
3869 m_nativeUpdateRegion
.Clear();
3872 void wxWindowGTK::SetDoubleBuffered( bool on
)
3874 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
3877 gtk_widget_set_double_buffered( m_wxwindow
, on
);
3880 bool wxWindowGTK::IsDoubleBuffered() const
3882 return gtk_widget_get_double_buffered( m_wxwindow
);
3885 void wxWindowGTK::ClearBackground()
3887 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
3891 void wxWindowGTK::DoSetToolTip( wxToolTip
*tip
)
3893 if (m_tooltip
!= tip
)
3895 wxWindowBase::DoSetToolTip(tip
);
3898 m_tooltip
->GTKSetWindow(static_cast<wxWindow
*>(this));
3900 GTKApplyToolTip(NULL
);
3904 void wxWindowGTK::GTKApplyToolTip(const char* tip
)
3906 wxToolTip::GTKApply(GetConnectWidget(), tip
);
3908 #endif // wxUSE_TOOLTIPS
3910 bool wxWindowGTK::SetBackgroundColour( const wxColour
&colour
)
3912 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid window") );
3914 if (!wxWindowBase::SetBackgroundColour(colour
))
3919 // We need the pixel value e.g. for background clearing.
3920 m_backgroundColour
.CalcPixel(gtk_widget_get_colormap(m_widget
));
3923 // apply style change (forceStyle=true so that new style is applied
3924 // even if the bg colour changed from valid to wxNullColour)
3925 GTKApplyWidgetStyle(true);
3930 bool wxWindowGTK::SetForegroundColour( const wxColour
&colour
)
3932 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid window") );
3934 if (!wxWindowBase::SetForegroundColour(colour
))
3941 // We need the pixel value e.g. for background clearing.
3942 m_foregroundColour
.CalcPixel(gtk_widget_get_colormap(m_widget
));
3945 // apply style change (forceStyle=true so that new style is applied
3946 // even if the bg colour changed from valid to wxNullColour):
3947 GTKApplyWidgetStyle(true);
3952 PangoContext
*wxWindowGTK::GTKGetPangoDefaultContext()
3954 return gtk_widget_get_pango_context( m_widget
);
3957 GtkRcStyle
*wxWindowGTK::GTKCreateWidgetStyle(bool forceStyle
)
3959 // do we need to apply any changes at all?
3962 !m_foregroundColour
.IsOk() && !m_backgroundColour
.IsOk() )
3967 GtkRcStyle
*style
= gtk_rc_style_new();
3969 if ( m_font
.IsOk() )
3972 pango_font_description_copy( m_font
.GetNativeFontInfo()->description
);
3975 int flagsNormal
= 0,
3978 flagsInsensitive
= 0;
3980 if ( m_foregroundColour
.IsOk() )
3982 const GdkColor
*fg
= m_foregroundColour
.GetColor();
3984 style
->fg
[GTK_STATE_NORMAL
] =
3985 style
->text
[GTK_STATE_NORMAL
] = *fg
;
3986 flagsNormal
|= GTK_RC_FG
| GTK_RC_TEXT
;
3988 style
->fg
[GTK_STATE_PRELIGHT
] =
3989 style
->text
[GTK_STATE_PRELIGHT
] = *fg
;
3990 flagsPrelight
|= GTK_RC_FG
| GTK_RC_TEXT
;
3992 style
->fg
[GTK_STATE_ACTIVE
] =
3993 style
->text
[GTK_STATE_ACTIVE
] = *fg
;
3994 flagsActive
|= GTK_RC_FG
| GTK_RC_TEXT
;
3997 if ( m_backgroundColour
.IsOk() )
3999 const GdkColor
*bg
= m_backgroundColour
.GetColor();
4001 style
->bg
[GTK_STATE_NORMAL
] =
4002 style
->base
[GTK_STATE_NORMAL
] = *bg
;
4003 flagsNormal
|= GTK_RC_BG
| GTK_RC_BASE
;
4005 style
->bg
[GTK_STATE_PRELIGHT
] =
4006 style
->base
[GTK_STATE_PRELIGHT
] = *bg
;
4007 flagsPrelight
|= GTK_RC_BG
| GTK_RC_BASE
;
4009 style
->bg
[GTK_STATE_ACTIVE
] =
4010 style
->base
[GTK_STATE_ACTIVE
] = *bg
;
4011 flagsActive
|= GTK_RC_BG
| GTK_RC_BASE
;
4013 style
->bg
[GTK_STATE_INSENSITIVE
] =
4014 style
->base
[GTK_STATE_INSENSITIVE
] = *bg
;
4015 flagsInsensitive
|= GTK_RC_BG
| GTK_RC_BASE
;
4018 style
->color_flags
[GTK_STATE_NORMAL
] = (GtkRcFlags
)flagsNormal
;
4019 style
->color_flags
[GTK_STATE_PRELIGHT
] = (GtkRcFlags
)flagsPrelight
;
4020 style
->color_flags
[GTK_STATE_ACTIVE
] = (GtkRcFlags
)flagsActive
;
4021 style
->color_flags
[GTK_STATE_INSENSITIVE
] = (GtkRcFlags
)flagsInsensitive
;
4026 void wxWindowGTK::GTKApplyWidgetStyle(bool forceStyle
)
4028 GtkRcStyle
*style
= GTKCreateWidgetStyle(forceStyle
);
4031 DoApplyWidgetStyle(style
);
4032 g_object_unref(style
);
4035 // Style change may affect GTK+'s size calculation:
4036 InvalidateBestSize();
4039 void wxWindowGTK::DoApplyWidgetStyle(GtkRcStyle
*style
)
4043 // block the signal temporarily to avoid sending
4044 // wxSysColourChangedEvents when we change the colours ourselves
4045 bool unblock
= false;
4049 g_signal_handlers_block_by_func(
4050 m_wxwindow
, (void *)gtk_window_style_set_callback
, this);
4053 gtk_widget_modify_style(m_wxwindow
, style
);
4057 g_signal_handlers_unblock_by_func(
4058 m_wxwindow
, (void *)gtk_window_style_set_callback
, this);
4063 gtk_widget_modify_style(m_widget
, style
);
4067 bool wxWindowGTK::SetBackgroundStyle(wxBackgroundStyle style
)
4069 if (!wxWindowBase::SetBackgroundStyle(style
))
4075 window
= GTKGetDrawingWindow();
4079 GtkWidget
* const w
= GetConnectWidget();
4080 window
= w
? gtk_widget_get_window(w
) : NULL
;
4083 bool wantNoBackPixmap
= style
== wxBG_STYLE_PAINT
|| style
== wxBG_STYLE_TRANSPARENT
;
4085 if ( wantNoBackPixmap
)
4089 // Make sure GDK/X11 doesn't refresh the window
4091 gdk_window_set_back_pixmap( window
, None
, False
);
4092 m_needsStyleChange
= false;
4094 else // window not realized yet
4096 // Do when window is realized
4097 m_needsStyleChange
= true;
4100 // Don't apply widget style, or we get a grey background
4104 // apply style change (forceStyle=true so that new style is applied
4105 // even if the bg colour changed from valid to wxNullColour):
4106 GTKApplyWidgetStyle(true);
4112 bool wxWindowGTK::IsTransparentBackgroundSupported(wxString
* reason
) const
4114 #if wxGTK_HAS_COMPOSITING_SUPPORT
4115 if (gtk_check_version(wxGTK_VERSION_REQUIRED_FOR_COMPOSITING
) != NULL
)
4119 *reason
= _("GTK+ installed on this machine is too old to "
4120 "support screen compositing, please install "
4121 "GTK+ 2.12 or later.");
4127 // NB: We don't check here if the particular kind of widget supports
4128 // transparency, we check only if it would be possible for a generic window
4130 wxCHECK_MSG ( m_widget
, false, "Window must be created first" );
4132 if (!gdk_screen_is_composited(gtk_widget_get_screen(m_widget
)))
4136 *reason
= _("Compositing not supported by this system, "
4137 "please enable it in your Window Manager.");
4147 *reason
= _("This program was compiled with a too old version of GTK+, "
4148 "please rebuild with GTK+ 2.12 or newer.");
4150 #endif // wxGTK_HAS_COMPOSITING_SUPPORT/!wxGTK_HAS_COMPOSITING_SUPPORT
4155 // ----------------------------------------------------------------------------
4156 // Pop-up menu stuff
4157 // ----------------------------------------------------------------------------
4159 #if wxUSE_MENUS_NATIVE
4163 void wxPopupMenuPositionCallback( GtkMenu
*menu
,
4165 gboolean
* WXUNUSED(whatever
),
4166 gpointer user_data
)
4168 // ensure that the menu appears entirely on screen
4170 gtk_widget_get_child_requisition(GTK_WIDGET(menu
), &req
);
4172 wxSize sizeScreen
= wxGetDisplaySize();
4173 wxPoint
*pos
= (wxPoint
*)user_data
;
4175 gint xmax
= sizeScreen
.x
- req
.width
,
4176 ymax
= sizeScreen
.y
- req
.height
;
4178 *x
= pos
->x
< xmax
? pos
->x
: xmax
;
4179 *y
= pos
->y
< ymax
? pos
->y
: ymax
;
4183 bool wxWindowGTK::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
4185 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid window") );
4187 // For compatibility with other ports, pretend that the window showing the
4188 // menu has focus while the menu is shown. This is needed because the popup
4189 // menu actually steals the focus from the window it's associated it in
4190 // wxGTK unlike, say, wxMSW.
4191 wxWindowGTK
* const oldPendingFocus
= gs_pendingFocus
;
4192 gs_pendingFocus
= this;
4193 wxON_BLOCK_EXIT_SET( gs_pendingFocus
, oldPendingFocus
);
4199 GtkMenuPositionFunc posfunc
;
4200 if ( x
== -1 && y
== -1 )
4202 // use GTK's default positioning algorithm
4208 pos
= ClientToScreen(wxPoint(x
, y
));
4210 posfunc
= wxPopupMenuPositionCallback
;
4213 menu
->m_popupShown
= true;
4215 GTK_MENU(menu
->m_menu
),
4216 NULL
, // parent menu shell
4217 NULL
, // parent menu item
4218 posfunc
, // function to position it
4219 userdata
, // client data
4220 0, // button used to activate it
4221 gtk_get_current_event_time()
4224 while (menu
->m_popupShown
)
4226 gtk_main_iteration();
4232 #endif // wxUSE_MENUS_NATIVE
4234 #if wxUSE_DRAG_AND_DROP
4236 void wxWindowGTK::SetDropTarget( wxDropTarget
*dropTarget
)
4238 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
4240 GtkWidget
*dnd_widget
= GetConnectWidget();
4242 if (m_dropTarget
) m_dropTarget
->GtkUnregisterWidget( dnd_widget
);
4244 if (m_dropTarget
) delete m_dropTarget
;
4245 m_dropTarget
= dropTarget
;
4247 if (m_dropTarget
) m_dropTarget
->GtkRegisterWidget( dnd_widget
);
4250 #endif // wxUSE_DRAG_AND_DROP
4252 GtkWidget
* wxWindowGTK::GetConnectWidget()
4254 GtkWidget
*connect_widget
= m_widget
;
4255 if (m_wxwindow
) connect_widget
= m_wxwindow
;
4257 return connect_widget
;
4260 bool wxWindowGTK::GTKIsOwnWindow(GdkWindow
*window
) const
4262 wxArrayGdkWindows windowsThis
;
4263 GdkWindow
* const winThis
= GTKGetWindow(windowsThis
);
4265 return winThis
? window
== winThis
4266 : windowsThis
.Index(window
) != wxNOT_FOUND
;
4269 GdkWindow
*wxWindowGTK::GTKGetWindow(wxArrayGdkWindows
& WXUNUSED(windows
)) const
4271 return m_wxwindow
? GTKGetDrawingWindow() : gtk_widget_get_window(m_widget
);
4274 bool wxWindowGTK::SetFont( const wxFont
&font
)
4276 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid window") );
4278 if (!wxWindowBase::SetFont(font
))
4281 // apply style change (forceStyle=true so that new style is applied
4282 // even if the font changed from valid to wxNullFont):
4283 GTKApplyWidgetStyle(true);
4288 void wxWindowGTK::DoCaptureMouse()
4290 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
4292 GdkWindow
*window
= NULL
;
4294 window
= GTKGetDrawingWindow();
4296 window
= gtk_widget_get_window(GetConnectWidget());
4298 wxCHECK_RET( window
, wxT("CaptureMouse() failed") );
4300 const wxCursor
* cursor
= &m_cursor
;
4301 if (!cursor
->IsOk())
4302 cursor
= wxSTANDARD_CURSOR
;
4304 gdk_pointer_grab( window
, FALSE
,
4306 (GDK_BUTTON_PRESS_MASK
|
4307 GDK_BUTTON_RELEASE_MASK
|
4308 GDK_POINTER_MOTION_HINT_MASK
|
4309 GDK_POINTER_MOTION_MASK
),
4311 cursor
->GetCursor(),
4312 (guint32
)GDK_CURRENT_TIME
);
4313 g_captureWindow
= this;
4314 g_captureWindowHasMouse
= true;
4317 void wxWindowGTK::DoReleaseMouse()
4319 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
4321 wxCHECK_RET( g_captureWindow
, wxT("can't release mouse - not captured") );
4323 g_captureWindow
= NULL
;
4325 GdkWindow
*window
= NULL
;
4327 window
= GTKGetDrawingWindow();
4329 window
= gtk_widget_get_window(GetConnectWidget());
4334 gdk_pointer_ungrab ( (guint32
)GDK_CURRENT_TIME
);
4337 void wxWindowGTK::GTKReleaseMouseAndNotify()
4340 wxMouseCaptureLostEvent
evt(GetId());
4341 evt
.SetEventObject( this );
4342 HandleWindowEvent( evt
);
4346 wxWindow
*wxWindowBase::GetCapture()
4348 return (wxWindow
*)g_captureWindow
;
4351 bool wxWindowGTK::IsRetained() const
4356 void wxWindowGTK::SetScrollbar(int orient
,
4360 bool WXUNUSED(update
))
4362 const int dir
= ScrollDirFromOrient(orient
);
4363 GtkRange
* const sb
= m_scrollBar
[dir
];
4364 wxCHECK_RET( sb
, wxT("this window is not scrollable") );
4368 // GtkRange requires upper > lower
4373 g_signal_handlers_block_by_func(
4374 sb
, (void*)gtk_scrollbar_value_changed
, this);
4376 gtk_range_set_increments(sb
, 1, thumbVisible
);
4377 gtk_adjustment_set_page_size(gtk_range_get_adjustment(sb
), thumbVisible
);
4378 gtk_range_set_range(sb
, 0, range
);
4379 gtk_range_set_value(sb
, pos
);
4380 m_scrollPos
[dir
] = gtk_range_get_value(sb
);
4382 g_signal_handlers_unblock_by_func(
4383 sb
, (void*)gtk_scrollbar_value_changed
, this);
4386 void wxWindowGTK::SetScrollPos(int orient
, int pos
, bool WXUNUSED(refresh
))
4388 const int dir
= ScrollDirFromOrient(orient
);
4389 GtkRange
* const sb
= m_scrollBar
[dir
];
4390 wxCHECK_RET( sb
, wxT("this window is not scrollable") );
4392 // This check is more than an optimization. Without it, the slider
4393 // will not move smoothly while tracking when using wxScrollHelper.
4394 if (GetScrollPos(orient
) != pos
)
4396 g_signal_handlers_block_by_func(
4397 sb
, (void*)gtk_scrollbar_value_changed
, this);
4399 gtk_range_set_value(sb
, pos
);
4400 m_scrollPos
[dir
] = gtk_range_get_value(sb
);
4402 g_signal_handlers_unblock_by_func(
4403 sb
, (void*)gtk_scrollbar_value_changed
, this);
4407 int wxWindowGTK::GetScrollThumb(int orient
) const
4409 GtkRange
* const sb
= m_scrollBar
[ScrollDirFromOrient(orient
)];
4410 wxCHECK_MSG( sb
, 0, wxT("this window is not scrollable") );
4412 return wxRound(gtk_adjustment_get_page_size(gtk_range_get_adjustment(sb
)));
4415 int wxWindowGTK::GetScrollPos( int orient
) const
4417 GtkRange
* const sb
= m_scrollBar
[ScrollDirFromOrient(orient
)];
4418 wxCHECK_MSG( sb
, 0, wxT("this window is not scrollable") );
4420 return wxRound(gtk_range_get_value(sb
));
4423 int wxWindowGTK::GetScrollRange( int orient
) const
4425 GtkRange
* const sb
= m_scrollBar
[ScrollDirFromOrient(orient
)];
4426 wxCHECK_MSG( sb
, 0, wxT("this window is not scrollable") );
4428 return wxRound(gtk_adjustment_get_upper(gtk_range_get_adjustment(sb
)));
4431 // Determine if increment is the same as +/-x, allowing for some small
4432 // difference due to possible inexactness in floating point arithmetic
4433 static inline bool IsScrollIncrement(double increment
, double x
)
4435 wxASSERT(increment
> 0);
4436 const double tolerance
= 1.0 / 1024;
4437 return fabs(increment
- fabs(x
)) < tolerance
;
4440 wxEventType
wxWindowGTK::GTKGetScrollEventType(GtkRange
* range
)
4442 wxASSERT(range
== m_scrollBar
[0] || range
== m_scrollBar
[1]);
4444 const int barIndex
= range
== m_scrollBar
[1];
4446 const double value
= gtk_range_get_value(range
);
4448 // save previous position
4449 const double oldPos
= m_scrollPos
[barIndex
];
4450 // update current position
4451 m_scrollPos
[barIndex
] = value
;
4452 // If event should be ignored, or integral position has not changed
4453 if (!m_hasVMT
|| g_blockEventsOnDrag
|| wxRound(value
) == wxRound(oldPos
))
4458 wxEventType eventType
= wxEVT_SCROLL_THUMBTRACK
;
4461 // Difference from last change event
4462 const double diff
= value
- oldPos
;
4463 const bool isDown
= diff
> 0;
4465 GtkAdjustment
* adj
= gtk_range_get_adjustment(range
);
4466 if (IsScrollIncrement(gtk_adjustment_get_step_increment(adj
), diff
))
4468 eventType
= isDown
? wxEVT_SCROLL_LINEDOWN
: wxEVT_SCROLL_LINEUP
;
4470 else if (IsScrollIncrement(gtk_adjustment_get_page_increment(adj
), diff
))
4472 eventType
= isDown
? wxEVT_SCROLL_PAGEDOWN
: wxEVT_SCROLL_PAGEUP
;
4474 else if (m_mouseButtonDown
)
4476 // Assume track event
4477 m_isScrolling
= true;
4483 void wxWindowGTK::ScrollWindow( int dx
, int dy
, const wxRect
* WXUNUSED(rect
) )
4485 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
4487 wxCHECK_RET( m_wxwindow
!= NULL
, wxT("window needs client area for scrolling") );
4489 // No scrolling requested.
4490 if ((dx
== 0) && (dy
== 0)) return;
4492 m_clipPaintRegion
= true;
4494 WX_PIZZA(m_wxwindow
)->scroll(dx
, dy
);
4496 m_clipPaintRegion
= false;
4499 bool restoreCaret
= (GetCaret() != NULL
&& GetCaret()->IsVisible());
4502 wxRect
caretRect(GetCaret()->GetPosition(), GetCaret()->GetSize());
4504 caretRect
.width
+= dx
;
4507 caretRect
.x
+= dx
; caretRect
.width
-= dx
;
4510 caretRect
.height
+= dy
;
4513 caretRect
.y
+= dy
; caretRect
.height
-= dy
;
4516 RefreshRect(caretRect
);
4518 #endif // wxUSE_CARET
4521 void wxWindowGTK::GTKScrolledWindowSetBorder(GtkWidget
* w
, int wxstyle
)
4523 //RN: Note that static controls usually have no border on gtk, so maybe
4524 //it makes sense to treat that as simply no border at the wx level
4526 if (!(wxstyle
& wxNO_BORDER
) && !(wxstyle
& wxBORDER_STATIC
))
4528 GtkShadowType gtkstyle
;
4530 if(wxstyle
& wxBORDER_RAISED
)
4531 gtkstyle
= GTK_SHADOW_OUT
;
4532 else if ((wxstyle
& wxBORDER_SUNKEN
) || (wxstyle
& wxBORDER_THEME
))
4533 gtkstyle
= GTK_SHADOW_IN
;
4536 else if (wxstyle
& wxBORDER_DOUBLE
)
4537 gtkstyle
= GTK_SHADOW_ETCHED_IN
;
4540 gtkstyle
= GTK_SHADOW_IN
;
4542 gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(w
),
4547 // Find the wxWindow at the current mouse position, also returning the mouse
4549 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
4551 pt
= wxGetMousePosition();
4552 wxWindow
* found
= wxFindWindowAtPoint(pt
);
4556 // Get the current mouse position.
4557 wxPoint
wxGetMousePosition()
4559 wxWindow
* tlw
= NULL
;
4560 if (!wxTopLevelWindows
.empty())
4561 tlw
= wxTopLevelWindows
.front();
4562 GdkDisplay
* display
;
4563 if (tlw
&& tlw
->m_widget
)
4564 display
= gtk_widget_get_display(tlw
->m_widget
);
4566 display
= gdk_display_get_default();
4569 gdk_display_get_pointer(display
, NULL
, &x
, &y
, NULL
);
4570 return wxPoint(x
, y
);
4573 GdkWindow
* wxWindowGTK::GTKGetDrawingWindow() const
4575 GdkWindow
* window
= NULL
;
4577 window
= gtk_widget_get_window(m_wxwindow
);
4581 // ----------------------------------------------------------------------------
4583 // ----------------------------------------------------------------------------
4588 // this is called if we attempted to freeze unrealized widget when it finally
4589 // is realized (and so can be frozen):
4590 static void wx_frozen_widget_realize(GtkWidget
* w
, wxWindowGTK
* win
)
4592 wxASSERT( w
&& gtk_widget_get_has_window(w
) );
4593 wxASSERT( gtk_widget_get_realized(w
) );
4595 g_signal_handlers_disconnect_by_func
4598 (void*)wx_frozen_widget_realize
,
4603 if (w
== win
->m_wxwindow
)
4604 window
= win
->GTKGetDrawingWindow();
4606 window
= gtk_widget_get_window(w
);
4607 gdk_window_freeze_updates(window
);
4612 void wxWindowGTK::GTKFreezeWidget(GtkWidget
*w
)
4614 if ( !w
|| !gtk_widget_get_has_window(w
) )
4615 return; // window-less widget, cannot be frozen
4617 GdkWindow
* window
= gtk_widget_get_window(w
);
4620 // we can't thaw unrealized widgets because they don't have GdkWindow,
4621 // so set it up to be done immediately after realization:
4622 g_signal_connect_after
4626 G_CALLBACK(wx_frozen_widget_realize
),
4632 if (w
== m_wxwindow
)
4633 window
= GTKGetDrawingWindow();
4634 gdk_window_freeze_updates(window
);
4637 void wxWindowGTK::GTKThawWidget(GtkWidget
*w
)
4639 if ( !w
|| !gtk_widget_get_has_window(w
) )
4640 return; // window-less widget, cannot be frozen
4642 GdkWindow
* window
= gtk_widget_get_window(w
);
4645 // the widget wasn't realized yet, no need to thaw
4646 g_signal_handlers_disconnect_by_func
4649 (void*)wx_frozen_widget_realize
,
4655 if (w
== m_wxwindow
)
4656 window
= GTKGetDrawingWindow();
4657 gdk_window_thaw_updates(window
);
4660 void wxWindowGTK::DoFreeze()
4662 GTKFreezeWidget(m_widget
);
4663 if ( m_wxwindow
&& m_widget
!= m_wxwindow
)
4664 GTKFreezeWidget(m_wxwindow
);
4667 void wxWindowGTK::DoThaw()
4669 GTKThawWidget(m_widget
);
4670 if ( m_wxwindow
&& m_widget
!= m_wxwindow
)
4671 GTKThawWidget(m_wxwindow
);