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/sysopt.h"
38 #include "wx/gtk/private.h"
39 #include "wx/gtk/private/win_gtk.h"
40 #include "wx/gtk/private/event.h"
41 using namespace wxGTKImpl
;
45 #include <gdk/gdkkeysyms.h>
46 #if GTK_CHECK_VERSION(3,0,0)
47 #include <gdk/gdkkeysyms-compat.h>
50 //-----------------------------------------------------------------------------
51 // documentation on internals
52 //-----------------------------------------------------------------------------
55 I have been asked several times about writing some documentation about
56 the GTK port of wxWidgets, especially its internal structures. Obviously,
57 you cannot understand wxGTK without knowing a little about the GTK, but
58 some more information about what the wxWindow, which is the base class
59 for all other window classes, does seems required as well.
63 What does wxWindow do? It contains the common interface for the following
64 jobs of its descendants:
66 1) Define the rudimentary behaviour common to all window classes, such as
67 resizing, intercepting user input (so as to make it possible to use these
68 events for special purposes in a derived class), window names etc.
70 2) Provide the possibility to contain and manage children, if the derived
71 class is allowed to contain children, which holds true for those window
72 classes which do not display a native GTK widget. To name them, these
73 classes are wxPanel, wxScrolledWindow, wxDialog, wxFrame. The MDI frame-
74 work classes are a special case and are handled a bit differently from
75 the rest. The same holds true for the wxNotebook class.
77 3) Provide the possibility to draw into a client area of a window. This,
78 too, only holds true for classes that do not display a native GTK widget
81 4) Provide the entire mechanism for scrolling widgets. This actual inter-
82 face for this is usually in wxScrolledWindow, but the GTK implementation
85 5) A multitude of helper or extra methods for special purposes, such as
86 Drag'n'Drop, managing validators etc.
88 6) Display a border (sunken, raised, simple or none).
90 Normally one might expect, that one wxWidgets window would always correspond
91 to one GTK widget. Under GTK, there is no such all-round widget that has all
92 the functionality. Moreover, the GTK defines a client area as a different
93 widget from the actual widget you are handling. Last but not least some
94 special classes (e.g. wxFrame) handle different categories of widgets and
95 still have the possibility to draw something in the client area.
96 It was therefore required to write a special purpose GTK widget, that would
97 represent a client area in the sense of wxWidgets capable to do the jobs
98 2), 3) and 4). I have written this class and it resides in win_gtk.c of
101 All windows must have a widget, with which they interact with other under-
102 lying GTK widgets. It is this widget, e.g. that has to be resized etc and
103 the wxWindow class has a member variable called m_widget which holds a
104 pointer to this widget. When the window class represents a GTK native widget,
105 this is (in most cases) the only GTK widget the class manages. E.g. the
106 wxStaticText class handles only a GtkLabel widget a pointer to which you
107 can find in m_widget (defined in wxWindow)
109 When the class has a client area for drawing into and for containing children
110 it has to handle the client area widget (of the type wxPizza, defined in
111 win_gtk.cpp), but there could be any number of widgets, handled by a class.
112 The common rule for all windows is only, that the widget that interacts with
113 the rest of GTK must be referenced in m_widget and all other widgets must be
114 children of this widget on the GTK level. The top-most widget, which also
115 represents the client area, must be in the m_wxwindow field and must be of
118 As I said, the window classes that display a GTK native widget only have
119 one widget, so in the case of e.g. the wxButton class m_widget holds a
120 pointer to a GtkButton widget. But windows with client areas (for drawing
121 and children) have a m_widget field that is a pointer to a GtkScrolled-
122 Window and a m_wxwindow field that is pointer to a wxPizza and this
123 one is (in the GTK sense) a child of the GtkScrolledWindow.
125 If the m_wxwindow field is set, then all input to this widget is inter-
126 cepted and sent to the wxWidgets class. If not, all input to the widget
127 that gets pointed to by m_widget gets intercepted and sent to the class.
131 The design of scrolling in wxWidgets is markedly different from that offered
132 by the GTK itself and therefore we cannot simply take it as it is. In GTK,
133 clicking on a scrollbar belonging to scrolled window will inevitably move
134 the window. In wxWidgets, the scrollbar will only emit an event, send this
135 to (normally) a wxScrolledWindow and that class will call ScrollWindow()
136 which actually moves the window and its sub-windows. Note that wxPizza
137 memorizes how much it has been scrolled but that wxWidgets forgets this
138 so that the two coordinates systems have to be kept in synch. This is done
139 in various places using the pizza->m_scroll_x and pizza->m_scroll_y values.
143 Singularly the most broken code in GTK is the code that is supposed to
144 inform subwindows (child windows) about new positions. Very often, duplicate
145 events are sent without changes in size or position, equally often no
146 events are sent at all (All this is due to a bug in the GtkContainer code
147 which got fixed in GTK 1.2.6). For that reason, wxGTK completely ignores
148 GTK's own system and it simply waits for size events for toplevel windows
149 and then iterates down the respective size events to all window. This has
150 the disadvantage that windows might get size events before the GTK widget
151 actually has the reported size. This doesn't normally pose any problem, but
152 the OpenGL drawing routines rely on correct behaviour. Therefore, I have
153 added the m_nativeSizeEvents flag, which is true only for the OpenGL canvas,
154 i.e. the wxGLCanvas will emit a size event, when (and not before) the X11
155 window that is used for OpenGL output really has that size (as reported by
160 If someone at some point of time feels the immense desire to have a look at,
161 change or attempt to optimise the Refresh() logic, this person will need an
162 intimate understanding of what "draw" and "expose" events are and what
163 they are used for, in particular when used in connection with GTK's
164 own windowless widgets. Beware.
168 Cursors, too, have been a constant source of pleasure. The main difficulty
169 is that a GdkWindow inherits a cursor if the programmer sets a new cursor
170 for the parent. To prevent this from doing too much harm, SetCursor calls
171 GTKUpdateCursor, which will recursively re-set the cursors of all child windows.
172 Also don't forget that cursors (like much else) are connected to GdkWindows,
173 not GtkWidgets and that the "window" field of a GtkWidget might very well
174 point to the GdkWindow of the parent widget (-> "window-less widget") and
175 that the two obviously have very different meanings.
178 //-----------------------------------------------------------------------------
180 //-----------------------------------------------------------------------------
182 // Don't allow event propagation during drag
183 bool g_blockEventsOnDrag
;
184 // Don't allow mouse event propagation during scroll
185 bool g_blockEventsOnScroll
;
186 extern wxCursor g_globalCursor
;
188 // mouse capture state: the window which has it and if the mouse is currently
190 static wxWindowGTK
*g_captureWindow
= NULL
;
191 static bool g_captureWindowHasMouse
= false;
193 // The window that currently has focus:
194 static wxWindowGTK
*gs_currentFocus
= NULL
;
195 // The window that is scheduled to get focus in the next event loop iteration
196 // or NULL if there's no pending focus change:
197 static wxWindowGTK
*gs_pendingFocus
= NULL
;
199 // the window that has deferred focus-out event pending, if any (see
200 // GTKAddDeferredFocusOut() for details)
201 static wxWindowGTK
*gs_deferredFocusOut
= NULL
;
203 // global variables because GTK+ DnD want to have the
204 // mouse event that caused it
205 GdkEvent
*g_lastMouseEvent
= NULL
;
206 int g_lastButtonNumber
= 0;
208 //-----------------------------------------------------------------------------
210 //-----------------------------------------------------------------------------
212 // the trace mask used for the focus debugging messages
213 #define TRACE_FOCUS wxT("focus")
215 //-----------------------------------------------------------------------------
216 // "size_request" of m_widget
217 //-----------------------------------------------------------------------------
221 wxgtk_window_size_request_callback(GtkWidget
* WXUNUSED(widget
),
222 GtkRequisition
*requisition
,
226 win
->GetSize( &w
, &h
);
232 requisition
->height
= h
;
233 requisition
->width
= w
;
237 //-----------------------------------------------------------------------------
238 // "expose_event" of m_wxwindow
239 //-----------------------------------------------------------------------------
243 gtk_window_expose_callback( GtkWidget
*,
244 GdkEventExpose
*gdk_event
,
247 if (gdk_event
->window
== win
->GTKGetDrawingWindow())
249 win
->GetUpdateRegion() = wxRegion( gdk_event
->region
);
250 win
->GtkSendPaintEvents();
252 // Let parent window draw window-less widgets
257 #ifndef __WXUNIVERSAL__
258 //-----------------------------------------------------------------------------
259 // "expose_event" from m_wxwindow->parent, for drawing border
260 //-----------------------------------------------------------------------------
264 expose_event_border(GtkWidget
* widget
, GdkEventExpose
* gdk_event
, wxWindow
* win
)
266 if (gdk_event
->window
!= gtk_widget_get_parent_window(win
->m_wxwindow
))
273 gtk_widget_get_allocation(win
->m_wxwindow
, &alloc
);
274 const int x
= alloc
.x
;
275 const int y
= alloc
.y
;
276 const int w
= alloc
.width
;
277 const int h
= alloc
.height
;
279 if (w
<= 0 || h
<= 0)
282 if (win
->HasFlag(wxBORDER_SIMPLE
))
284 gdk_draw_rectangle(gdk_event
->window
,
285 gtk_widget_get_style(widget
)->black_gc
, false, x
, y
, w
- 1, h
- 1);
289 GtkShadowType shadow
= GTK_SHADOW_IN
;
290 if (win
->HasFlag(wxBORDER_RAISED
))
291 shadow
= GTK_SHADOW_OUT
;
293 // Style detail to use
295 if (win
->m_widget
== win
->m_wxwindow
)
296 // for non-scrollable wxWindows
299 // for scrollable ones
302 // clip rect is required to avoid painting background
303 // over upper left (w,h) of parent window
304 GdkRectangle clipRect
= { x
, y
, w
, h
};
306 gtk_widget_get_style(win
->m_wxwindow
), gdk_event
->window
, GTK_STATE_NORMAL
,
307 shadow
, &clipRect
, wxGTKPrivate::GetEntryWidget(), detail
, x
, y
, w
, h
);
313 //-----------------------------------------------------------------------------
314 // "parent_set" from m_wxwindow
315 //-----------------------------------------------------------------------------
319 parent_set(GtkWidget
* widget
, GtkWidget
* old_parent
, wxWindow
* win
)
323 g_signal_handlers_disconnect_by_func(
324 old_parent
, (void*)expose_event_border
, win
);
326 GtkWidget
* parent
= gtk_widget_get_parent(widget
);
329 g_signal_connect_after(parent
, "expose_event",
330 G_CALLBACK(expose_event_border
), win
);
334 #endif // !__WXUNIVERSAL__
336 //-----------------------------------------------------------------------------
337 // "key_press_event" from any window
338 //-----------------------------------------------------------------------------
340 // These are used when transforming Ctrl-alpha to ascii values 1-26
341 inline bool wxIsLowerChar(int code
)
343 return (code
>= 'a' && code
<= 'z' );
346 inline bool wxIsUpperChar(int code
)
348 return (code
>= 'A' && code
<= 'Z' );
352 // set WXTRACE to this to see the key event codes on the console
353 #define TRACE_KEYS wxT("keyevent")
355 // translates an X key symbol to WXK_XXX value
357 // if isChar is true it means that the value returned will be used for EVT_CHAR
358 // event and then we choose the logical WXK_XXX, i.e. '/' for GDK_KP_Divide,
359 // for example, while if it is false it means that the value is going to be
360 // used for KEY_DOWN/UP events and then we translate GDK_KP_Divide to
362 static long wxTranslateKeySymToWXKey(KeySym keysym
, bool isChar
)
368 // Shift, Control and Alt don't generate the CHAR events at all
371 key_code
= isChar
? 0 : WXK_SHIFT
;
375 key_code
= isChar
? 0 : WXK_CONTROL
;
383 key_code
= isChar
? 0 : WXK_ALT
;
386 // neither do the toggle modifies
387 case GDK_Scroll_Lock
:
388 key_code
= isChar
? 0 : WXK_SCROLL
;
392 key_code
= isChar
? 0 : WXK_CAPITAL
;
396 key_code
= isChar
? 0 : WXK_NUMLOCK
;
400 // various other special keys
413 case GDK_ISO_Left_Tab
:
420 key_code
= WXK_RETURN
;
424 key_code
= WXK_CLEAR
;
428 key_code
= WXK_PAUSE
;
432 key_code
= WXK_SELECT
;
436 key_code
= WXK_PRINT
;
440 key_code
= WXK_EXECUTE
;
444 key_code
= WXK_ESCAPE
;
447 // cursor and other extended keyboard keys
449 key_code
= WXK_DELETE
;
465 key_code
= WXK_RIGHT
;
472 case GDK_Prior
: // == GDK_Page_Up
473 key_code
= WXK_PAGEUP
;
476 case GDK_Next
: // == GDK_Page_Down
477 key_code
= WXK_PAGEDOWN
;
489 key_code
= WXK_INSERT
;
504 key_code
= (isChar
? '0' : int(WXK_NUMPAD0
)) + keysym
- GDK_KP_0
;
508 key_code
= isChar
? ' ' : int(WXK_NUMPAD_SPACE
);
512 key_code
= isChar
? WXK_TAB
: WXK_NUMPAD_TAB
;
516 key_code
= isChar
? WXK_RETURN
: WXK_NUMPAD_ENTER
;
520 key_code
= isChar
? WXK_F1
: WXK_NUMPAD_F1
;
524 key_code
= isChar
? WXK_F2
: WXK_NUMPAD_F2
;
528 key_code
= isChar
? WXK_F3
: WXK_NUMPAD_F3
;
532 key_code
= isChar
? WXK_F4
: WXK_NUMPAD_F4
;
536 key_code
= isChar
? WXK_HOME
: WXK_NUMPAD_HOME
;
540 key_code
= isChar
? WXK_LEFT
: WXK_NUMPAD_LEFT
;
544 key_code
= isChar
? WXK_UP
: WXK_NUMPAD_UP
;
548 key_code
= isChar
? WXK_RIGHT
: WXK_NUMPAD_RIGHT
;
552 key_code
= isChar
? WXK_DOWN
: WXK_NUMPAD_DOWN
;
555 case GDK_KP_Prior
: // == GDK_KP_Page_Up
556 key_code
= isChar
? WXK_PAGEUP
: WXK_NUMPAD_PAGEUP
;
559 case GDK_KP_Next
: // == GDK_KP_Page_Down
560 key_code
= isChar
? WXK_PAGEDOWN
: WXK_NUMPAD_PAGEDOWN
;
564 key_code
= isChar
? WXK_END
: WXK_NUMPAD_END
;
568 key_code
= isChar
? WXK_HOME
: WXK_NUMPAD_BEGIN
;
572 key_code
= isChar
? WXK_INSERT
: WXK_NUMPAD_INSERT
;
576 key_code
= isChar
? WXK_DELETE
: WXK_NUMPAD_DELETE
;
580 key_code
= isChar
? '=' : int(WXK_NUMPAD_EQUAL
);
583 case GDK_KP_Multiply
:
584 key_code
= isChar
? '*' : int(WXK_NUMPAD_MULTIPLY
);
588 key_code
= isChar
? '+' : int(WXK_NUMPAD_ADD
);
591 case GDK_KP_Separator
:
592 // FIXME: what is this?
593 key_code
= isChar
? '.' : int(WXK_NUMPAD_SEPARATOR
);
596 case GDK_KP_Subtract
:
597 key_code
= isChar
? '-' : int(WXK_NUMPAD_SUBTRACT
);
601 key_code
= isChar
? '.' : int(WXK_NUMPAD_DECIMAL
);
605 key_code
= isChar
? '/' : int(WXK_NUMPAD_DIVIDE
);
622 key_code
= WXK_F1
+ keysym
- GDK_F1
;
632 static inline bool wxIsAsciiKeysym(KeySym ks
)
637 static void wxFillOtherKeyEventFields(wxKeyEvent
& event
,
639 GdkEventKey
*gdk_event
)
641 event
.SetTimestamp( gdk_event
->time
);
642 event
.SetId(win
->GetId());
644 event
.m_shiftDown
= (gdk_event
->state
& GDK_SHIFT_MASK
) != 0;
645 event
.m_controlDown
= (gdk_event
->state
& GDK_CONTROL_MASK
) != 0;
646 event
.m_altDown
= (gdk_event
->state
& GDK_MOD1_MASK
) != 0;
647 event
.m_metaDown
= (gdk_event
->state
& GDK_META_MASK
) != 0;
649 // Normally we take the state of modifiers directly from the low level GDK
650 // event but unfortunately GDK uses a different convention from MSW for the
651 // key events corresponding to the modifier keys themselves: in it, when
652 // e.g. Shift key is pressed, GDK_SHIFT_MASK is not set while it is set
653 // when Shift is released. Under MSW the situation is exactly reversed and
654 // the modifier corresponding to the key is set when it is pressed and
655 // unset when it is released. To ensure consistent behaviour between
656 // platforms (and because it seems to make slightly more sense, although
657 // arguably both behaviours are reasonable) we follow MSW here.
659 // Final notice: we set the flags to the desired value instead of just
660 // inverting them because they are not set correctly (i.e. in the same way
661 // as for the real events generated by the user) for wxUIActionSimulator-
662 // produced events and it seems better to keep that class code the same
663 // among all platforms and fix the discrepancy here instead of adding
664 // wxGTK-specific code to wxUIActionSimulator.
665 const bool isPress
= gdk_event
->type
== GDK_KEY_PRESS
;
666 switch ( gdk_event
->keyval
)
670 event
.m_shiftDown
= isPress
;
675 event
.m_controlDown
= isPress
;
680 event
.m_altDown
= isPress
;
687 event
.m_metaDown
= isPress
;
691 event
.m_rawCode
= (wxUint32
) gdk_event
->keyval
;
692 event
.m_rawFlags
= gdk_event
->hardware_keycode
;
694 wxGetMousePosition(&event
.m_x
, &event
.m_y
);
695 win
->ScreenToClient(&event
.m_x
, &event
.m_y
);
696 event
.SetEventObject( win
);
701 wxTranslateGTKKeyEventToWx(wxKeyEvent
& event
,
703 GdkEventKey
*gdk_event
)
705 // VZ: it seems that GDK_KEY_RELEASE event doesn't set event->string
706 // but only event->keyval which is quite useless to us, so remember
707 // the last character from GDK_KEY_PRESS and reuse it as last resort
709 // NB: should be MT-safe as we're always called from the main thread only
714 } s_lastKeyPress
= { 0, 0 };
716 KeySym keysym
= gdk_event
->keyval
;
718 wxLogTrace(TRACE_KEYS
, wxT("Key %s event: keysym = %ld"),
719 event
.GetEventType() == wxEVT_KEY_UP
? wxT("release")
723 long key_code
= wxTranslateKeySymToWXKey(keysym
, false /* !isChar */);
727 // do we have the translation or is it a plain ASCII character?
728 if ( (gdk_event
->length
== 1) || wxIsAsciiKeysym(keysym
) )
730 // we should use keysym if it is ASCII as X does some translations
731 // like "I pressed while Control is down" => "Ctrl-I" == "TAB"
732 // which we don't want here (but which we do use for OnChar())
733 if ( !wxIsAsciiKeysym(keysym
) )
735 keysym
= (KeySym
)gdk_event
->string
[0];
738 // we want to always get the same key code when the same key is
739 // pressed regardless of the state of the modifiers, i.e. on a
740 // standard US keyboard pressing '5' or '%' ('5' key with
741 // Shift) should result in the same key code in OnKeyDown():
742 // '5' (although OnChar() will get either '5' or '%').
744 // to do it we first translate keysym to keycode (== scan code)
745 // and then back but always using the lower register
746 Display
*dpy
= (Display
*)wxGetDisplay();
747 KeyCode keycode
= XKeysymToKeycode(dpy
, keysym
);
749 wxLogTrace(TRACE_KEYS
, wxT("\t-> keycode %d"), keycode
);
751 KeySym keysymNormalized
= XKeycodeToKeysym(dpy
, keycode
, 0);
753 // use the normalized, i.e. lower register, keysym if we've
755 key_code
= keysymNormalized
? keysymNormalized
: keysym
;
757 // as explained above, we want to have lower register key codes
758 // normally but for the letter keys we want to have the upper ones
760 // NB: don't use XConvertCase() here, we want to do it for letters
762 key_code
= toupper(key_code
);
764 else // non ASCII key, what to do?
766 // by default, ignore it
769 // but if we have cached information from the last KEY_PRESS
770 if ( gdk_event
->type
== GDK_KEY_RELEASE
)
773 if ( keysym
== s_lastKeyPress
.keysym
)
775 key_code
= s_lastKeyPress
.keycode
;
780 if ( gdk_event
->type
== GDK_KEY_PRESS
)
782 // remember it to be reused for KEY_UP event later
783 s_lastKeyPress
.keysym
= keysym
;
784 s_lastKeyPress
.keycode
= key_code
;
788 wxLogTrace(TRACE_KEYS
, wxT("\t-> wxKeyCode %ld"), key_code
);
790 // sending unknown key events doesn't really make sense
794 event
.m_keyCode
= key_code
;
797 event
.m_uniChar
= gdk_keyval_to_unicode(key_code
? key_code
: keysym
);
798 if ( !event
.m_uniChar
&& event
.m_keyCode
<= WXK_DELETE
)
800 // Set Unicode key code to the ASCII equivalent for compatibility. E.g.
801 // let RETURN generate the key event with both key and Unicode key
803 event
.m_uniChar
= event
.m_keyCode
;
805 #endif // wxUSE_UNICODE
807 // now fill all the other fields
808 wxFillOtherKeyEventFields(event
, win
, gdk_event
);
816 GtkIMContext
*context
;
817 GdkEventKey
*lastKeyEvent
;
821 context
= gtk_im_multicontext_new();
826 g_object_unref (context
);
833 // Send wxEVT_CHAR_HOOK event to the parent of the window and if it wasn't
834 // processed, send wxEVT_CHAR to the window itself. Return true if either of
837 SendCharHookAndCharEvents(const wxKeyEvent
& event
, wxWindow
*win
)
839 // wxEVT_CHAR_HOOK must be sent to the top level parent window to allow it
840 // to handle key events in all of its children unless the mouse is captured
841 // in which case we consider that the keyboard should be "captured" too.
842 if ( !g_captureWindow
)
844 wxWindow
* const parent
= wxGetTopLevelParent(win
);
847 // We need to make a copy of the event object because it is
848 // modified while it's handled, notably its WasProcessed() flag
849 // is set after it had been processed once.
850 wxKeyEvent
eventCharHook(event
);
851 eventCharHook
.SetEventType(wxEVT_CHAR_HOOK
);
852 if ( parent
->HandleWindowEvent(eventCharHook
) )
857 // As above, make a copy of the event first.
858 wxKeyEvent
eventChar(event
);
859 eventChar
.SetEventType(wxEVT_CHAR
);
860 return win
->HandleWindowEvent(eventChar
);
863 } // anonymous namespace
867 gtk_window_key_press_callback( GtkWidget
*WXUNUSED(widget
),
868 GdkEventKey
*gdk_event
,
873 if (g_blockEventsOnDrag
)
876 wxKeyEvent
event( wxEVT_KEY_DOWN
);
878 bool return_after_IM
= false;
880 if( wxTranslateGTKKeyEventToWx(event
, win
, gdk_event
) )
882 // Emit KEY_DOWN event
883 ret
= win
->HandleWindowEvent( event
);
887 // Return after IM processing as we cannot do
888 // anything with it anyhow.
889 return_after_IM
= true;
892 if (!ret
&& win
->m_imData
)
894 win
->m_imData
->lastKeyEvent
= gdk_event
;
896 // We should let GTK+ IM filter key event first. According to GTK+ 2.0 API
897 // docs, if IM filter returns true, no further processing should be done.
898 // we should send the key_down event anyway.
899 bool intercepted_by_IM
= gtk_im_context_filter_keypress(win
->m_imData
->context
, gdk_event
);
900 win
->m_imData
->lastKeyEvent
= NULL
;
901 if (intercepted_by_IM
)
903 wxLogTrace(TRACE_KEYS
, wxT("Key event intercepted by IM"));
914 wxWindowGTK
*ancestor
= win
;
917 int command
= ancestor
->GetAcceleratorTable()->GetCommand( event
);
920 wxCommandEvent
menu_event( wxEVT_COMMAND_MENU_SELECTED
, command
);
921 ret
= ancestor
->HandleWindowEvent( menu_event
);
925 // if the accelerator wasn't handled as menu event, try
926 // it as button click (for compatibility with other
928 wxCommandEvent
button_event( wxEVT_COMMAND_BUTTON_CLICKED
, command
);
929 ret
= ancestor
->HandleWindowEvent( button_event
);
934 if (ancestor
->IsTopLevel())
936 ancestor
= ancestor
->GetParent();
939 #endif // wxUSE_ACCEL
941 // Only send wxEVT_CHAR event if not processed yet. Thus, ALT-x
942 // will only be sent if it is not in an accelerator table.
946 KeySym keysym
= gdk_event
->keyval
;
947 // Find key code for EVT_CHAR and EVT_CHAR_HOOK events
948 key_code
= wxTranslateKeySymToWXKey(keysym
, true /* isChar */);
951 if ( wxIsAsciiKeysym(keysym
) )
954 key_code
= (unsigned char)keysym
;
956 // gdk_event->string is actually deprecated
957 else if ( gdk_event
->length
== 1 )
959 key_code
= (unsigned char)gdk_event
->string
[0];
965 wxLogTrace(TRACE_KEYS
, wxT("Char event: %ld"), key_code
);
967 event
.m_keyCode
= key_code
;
969 // To conform to the docs we need to translate Ctrl-alpha
970 // characters to values in the range 1-26.
971 if ( event
.ControlDown() &&
972 ( wxIsLowerChar(key_code
) || wxIsUpperChar(key_code
) ))
974 if ( wxIsLowerChar(key_code
) )
975 event
.m_keyCode
= key_code
- 'a' + 1;
976 if ( wxIsUpperChar(key_code
) )
977 event
.m_keyCode
= key_code
- 'A' + 1;
979 event
.m_uniChar
= event
.m_keyCode
;
983 ret
= SendCharHookAndCharEvents(event
, win
);
993 gtk_wxwindow_commit_cb (GtkIMContext
* WXUNUSED(context
),
997 wxKeyEvent
event( wxEVT_KEY_DOWN
);
999 // take modifiers, cursor position, timestamp etc. from the last
1000 // key_press_event that was fed into Input Method:
1001 if (window
->m_imData
->lastKeyEvent
)
1003 wxFillOtherKeyEventFields(event
,
1004 window
, window
->m_imData
->lastKeyEvent
);
1008 event
.SetEventObject( window
);
1011 const wxString
data(wxGTK_CONV_BACK_SYS(str
));
1015 for( wxString::const_iterator pstr
= data
.begin(); pstr
!= data
.end(); ++pstr
)
1018 event
.m_uniChar
= *pstr
;
1019 // Backward compatible for ISO-8859-1
1020 event
.m_keyCode
= *pstr
< 256 ? event
.m_uniChar
: 0;
1021 wxLogTrace(TRACE_KEYS
, wxT("IM sent character '%c'"), event
.m_uniChar
);
1023 event
.m_keyCode
= (char)*pstr
;
1024 #endif // wxUSE_UNICODE
1026 // To conform to the docs we need to translate Ctrl-alpha
1027 // characters to values in the range 1-26.
1028 if ( event
.ControlDown() &&
1029 ( wxIsLowerChar(*pstr
) || wxIsUpperChar(*pstr
) ))
1031 if ( wxIsLowerChar(*pstr
) )
1032 event
.m_keyCode
= *pstr
- 'a' + 1;
1033 if ( wxIsUpperChar(*pstr
) )
1034 event
.m_keyCode
= *pstr
- 'A' + 1;
1036 event
.m_keyCode
= *pstr
- 'a' + 1;
1038 event
.m_uniChar
= event
.m_keyCode
;
1042 SendCharHookAndCharEvents(event
, window
);
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 // ============================================================================
1077 // ============================================================================
1079 // ----------------------------------------------------------------------------
1080 // mouse event processing helpers
1081 // ----------------------------------------------------------------------------
1083 static void AdjustEventButtonState(wxMouseEvent
& event
)
1085 // GDK reports the old state of the button for a button press event, but
1086 // for compatibility with MSW and common sense we want m_leftDown be TRUE
1087 // for a LEFT_DOWN event, not FALSE, so we will invert
1088 // left/right/middleDown for the corresponding click events
1090 if ((event
.GetEventType() == wxEVT_LEFT_DOWN
) ||
1091 (event
.GetEventType() == wxEVT_LEFT_DCLICK
) ||
1092 (event
.GetEventType() == wxEVT_LEFT_UP
))
1094 event
.m_leftDown
= !event
.m_leftDown
;
1098 if ((event
.GetEventType() == wxEVT_MIDDLE_DOWN
) ||
1099 (event
.GetEventType() == wxEVT_MIDDLE_DCLICK
) ||
1100 (event
.GetEventType() == wxEVT_MIDDLE_UP
))
1102 event
.m_middleDown
= !event
.m_middleDown
;
1106 if ((event
.GetEventType() == wxEVT_RIGHT_DOWN
) ||
1107 (event
.GetEventType() == wxEVT_RIGHT_DCLICK
) ||
1108 (event
.GetEventType() == wxEVT_RIGHT_UP
))
1110 event
.m_rightDown
= !event
.m_rightDown
;
1114 if ((event
.GetEventType() == wxEVT_AUX1_DOWN
) ||
1115 (event
.GetEventType() == wxEVT_AUX1_DCLICK
))
1117 event
.m_aux1Down
= true;
1121 if ((event
.GetEventType() == wxEVT_AUX2_DOWN
) ||
1122 (event
.GetEventType() == wxEVT_AUX2_DCLICK
))
1124 event
.m_aux2Down
= true;
1129 // find the window to send the mouse event too
1131 wxWindowGTK
*FindWindowForMouseEvent(wxWindowGTK
*win
, wxCoord
& x
, wxCoord
& y
)
1136 if (win
->m_wxwindow
)
1138 wxPizza
* pizza
= WX_PIZZA(win
->m_wxwindow
);
1139 xx
+= pizza
->m_scroll_x
;
1140 yy
+= pizza
->m_scroll_y
;
1143 wxWindowList::compatibility_iterator node
= win
->GetChildren().GetFirst();
1146 wxWindowGTK
*child
= node
->GetData();
1148 node
= node
->GetNext();
1149 if (!child
->IsShown())
1152 if (child
->GTKIsTransparentForMouse())
1154 // wxStaticBox is transparent in the box itself
1155 int xx1
= child
->m_x
;
1156 int yy1
= child
->m_y
;
1157 int xx2
= child
->m_x
+ child
->m_width
;
1158 int yy2
= child
->m_y
+ child
->m_height
;
1161 if (((xx
>= xx1
) && (xx
<= xx1
+10) && (yy
>= yy1
) && (yy
<= yy2
)) ||
1163 ((xx
>= xx2
-10) && (xx
<= xx2
) && (yy
>= yy1
) && (yy
<= yy2
)) ||
1165 ((xx
>= xx1
) && (xx
<= xx2
) && (yy
>= yy1
) && (yy
<= yy1
+10)) ||
1167 ((xx
>= xx1
) && (xx
<= xx2
) && (yy
>= yy2
-1) && (yy
<= yy2
)))
1178 if ((child
->m_wxwindow
== NULL
) &&
1179 (child
->m_x
<= xx
) &&
1180 (child
->m_y
<= yy
) &&
1181 (child
->m_x
+child
->m_width
>= xx
) &&
1182 (child
->m_y
+child
->m_height
>= yy
))
1195 // ----------------------------------------------------------------------------
1196 // common event handlers helpers
1197 // ----------------------------------------------------------------------------
1199 bool wxWindowGTK::GTKProcessEvent(wxEvent
& event
) const
1201 // nothing special at this level
1202 return HandleWindowEvent(event
);
1205 bool wxWindowGTK::GTKShouldIgnoreEvent() const
1207 return !m_hasVMT
|| g_blockEventsOnDrag
;
1210 int wxWindowGTK::GTKCallbackCommonPrologue(GdkEventAny
*event
) const
1214 if (g_blockEventsOnDrag
)
1216 if (g_blockEventsOnScroll
)
1219 if (!GTKIsOwnWindow(event
->window
))
1225 // overloads for all GDK event types we use here: we need to have this as
1226 // GdkEventXXX can't be implicitly cast to GdkEventAny even if it, in fact,
1227 // derives from it in the sense that the structs have the same layout
1228 #define wxDEFINE_COMMON_PROLOGUE_OVERLOAD(T) \
1229 static int wxGtkCallbackCommonPrologue(T *event, wxWindowGTK *win) \
1231 return win->GTKCallbackCommonPrologue((GdkEventAny *)event); \
1234 wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventButton
)
1235 wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventMotion
)
1236 wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventCrossing
)
1238 #undef wxDEFINE_COMMON_PROLOGUE_OVERLOAD
1240 #define wxCOMMON_CALLBACK_PROLOGUE(event, win) \
1241 const int rc = wxGtkCallbackCommonPrologue(event, win); \
1245 // all event handlers must have C linkage as they're called from GTK+ C code
1249 //-----------------------------------------------------------------------------
1250 // "button_press_event"
1251 //-----------------------------------------------------------------------------
1254 gtk_window_button_press_callback( GtkWidget
*widget
,
1255 GdkEventButton
*gdk_event
,
1258 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1260 g_lastButtonNumber
= gdk_event
->button
;
1262 // GDK sends surplus button down events
1263 // before a double click event. We
1264 // need to filter these out.
1265 if ((gdk_event
->type
== GDK_BUTTON_PRESS
) && (win
->m_wxwindow
))
1267 GdkEvent
*peek_event
= gdk_event_peek();
1270 if ((peek_event
->type
== GDK_2BUTTON_PRESS
) ||
1271 (peek_event
->type
== GDK_3BUTTON_PRESS
))
1273 gdk_event_free( peek_event
);
1278 gdk_event_free( peek_event
);
1283 wxEventType event_type
= wxEVT_NULL
;
1285 if ( gdk_event
->type
== GDK_2BUTTON_PRESS
&&
1286 gdk_event
->button
>= 1 && gdk_event
->button
<= 3 )
1288 // Reset GDK internal timestamp variables in order to disable GDK
1289 // triple click events. GDK will then next time believe no button has
1290 // been clicked just before, and send a normal button click event.
1291 GdkDisplay
* display
= gtk_widget_get_display (widget
);
1292 display
->button_click_time
[1] = 0;
1293 display
->button_click_time
[0] = 0;
1296 if (gdk_event
->button
== 1)
1298 // note that GDK generates triple click events which are not supported
1299 // by wxWidgets but still have to be passed to the app as otherwise
1300 // clicks would simply go missing
1301 switch (gdk_event
->type
)
1303 // we shouldn't get triple clicks at all for GTK2 because we
1304 // suppress them artificially using the code above but we still
1305 // should map them to something for GTK1 and not just ignore them
1306 // as this would lose clicks
1307 case GDK_3BUTTON_PRESS
: // we could also map this to DCLICK...
1308 case GDK_BUTTON_PRESS
:
1309 event_type
= wxEVT_LEFT_DOWN
;
1312 case GDK_2BUTTON_PRESS
:
1313 event_type
= wxEVT_LEFT_DCLICK
;
1317 // just to silence gcc warnings
1321 else if (gdk_event
->button
== 2)
1323 switch (gdk_event
->type
)
1325 case GDK_3BUTTON_PRESS
:
1326 case GDK_BUTTON_PRESS
:
1327 event_type
= wxEVT_MIDDLE_DOWN
;
1330 case GDK_2BUTTON_PRESS
:
1331 event_type
= wxEVT_MIDDLE_DCLICK
;
1338 else if (gdk_event
->button
== 3)
1340 switch (gdk_event
->type
)
1342 case GDK_3BUTTON_PRESS
:
1343 case GDK_BUTTON_PRESS
:
1344 event_type
= wxEVT_RIGHT_DOWN
;
1347 case GDK_2BUTTON_PRESS
:
1348 event_type
= wxEVT_RIGHT_DCLICK
;
1356 else if (gdk_event
->button
== 8)
1358 switch (gdk_event
->type
)
1360 case GDK_3BUTTON_PRESS
:
1361 case GDK_BUTTON_PRESS
:
1362 event_type
= wxEVT_AUX1_DOWN
;
1365 case GDK_2BUTTON_PRESS
:
1366 event_type
= wxEVT_AUX1_DCLICK
;
1374 else if (gdk_event
->button
== 9)
1376 switch (gdk_event
->type
)
1378 case GDK_3BUTTON_PRESS
:
1379 case GDK_BUTTON_PRESS
:
1380 event_type
= wxEVT_AUX2_DOWN
;
1383 case GDK_2BUTTON_PRESS
:
1384 event_type
= wxEVT_AUX2_DCLICK
;
1392 if ( event_type
== wxEVT_NULL
)
1394 // unknown mouse button or click type
1398 g_lastMouseEvent
= (GdkEvent
*) gdk_event
;
1400 wxMouseEvent
event( event_type
);
1401 InitMouseEvent( win
, event
, gdk_event
);
1403 AdjustEventButtonState(event
);
1405 // find the correct window to send the event to: it may be a different one
1406 // from the one which got it at GTK+ level because some controls don't have
1407 // their own X window and thus cannot get any events.
1408 if ( !g_captureWindow
)
1409 win
= FindWindowForMouseEvent(win
, event
.m_x
, event
.m_y
);
1411 // reset the event object and id in case win changed.
1412 event
.SetEventObject( win
);
1413 event
.SetId( win
->GetId() );
1415 bool ret
= win
->GTKProcessEvent( event
);
1416 g_lastMouseEvent
= NULL
;
1420 if ((event_type
== wxEVT_LEFT_DOWN
) && !win
->IsOfStandardClass() &&
1421 (gs_currentFocus
!= win
) /* && win->IsFocusable() */)
1426 if (event_type
== wxEVT_RIGHT_DOWN
)
1428 // generate a "context menu" event: this is similar to right mouse
1429 // click under many GUIs except that it is generated differently
1430 // (right up under MSW, ctrl-click under Mac, right down here) and
1432 // (a) it's a command event and so is propagated to the parent
1433 // (b) under some ports it can be generated from kbd too
1434 // (c) it uses screen coords (because of (a))
1435 wxContextMenuEvent
evtCtx(
1438 win
->ClientToScreen(event
.GetPosition()));
1439 evtCtx
.SetEventObject(win
);
1440 return win
->GTKProcessEvent(evtCtx
);
1446 //-----------------------------------------------------------------------------
1447 // "button_release_event"
1448 //-----------------------------------------------------------------------------
1451 gtk_window_button_release_callback( GtkWidget
*WXUNUSED(widget
),
1452 GdkEventButton
*gdk_event
,
1455 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1457 g_lastButtonNumber
= 0;
1459 wxEventType event_type
= wxEVT_NULL
;
1461 switch (gdk_event
->button
)
1464 event_type
= wxEVT_LEFT_UP
;
1468 event_type
= wxEVT_MIDDLE_UP
;
1472 event_type
= wxEVT_RIGHT_UP
;
1476 event_type
= wxEVT_AUX1_UP
;
1480 event_type
= wxEVT_AUX2_UP
;
1484 // unknown button, don't process
1488 g_lastMouseEvent
= (GdkEvent
*) gdk_event
;
1490 wxMouseEvent
event( event_type
);
1491 InitMouseEvent( win
, event
, gdk_event
);
1493 AdjustEventButtonState(event
);
1495 if ( !g_captureWindow
)
1496 win
= FindWindowForMouseEvent(win
, event
.m_x
, event
.m_y
);
1498 // reset the event object and id in case win changed.
1499 event
.SetEventObject( win
);
1500 event
.SetId( win
->GetId() );
1502 bool ret
= win
->GTKProcessEvent(event
);
1504 g_lastMouseEvent
= NULL
;
1509 //-----------------------------------------------------------------------------
1510 // "motion_notify_event"
1511 //-----------------------------------------------------------------------------
1514 gtk_window_motion_notify_callback( GtkWidget
* WXUNUSED(widget
),
1515 GdkEventMotion
*gdk_event
,
1518 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1520 if (gdk_event
->is_hint
)
1524 GdkModifierType state
;
1525 gdk_window_get_pointer(gdk_event
->window
, &x
, &y
, &state
);
1530 g_lastMouseEvent
= (GdkEvent
*) gdk_event
;
1532 wxMouseEvent
event( wxEVT_MOTION
);
1533 InitMouseEvent(win
, event
, gdk_event
);
1535 if ( g_captureWindow
)
1537 // synthesise a mouse enter or leave event if needed
1538 GdkWindow
*winUnderMouse
= gdk_window_at_pointer(NULL
, NULL
);
1539 // This seems to be necessary and actually been added to
1540 // GDK itself in version 2.0.X
1543 bool hasMouse
= winUnderMouse
== gdk_event
->window
;
1544 if ( hasMouse
!= g_captureWindowHasMouse
)
1546 // the mouse changed window
1547 g_captureWindowHasMouse
= hasMouse
;
1549 wxMouseEvent
eventM(g_captureWindowHasMouse
? wxEVT_ENTER_WINDOW
1550 : wxEVT_LEAVE_WINDOW
);
1551 InitMouseEvent(win
, eventM
, gdk_event
);
1552 eventM
.SetEventObject(win
);
1553 win
->GTKProcessEvent(eventM
);
1558 win
= FindWindowForMouseEvent(win
, event
.m_x
, event
.m_y
);
1560 // reset the event object and id in case win changed.
1561 event
.SetEventObject( win
);
1562 event
.SetId( win
->GetId() );
1565 if ( !g_captureWindow
)
1567 wxSetCursorEvent
cevent( event
.m_x
, event
.m_y
);
1568 if (win
->GTKProcessEvent( cevent
))
1570 win
->SetCursor( cevent
.GetCursor() );
1574 bool ret
= win
->GTKProcessEvent(event
);
1576 g_lastMouseEvent
= NULL
;
1581 //-----------------------------------------------------------------------------
1582 // "scroll_event" (mouse wheel event)
1583 //-----------------------------------------------------------------------------
1586 window_scroll_event_hscrollbar(GtkWidget
*, GdkEventScroll
* gdk_event
, wxWindow
* win
)
1588 if (gdk_event
->direction
!= GDK_SCROLL_LEFT
&&
1589 gdk_event
->direction
!= GDK_SCROLL_RIGHT
)
1594 GtkRange
*range
= win
->m_scrollBar
[wxWindow::ScrollDir_Horz
];
1596 if (range
&& gtk_widget_get_visible(GTK_WIDGET(range
)))
1598 GtkAdjustment
* adj
= gtk_range_get_adjustment(range
);
1599 double delta
= gtk_adjustment_get_step_increment(adj
) * 3;
1600 if (gdk_event
->direction
== GDK_SCROLL_LEFT
)
1603 gtk_range_set_value(range
, gtk_adjustment_get_value(adj
) + delta
);
1612 window_scroll_event(GtkWidget
*, GdkEventScroll
* gdk_event
, wxWindow
* win
)
1614 if (gdk_event
->direction
!= GDK_SCROLL_UP
&&
1615 gdk_event
->direction
!= GDK_SCROLL_DOWN
)
1620 wxMouseEvent
event(wxEVT_MOUSEWHEEL
);
1621 InitMouseEvent(win
, event
, gdk_event
);
1623 // FIXME: Get these values from GTK or GDK
1624 event
.m_linesPerAction
= 3;
1625 event
.m_wheelDelta
= 120;
1626 if (gdk_event
->direction
== GDK_SCROLL_UP
)
1627 event
.m_wheelRotation
= 120;
1629 event
.m_wheelRotation
= -120;
1631 if (win
->GTKProcessEvent(event
))
1634 GtkRange
*range
= win
->m_scrollBar
[wxWindow::ScrollDir_Vert
];
1636 if (range
&& gtk_widget_get_visible(GTK_WIDGET(range
)))
1638 GtkAdjustment
* adj
= gtk_range_get_adjustment(range
);
1639 double delta
= gtk_adjustment_get_step_increment(adj
) * 3;
1640 if (gdk_event
->direction
== GDK_SCROLL_UP
)
1643 gtk_range_set_value(range
, gtk_adjustment_get_value(adj
) + delta
);
1651 //-----------------------------------------------------------------------------
1653 //-----------------------------------------------------------------------------
1655 static gboolean
wxgtk_window_popup_menu_callback(GtkWidget
*, wxWindowGTK
* win
)
1657 wxContextMenuEvent
event(wxEVT_CONTEXT_MENU
, win
->GetId(), wxPoint(-1, -1));
1658 event
.SetEventObject(win
);
1659 return win
->GTKProcessEvent(event
);
1662 //-----------------------------------------------------------------------------
1664 //-----------------------------------------------------------------------------
1667 gtk_window_focus_in_callback( GtkWidget
* WXUNUSED(widget
),
1668 GdkEventFocus
*WXUNUSED(event
),
1671 return win
->GTKHandleFocusIn();
1674 //-----------------------------------------------------------------------------
1675 // "focus_out_event"
1676 //-----------------------------------------------------------------------------
1679 gtk_window_focus_out_callback( GtkWidget
* WXUNUSED(widget
),
1680 GdkEventFocus
* WXUNUSED(gdk_event
),
1683 return win
->GTKHandleFocusOut();
1686 //-----------------------------------------------------------------------------
1688 //-----------------------------------------------------------------------------
1691 wx_window_focus_callback(GtkWidget
*widget
,
1692 GtkDirectionType
WXUNUSED(direction
),
1695 // the default handler for focus signal in GtkScrolledWindow sets
1696 // focus to the window itself even if it doesn't accept focus, i.e. has no
1697 // GTK_CAN_FOCUS in its style -- work around this by forcibly preventing
1698 // the signal from reaching gtk_scrolled_window_focus() if we don't have
1699 // any children which might accept focus (we know we don't accept the focus
1700 // ourselves as this signal is only connected in this case)
1701 if ( win
->GetChildren().empty() )
1702 g_signal_stop_emission_by_name(widget
, "focus");
1704 // we didn't change the focus
1708 //-----------------------------------------------------------------------------
1709 // "enter_notify_event"
1710 //-----------------------------------------------------------------------------
1713 gtk_window_enter_callback( GtkWidget
*widget
,
1714 GdkEventCrossing
*gdk_event
,
1717 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1719 // Event was emitted after a grab
1720 if (gdk_event
->mode
!= GDK_CROSSING_NORMAL
) return FALSE
;
1724 GdkModifierType state
= (GdkModifierType
)0;
1726 gdk_window_get_pointer(gtk_widget_get_window(widget
), &x
, &y
, &state
);
1728 wxMouseEvent
event( wxEVT_ENTER_WINDOW
);
1729 InitMouseEvent(win
, event
, gdk_event
);
1730 wxPoint pt
= win
->GetClientAreaOrigin();
1731 event
.m_x
= x
+ pt
.x
;
1732 event
.m_y
= y
+ pt
.y
;
1734 if ( !g_captureWindow
)
1736 wxSetCursorEvent
cevent( event
.m_x
, event
.m_y
);
1737 if (win
->GTKProcessEvent( cevent
))
1739 win
->SetCursor( cevent
.GetCursor() );
1743 return win
->GTKProcessEvent(event
);
1746 //-----------------------------------------------------------------------------
1747 // "leave_notify_event"
1748 //-----------------------------------------------------------------------------
1751 gtk_window_leave_callback( GtkWidget
*widget
,
1752 GdkEventCrossing
*gdk_event
,
1755 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1757 // Event was emitted after an ungrab
1758 if (gdk_event
->mode
!= GDK_CROSSING_NORMAL
) return FALSE
;
1760 wxMouseEvent
event( wxEVT_LEAVE_WINDOW
);
1764 GdkModifierType state
= (GdkModifierType
)0;
1766 gdk_window_get_pointer(gtk_widget_get_window(widget
), &x
, &y
, &state
);
1768 InitMouseEvent(win
, event
, gdk_event
);
1770 return win
->GTKProcessEvent(event
);
1773 //-----------------------------------------------------------------------------
1774 // "value_changed" from scrollbar
1775 //-----------------------------------------------------------------------------
1778 gtk_scrollbar_value_changed(GtkRange
* range
, wxWindow
* win
)
1780 wxEventType eventType
= win
->GTKGetScrollEventType(range
);
1781 if (eventType
!= wxEVT_NULL
)
1783 // Convert scroll event type to scrollwin event type
1784 eventType
+= wxEVT_SCROLLWIN_TOP
- wxEVT_SCROLL_TOP
;
1786 // find the scrollbar which generated the event
1787 wxWindowGTK::ScrollDir dir
= win
->ScrollDirFromRange(range
);
1789 // generate the corresponding wx event
1790 const int orient
= wxWindow::OrientFromScrollDir(dir
);
1791 wxScrollWinEvent
event(eventType
, win
->GetScrollPos(orient
), orient
);
1792 event
.SetEventObject(win
);
1794 win
->GTKProcessEvent(event
);
1798 //-----------------------------------------------------------------------------
1799 // "button_press_event" from scrollbar
1800 //-----------------------------------------------------------------------------
1803 gtk_scrollbar_button_press_event(GtkRange
*, GdkEventButton
*, wxWindow
* win
)
1805 g_blockEventsOnScroll
= true;
1806 win
->m_mouseButtonDown
= true;
1811 //-----------------------------------------------------------------------------
1812 // "event_after" from scrollbar
1813 //-----------------------------------------------------------------------------
1816 gtk_scrollbar_event_after(GtkRange
* range
, GdkEvent
* event
, wxWindow
* win
)
1818 if (event
->type
== GDK_BUTTON_RELEASE
)
1820 g_signal_handlers_block_by_func(range
, (void*)gtk_scrollbar_event_after
, win
);
1822 const int orient
= wxWindow::OrientFromScrollDir(
1823 win
->ScrollDirFromRange(range
));
1824 wxScrollWinEvent
evt(wxEVT_SCROLLWIN_THUMBRELEASE
,
1825 win
->GetScrollPos(orient
), orient
);
1826 evt
.SetEventObject(win
);
1827 win
->GTKProcessEvent(evt
);
1831 //-----------------------------------------------------------------------------
1832 // "button_release_event" from scrollbar
1833 //-----------------------------------------------------------------------------
1836 gtk_scrollbar_button_release_event(GtkRange
* range
, GdkEventButton
*, wxWindow
* win
)
1838 g_blockEventsOnScroll
= false;
1839 win
->m_mouseButtonDown
= false;
1840 // If thumb tracking
1841 if (win
->m_isScrolling
)
1843 win
->m_isScrolling
= false;
1844 // Hook up handler to send thumb release event after this emission is finished.
1845 // To allow setting scroll position from event handler, sending event must
1846 // be deferred until after the GtkRange handler for this signal has run
1847 g_signal_handlers_unblock_by_func(range
, (void*)gtk_scrollbar_event_after
, win
);
1853 //-----------------------------------------------------------------------------
1854 // "realize" from m_widget
1855 //-----------------------------------------------------------------------------
1858 gtk_window_realized_callback(GtkWidget
* WXUNUSED(widget
), wxWindow
* win
)
1860 win
->GTKHandleRealized();
1863 //-----------------------------------------------------------------------------
1864 // "unrealize" from m_wxwindow
1865 //-----------------------------------------------------------------------------
1867 static void unrealize(GtkWidget
*, wxWindowGTK
* win
)
1870 gtk_im_context_set_client_window(win
->m_imData
->context
, NULL
);
1873 //-----------------------------------------------------------------------------
1874 // "size_allocate" from m_wxwindow or m_widget
1875 //-----------------------------------------------------------------------------
1878 size_allocate(GtkWidget
*, GtkAllocation
* alloc
, wxWindow
* win
)
1880 int w
= alloc
->width
;
1881 int h
= alloc
->height
;
1882 if (win
->m_wxwindow
)
1884 int border_x
, border_y
;
1885 WX_PIZZA(win
->m_wxwindow
)->get_border_widths(border_x
, border_y
);
1891 if (win
->m_oldClientWidth
!= w
|| win
->m_oldClientHeight
!= h
)
1893 win
->m_oldClientWidth
= w
;
1894 win
->m_oldClientHeight
= h
;
1895 // this callback can be connected to m_wxwindow,
1896 // so always get size from m_widget->allocation
1898 gtk_widget_get_allocation(win
->m_widget
, &a
);
1899 win
->m_width
= a
.width
;
1900 win
->m_height
= a
.height
;
1901 if (!win
->m_nativeSizeEvent
)
1903 wxSizeEvent
event(win
->GetSize(), win
->GetId());
1904 event
.SetEventObject(win
);
1905 win
->GTKProcessEvent(event
);
1910 //-----------------------------------------------------------------------------
1912 //-----------------------------------------------------------------------------
1914 #if GTK_CHECK_VERSION(2, 8, 0)
1916 gtk_window_grab_broken( GtkWidget
*,
1917 GdkEventGrabBroken
*event
,
1920 // Mouse capture has been lost involuntarily, notify the application
1921 if(!event
->keyboard
&& wxWindow::GetCapture() == win
)
1923 wxMouseCaptureLostEvent
evt( win
->GetId() );
1924 evt
.SetEventObject( win
);
1925 win
->HandleWindowEvent( evt
);
1931 //-----------------------------------------------------------------------------
1933 //-----------------------------------------------------------------------------
1936 void gtk_window_style_set_callback( GtkWidget
*WXUNUSED(widget
),
1937 GtkStyle
*previous_style
,
1940 if (win
&& previous_style
)
1942 wxSysColourChangedEvent event
;
1943 event
.SetEventObject(win
);
1945 win
->GTKProcessEvent( event
);
1951 void wxWindowGTK::GTKHandleRealized()
1955 gtk_im_context_set_client_window
1958 m_wxwindow
? GTKGetDrawingWindow()
1959 : gtk_widget_get_window(m_widget
)
1963 // We cannot set colours and fonts before the widget
1964 // been realized, so we do this directly after realization
1965 // or otherwise in idle time
1967 if (m_needsStyleChange
)
1969 SetBackgroundStyle(GetBackgroundStyle());
1970 m_needsStyleChange
= false;
1973 wxWindowCreateEvent
event( this );
1974 event
.SetEventObject( this );
1975 GTKProcessEvent( event
);
1977 GTKUpdateCursor(true, false);
1980 // ----------------------------------------------------------------------------
1981 // this wxWindowBase function is implemented here (in platform-specific file)
1982 // because it is static and so couldn't be made virtual
1983 // ----------------------------------------------------------------------------
1985 wxWindow
*wxWindowBase::DoFindFocus()
1987 wxWindowGTK
*focus
= gs_pendingFocus
? gs_pendingFocus
: gs_currentFocus
;
1988 // the cast is necessary when we compile in wxUniversal mode
1989 return static_cast<wxWindow
*>(focus
);
1992 void wxWindowGTK::AddChildGTK(wxWindowGTK
* child
)
1994 wxASSERT_MSG(m_wxwindow
, "Cannot add a child to a window without a client area");
1996 // the window might have been scrolled already, we
1997 // have to adapt the position
1998 wxPizza
* pizza
= WX_PIZZA(m_wxwindow
);
1999 child
->m_x
+= pizza
->m_scroll_x
;
2000 child
->m_y
+= pizza
->m_scroll_y
;
2002 gtk_widget_set_size_request(
2003 child
->m_widget
, child
->m_width
, child
->m_height
);
2004 pizza
->put(child
->m_widget
, child
->m_x
, child
->m_y
);
2007 //-----------------------------------------------------------------------------
2009 //-----------------------------------------------------------------------------
2011 wxWindow
*wxGetActiveWindow()
2013 return wxWindow::FindFocus();
2017 wxMouseState
wxGetMouseState()
2023 GdkModifierType mask
;
2025 gdk_window_get_pointer(NULL
, &x
, &y
, &mask
);
2029 ms
.SetLeftDown((mask
& GDK_BUTTON1_MASK
) != 0);
2030 ms
.SetMiddleDown((mask
& GDK_BUTTON2_MASK
) != 0);
2031 ms
.SetRightDown((mask
& GDK_BUTTON3_MASK
) != 0);
2032 // see the comment in InitMouseEvent()
2033 ms
.SetAux1Down((mask
& GDK_BUTTON4_MASK
) != 0);
2034 ms
.SetAux2Down((mask
& GDK_BUTTON5_MASK
) != 0);
2036 ms
.SetControlDown((mask
& GDK_CONTROL_MASK
) != 0);
2037 ms
.SetShiftDown((mask
& GDK_SHIFT_MASK
) != 0);
2038 ms
.SetAltDown((mask
& GDK_MOD1_MASK
) != 0);
2039 ms
.SetMetaDown((mask
& GDK_META_MASK
) != 0);
2044 //-----------------------------------------------------------------------------
2046 //-----------------------------------------------------------------------------
2048 // in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu()
2050 #ifdef __WXUNIVERSAL__
2051 IMPLEMENT_ABSTRACT_CLASS(wxWindowGTK
, wxWindowBase
)
2052 #endif // __WXUNIVERSAL__
2054 void wxWindowGTK::Init()
2059 m_focusWidget
= NULL
;
2069 m_showOnIdle
= false;
2072 m_nativeSizeEvent
= false;
2074 m_isScrolling
= false;
2075 m_mouseButtonDown
= false;
2077 // initialize scrolling stuff
2078 for ( int dir
= 0; dir
< ScrollDir_Max
; dir
++ )
2080 m_scrollBar
[dir
] = NULL
;
2081 m_scrollPos
[dir
] = 0;
2085 m_oldClientHeight
= 0;
2087 m_clipPaintRegion
= false;
2089 m_needsStyleChange
= false;
2091 m_cursor
= *wxSTANDARD_CURSOR
;
2094 m_dirtyTabOrder
= false;
2097 wxWindowGTK::wxWindowGTK()
2102 wxWindowGTK::wxWindowGTK( wxWindow
*parent
,
2107 const wxString
&name
)
2111 Create( parent
, id
, pos
, size
, style
, name
);
2114 bool wxWindowGTK::Create( wxWindow
*parent
,
2119 const wxString
&name
)
2121 // Get default border
2122 wxBorder border
= GetBorder(style
);
2124 style
&= ~wxBORDER_MASK
;
2127 if (!PreCreation( parent
, pos
, size
) ||
2128 !CreateBase( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
2130 wxFAIL_MSG( wxT("wxWindowGTK creation failed") );
2134 // We should accept the native look
2136 GtkScrolledWindowClass
*scroll_class
= GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT_GET_CLASS(m_widget
) );
2137 scroll_class
->scrollbar_spacing
= 0;
2141 m_wxwindow
= wxPizza::New(m_windowStyle
);
2142 #ifndef __WXUNIVERSAL__
2143 if (HasFlag(wxPizza::BORDER_STYLES
))
2145 g_signal_connect(m_wxwindow
, "parent_set",
2146 G_CALLBACK(parent_set
), this);
2149 if (!HasFlag(wxHSCROLL
) && !HasFlag(wxVSCROLL
))
2150 m_widget
= m_wxwindow
;
2153 m_widget
= gtk_scrolled_window_new( NULL
, NULL
);
2155 GtkScrolledWindow
*scrolledWindow
= GTK_SCROLLED_WINDOW(m_widget
);
2157 // There is a conflict with default bindings at GTK+
2158 // level between scrolled windows and notebooks both of which want to use
2159 // Ctrl-PageUp/Down: scrolled windows for scrolling in the horizontal
2160 // direction and notebooks for changing pages -- we decide that if we don't
2161 // have wxHSCROLL style we can safely sacrifice horizontal scrolling if it
2162 // means we can get working keyboard navigation in notebooks
2163 if ( !HasFlag(wxHSCROLL
) )
2166 bindings
= gtk_binding_set_by_class(G_OBJECT_GET_CLASS(m_widget
));
2169 gtk_binding_entry_remove(bindings
, GDK_Page_Up
, GDK_CONTROL_MASK
);
2170 gtk_binding_entry_remove(bindings
, GDK_Page_Down
, GDK_CONTROL_MASK
);
2174 if (HasFlag(wxALWAYS_SHOW_SB
))
2176 gtk_scrolled_window_set_policy( scrolledWindow
, GTK_POLICY_ALWAYS
, GTK_POLICY_ALWAYS
);
2180 gtk_scrolled_window_set_policy( scrolledWindow
, GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
2183 m_scrollBar
[ScrollDir_Horz
] = GTK_RANGE(gtk_scrolled_window_get_hscrollbar(scrolledWindow
));
2184 m_scrollBar
[ScrollDir_Vert
] = GTK_RANGE(gtk_scrolled_window_get_vscrollbar(scrolledWindow
));
2185 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2186 gtk_range_set_inverted( m_scrollBar
[ScrollDir_Horz
], TRUE
);
2188 gtk_container_add( GTK_CONTAINER(m_widget
), m_wxwindow
);
2190 // connect various scroll-related events
2191 for ( int dir
= 0; dir
< ScrollDir_Max
; dir
++ )
2193 // these handlers block mouse events to any window during scrolling
2194 // such as motion events and prevent GTK and wxWidgets from fighting
2195 // over where the slider should be
2196 g_signal_connect(m_scrollBar
[dir
], "button_press_event",
2197 G_CALLBACK(gtk_scrollbar_button_press_event
), this);
2198 g_signal_connect(m_scrollBar
[dir
], "button_release_event",
2199 G_CALLBACK(gtk_scrollbar_button_release_event
), this);
2201 gulong handler_id
= g_signal_connect(m_scrollBar
[dir
], "event_after",
2202 G_CALLBACK(gtk_scrollbar_event_after
), this);
2203 g_signal_handler_block(m_scrollBar
[dir
], handler_id
);
2205 // these handlers get notified when scrollbar slider moves
2206 g_signal_connect_after(m_scrollBar
[dir
], "value_changed",
2207 G_CALLBACK(gtk_scrollbar_value_changed
), this);
2210 gtk_widget_show( m_wxwindow
);
2212 g_object_ref(m_widget
);
2215 m_parent
->DoAddChild( this );
2217 m_focusWidget
= m_wxwindow
;
2219 SetCanFocus(AcceptsFocus());
2226 wxWindowGTK::~wxWindowGTK()
2230 if (gs_currentFocus
== this)
2231 gs_currentFocus
= NULL
;
2232 if (gs_pendingFocus
== this)
2233 gs_pendingFocus
= NULL
;
2235 if ( gs_deferredFocusOut
== this )
2236 gs_deferredFocusOut
= NULL
;
2240 // destroy children before destroying this window itself
2243 // unhook focus handlers to prevent stray events being
2244 // propagated to this (soon to be) dead object
2245 if (m_focusWidget
!= NULL
)
2247 g_signal_handlers_disconnect_by_func (m_focusWidget
,
2248 (gpointer
) gtk_window_focus_in_callback
,
2250 g_signal_handlers_disconnect_by_func (m_focusWidget
,
2251 (gpointer
) gtk_window_focus_out_callback
,
2258 // delete before the widgets to avoid a crash on solaris
2262 // avoid problem with GTK+ 2.18 where a frozen window causes the whole
2263 // TLW to be frozen, and if the window is then destroyed, nothing ever
2264 // gets painted again
2270 // Note that gtk_widget_destroy() does not destroy the widget, it just
2271 // emits the "destroy" signal. The widget is not actually destroyed
2272 // until its reference count drops to zero.
2273 gtk_widget_destroy(m_widget
);
2274 // Release our reference, should be the last one
2275 g_object_unref(m_widget
);
2281 bool wxWindowGTK::PreCreation( wxWindowGTK
*parent
, const wxPoint
&pos
, const wxSize
&size
)
2283 if ( GTKNeedsParent() )
2285 wxCHECK_MSG( parent
, false, wxT("Must have non-NULL parent") );
2288 // Use either the given size, or the default if -1 is given.
2289 // See wxWindowBase for these functions.
2290 m_width
= WidthDefault(size
.x
) ;
2291 m_height
= HeightDefault(size
.y
);
2299 void wxWindowGTK::PostCreation()
2301 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid window") );
2307 // these get reported to wxWidgets -> wxPaintEvent
2309 g_signal_connect (m_wxwindow
, "expose_event",
2310 G_CALLBACK (gtk_window_expose_callback
), this);
2312 if (GetLayoutDirection() == wxLayout_LeftToRight
)
2313 gtk_widget_set_redraw_on_allocate(m_wxwindow
, HasFlag(wxFULL_REPAINT_ON_RESIZE
));
2316 // Create input method handler
2317 m_imData
= new wxGtkIMData
;
2319 // Cannot handle drawing preedited text yet
2320 gtk_im_context_set_use_preedit( m_imData
->context
, FALSE
);
2322 g_signal_connect (m_imData
->context
, "commit",
2323 G_CALLBACK (gtk_wxwindow_commit_cb
), this);
2324 g_signal_connect(m_wxwindow
, "unrealize", G_CALLBACK(unrealize
), this);
2329 if (!GTK_IS_WINDOW(m_widget
))
2331 if (m_focusWidget
== NULL
)
2332 m_focusWidget
= m_widget
;
2336 g_signal_connect (m_focusWidget
, "focus_in_event",
2337 G_CALLBACK (gtk_window_focus_in_callback
), this);
2338 g_signal_connect (m_focusWidget
, "focus_out_event",
2339 G_CALLBACK (gtk_window_focus_out_callback
), this);
2343 g_signal_connect_after (m_focusWidget
, "focus_in_event",
2344 G_CALLBACK (gtk_window_focus_in_callback
), this);
2345 g_signal_connect_after (m_focusWidget
, "focus_out_event",
2346 G_CALLBACK (gtk_window_focus_out_callback
), this);
2350 if ( !AcceptsFocusFromKeyboard() )
2354 g_signal_connect(m_widget
, "focus",
2355 G_CALLBACK(wx_window_focus_callback
), this);
2358 // connect to the various key and mouse handlers
2360 GtkWidget
*connect_widget
= GetConnectWidget();
2362 ConnectWidget( connect_widget
);
2364 // We cannot set colours, fonts and cursors before the widget has been
2365 // realized, so we do this directly after realization -- unless the widget
2366 // was in fact realized already.
2367 if ( gtk_widget_get_realized(connect_widget
) )
2369 gtk_window_realized_callback(connect_widget
, this);
2373 g_signal_connect (connect_widget
, "realize",
2374 G_CALLBACK (gtk_window_realized_callback
), this);
2379 g_signal_connect(m_wxwindow
? m_wxwindow
: m_widget
, "size_allocate",
2380 G_CALLBACK(size_allocate
), this);
2383 #if GTK_CHECK_VERSION(2, 8, 0)
2384 if ( gtk_check_version(2,8,0) == NULL
)
2386 // Make sure we can notify the app when mouse capture is lost
2389 g_signal_connect (m_wxwindow
, "grab_broken_event",
2390 G_CALLBACK (gtk_window_grab_broken
), this);
2393 if ( connect_widget
!= m_wxwindow
)
2395 g_signal_connect (connect_widget
, "grab_broken_event",
2396 G_CALLBACK (gtk_window_grab_broken
), this);
2399 #endif // GTK+ >= 2.8
2401 if ( GTKShouldConnectSizeRequest() )
2403 // This is needed if we want to add our windows into native
2404 // GTK controls, such as the toolbar. With this callback, the
2405 // toolbar gets to know the correct size (the one set by the
2406 // programmer). Sadly, it misbehaves for wxComboBox.
2407 g_signal_connect (m_widget
, "size_request",
2408 G_CALLBACK (wxgtk_window_size_request_callback
),
2412 InheritAttributes();
2416 SetLayoutDirection(wxLayout_Default
);
2418 // unless the window was created initially hidden (i.e. Hide() had been
2419 // called before Create()), we should show it at GTK+ level as well
2421 gtk_widget_show( m_widget
);
2425 wxWindowGTK::GTKConnectWidget(const char *signal
, wxGTKCallback callback
)
2427 return g_signal_connect(m_widget
, signal
, callback
, this);
2430 void wxWindowGTK::ConnectWidget( GtkWidget
*widget
)
2432 g_signal_connect (widget
, "key_press_event",
2433 G_CALLBACK (gtk_window_key_press_callback
), this);
2434 g_signal_connect (widget
, "key_release_event",
2435 G_CALLBACK (gtk_window_key_release_callback
), this);
2436 g_signal_connect (widget
, "button_press_event",
2437 G_CALLBACK (gtk_window_button_press_callback
), this);
2438 g_signal_connect (widget
, "button_release_event",
2439 G_CALLBACK (gtk_window_button_release_callback
), this);
2440 g_signal_connect (widget
, "motion_notify_event",
2441 G_CALLBACK (gtk_window_motion_notify_callback
), this);
2443 g_signal_connect (widget
, "scroll_event",
2444 G_CALLBACK (window_scroll_event
), this);
2445 if (m_scrollBar
[ScrollDir_Horz
])
2446 g_signal_connect (m_scrollBar
[ScrollDir_Horz
], "scroll_event",
2447 G_CALLBACK (window_scroll_event_hscrollbar
), this);
2448 if (m_scrollBar
[ScrollDir_Vert
])
2449 g_signal_connect (m_scrollBar
[ScrollDir_Vert
], "scroll_event",
2450 G_CALLBACK (window_scroll_event
), this);
2452 g_signal_connect (widget
, "popup_menu",
2453 G_CALLBACK (wxgtk_window_popup_menu_callback
), this);
2454 g_signal_connect (widget
, "enter_notify_event",
2455 G_CALLBACK (gtk_window_enter_callback
), this);
2456 g_signal_connect (widget
, "leave_notify_event",
2457 G_CALLBACK (gtk_window_leave_callback
), this);
2459 if (IsTopLevel() && m_wxwindow
)
2460 g_signal_connect (m_wxwindow
, "style_set",
2461 G_CALLBACK (gtk_window_style_set_callback
), this);
2464 bool wxWindowGTK::Destroy()
2468 return wxWindowBase::Destroy();
2471 void wxWindowGTK::DoMoveWindow(int x
, int y
, int width
, int height
)
2473 gtk_widget_set_size_request(m_widget
, width
, height
);
2475 // inform the parent to perform the move
2476 wxASSERT_MSG(m_parent
&& m_parent
->m_wxwindow
,
2477 "the parent window has no client area?");
2478 WX_PIZZA(m_parent
->m_wxwindow
)->move(m_widget
, x
, y
);
2481 void wxWindowGTK::ConstrainSize()
2484 // GPE's window manager doesn't like size hints at all, esp. when the user
2485 // has to use the virtual keyboard, so don't constrain size there
2489 const wxSize minSize
= GetMinSize();
2490 const wxSize maxSize
= GetMaxSize();
2491 if (minSize
.x
> 0 && m_width
< minSize
.x
) m_width
= minSize
.x
;
2492 if (minSize
.y
> 0 && m_height
< minSize
.y
) m_height
= minSize
.y
;
2493 if (maxSize
.x
> 0 && m_width
> maxSize
.x
) m_width
= maxSize
.x
;
2494 if (maxSize
.y
> 0 && m_height
> maxSize
.y
) m_height
= maxSize
.y
;
2498 void wxWindowGTK::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
2500 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid window") );
2501 wxASSERT_MSG( (m_parent
!= NULL
), wxT("wxWindowGTK::SetSize requires parent.\n") );
2503 if ((sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) == 0 && (x
== -1 || y
== -1))
2505 int currentX
, currentY
;
2506 GetPosition(¤tX
, ¤tY
);
2512 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
2514 // calculate the best size if we should auto size the window
2515 if ( ((sizeFlags
& wxSIZE_AUTO_WIDTH
) && width
== -1) ||
2516 ((sizeFlags
& wxSIZE_AUTO_HEIGHT
) && height
== -1) )
2518 const wxSize sizeBest
= GetBestSize();
2519 if ( (sizeFlags
& wxSIZE_AUTO_WIDTH
) && width
== -1 )
2521 if ( (sizeFlags
& wxSIZE_AUTO_HEIGHT
) && height
== -1 )
2522 height
= sizeBest
.y
;
2525 const wxSize
oldSize(m_width
, m_height
);
2531 if (m_parent
->m_wxwindow
)
2533 wxPizza
* pizza
= WX_PIZZA(m_parent
->m_wxwindow
);
2534 m_x
= x
+ pizza
->m_scroll_x
;
2535 m_y
= y
+ pizza
->m_scroll_y
;
2537 int left_border
= 0;
2538 int right_border
= 0;
2540 int bottom_border
= 0;
2542 /* the default button has a border around it */
2543 if (gtk_widget_get_can_default(m_widget
))
2545 GtkBorder
*default_border
= NULL
;
2546 gtk_widget_style_get( m_widget
, "default_border", &default_border
, NULL
);
2549 left_border
+= default_border
->left
;
2550 right_border
+= default_border
->right
;
2551 top_border
+= default_border
->top
;
2552 bottom_border
+= default_border
->bottom
;
2553 gtk_border_free( default_border
);
2557 DoMoveWindow( m_x
- left_border
,
2559 m_width
+left_border
+right_border
,
2560 m_height
+top_border
+bottom_border
);
2563 if (m_width
!= oldSize
.x
|| m_height
!= oldSize
.y
)
2565 // update these variables to keep size_allocate handler
2566 // from sending another size event for this change
2567 GetClientSize( &m_oldClientWidth
, &m_oldClientHeight
);
2569 gtk_widget_queue_resize(m_widget
);
2570 if (!m_nativeSizeEvent
)
2572 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
2573 event
.SetEventObject( this );
2574 HandleWindowEvent( event
);
2577 if (sizeFlags
& wxSIZE_FORCE_EVENT
)
2579 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
2580 event
.SetEventObject( this );
2581 HandleWindowEvent( event
);
2585 bool wxWindowGTK::GTKShowFromOnIdle()
2587 if (IsShown() && m_showOnIdle
&& !gtk_widget_get_visible (m_widget
))
2589 GtkAllocation alloc
;
2592 alloc
.width
= m_width
;
2593 alloc
.height
= m_height
;
2594 gtk_widget_size_allocate( m_widget
, &alloc
);
2595 gtk_widget_show( m_widget
);
2596 wxShowEvent
eventShow(GetId(), true);
2597 eventShow
.SetEventObject(this);
2598 HandleWindowEvent(eventShow
);
2599 m_showOnIdle
= false;
2606 void wxWindowGTK::OnInternalIdle()
2608 if ( gs_deferredFocusOut
)
2609 GTKHandleDeferredFocusOut();
2611 // Check if we have to show window now
2612 if (GTKShowFromOnIdle()) return;
2614 if ( m_dirtyTabOrder
)
2616 m_dirtyTabOrder
= false;
2620 // Update style if the window was not yet realized when
2621 // SetBackgroundStyle() was called
2622 if (m_needsStyleChange
)
2624 SetBackgroundStyle(GetBackgroundStyle());
2625 m_needsStyleChange
= false;
2628 wxWindowBase::OnInternalIdle();
2631 void wxWindowGTK::DoGetSize( int *width
, int *height
) const
2633 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2635 if (width
) (*width
) = m_width
;
2636 if (height
) (*height
) = m_height
;
2639 void wxWindowGTK::DoSetClientSize( int width
, int height
)
2641 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2643 const wxSize size
= GetSize();
2644 const wxSize clientSize
= GetClientSize();
2645 SetSize(width
+ (size
.x
- clientSize
.x
), height
+ (size
.y
- clientSize
.y
));
2648 void wxWindowGTK::DoGetClientSize( int *width
, int *height
) const
2650 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2657 // if window is scrollable, account for scrollbars
2658 if ( GTK_IS_SCROLLED_WINDOW(m_widget
) )
2660 GtkPolicyType policy
[ScrollDir_Max
];
2661 gtk_scrolled_window_get_policy(GTK_SCROLLED_WINDOW(m_widget
),
2662 &policy
[ScrollDir_Horz
],
2663 &policy
[ScrollDir_Vert
]);
2665 for ( int i
= 0; i
< ScrollDir_Max
; i
++ )
2667 // don't account for the scrollbars we don't have
2668 GtkRange
* const range
= m_scrollBar
[i
];
2672 // nor for the ones we have but don't current show
2673 switch ( policy
[i
] )
2675 case GTK_POLICY_NEVER
:
2676 // never shown so doesn't take any place
2679 case GTK_POLICY_ALWAYS
:
2680 // no checks necessary
2683 case GTK_POLICY_AUTOMATIC
:
2684 // may be shown or not, check
2685 GtkAdjustment
*adj
= gtk_range_get_adjustment(range
);
2686 if (gtk_adjustment_get_upper(adj
) <= gtk_adjustment_get_page_size(adj
))
2690 GtkScrolledWindowClass
*scroll_class
=
2691 GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT_GET_CLASS(m_widget
) );
2694 gtk_widget_size_request(GTK_WIDGET(range
), &req
);
2695 if (i
== ScrollDir_Horz
)
2696 h
-= req
.height
+ scroll_class
->scrollbar_spacing
;
2698 w
-= req
.width
+ scroll_class
->scrollbar_spacing
;
2702 const wxSize sizeBorders
= DoGetBorderSize();
2712 if (width
) *width
= w
;
2713 if (height
) *height
= h
;
2716 wxSize
wxWindowGTK::DoGetBorderSize() const
2719 return wxWindowBase::DoGetBorderSize();
2722 WX_PIZZA(m_wxwindow
)->get_border_widths(x
, y
);
2724 return 2*wxSize(x
, y
);
2727 void wxWindowGTK::DoGetPosition( int *x
, int *y
) const
2729 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2733 if (!IsTopLevel() && m_parent
&& m_parent
->m_wxwindow
)
2735 wxPizza
* pizza
= WX_PIZZA(m_parent
->m_wxwindow
);
2736 dx
= pizza
->m_scroll_x
;
2737 dy
= pizza
->m_scroll_y
;
2740 if (m_x
== -1 && m_y
== -1)
2742 GdkWindow
*source
= NULL
;
2744 source
= gtk_widget_get_window(m_wxwindow
);
2746 source
= gtk_widget_get_window(m_widget
);
2752 gdk_window_get_origin( source
, &org_x
, &org_y
);
2755 m_parent
->ScreenToClient(&org_x
, &org_y
);
2757 const_cast<wxWindowGTK
*>(this)->m_x
= org_x
;
2758 const_cast<wxWindowGTK
*>(this)->m_y
= org_y
;
2762 if (x
) (*x
) = m_x
- dx
;
2763 if (y
) (*y
) = m_y
- dy
;
2766 void wxWindowGTK::DoClientToScreen( int *x
, int *y
) const
2768 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2770 if (gtk_widget_get_window(m_widget
) == NULL
) return;
2772 GdkWindow
*source
= NULL
;
2774 source
= gtk_widget_get_window(m_wxwindow
);
2776 source
= gtk_widget_get_window(m_widget
);
2780 gdk_window_get_origin( source
, &org_x
, &org_y
);
2784 if (!gtk_widget_get_has_window(m_widget
))
2787 gtk_widget_get_allocation(m_widget
, &a
);
2796 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2797 *x
= (GetClientSize().x
- *x
) + org_x
;
2805 void wxWindowGTK::DoScreenToClient( int *x
, int *y
) const
2807 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2809 if (!gtk_widget_get_realized(m_widget
)) return;
2811 GdkWindow
*source
= NULL
;
2813 source
= gtk_widget_get_window(m_wxwindow
);
2815 source
= gtk_widget_get_window(m_widget
);
2819 gdk_window_get_origin( source
, &org_x
, &org_y
);
2823 if (!gtk_widget_get_has_window(m_widget
))
2826 gtk_widget_get_allocation(m_widget
, &a
);
2834 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2835 *x
= (GetClientSize().x
- *x
) - org_x
;
2842 bool wxWindowGTK::Show( bool show
)
2844 if ( !wxWindowBase::Show(show
) )
2850 // notice that we may call Hide() before the window is created and this is
2851 // actually useful to create it hidden initially -- but we can't call
2852 // Show() before it is created
2855 wxASSERT_MSG( !show
, "can't show invalid window" );
2863 // defer until later
2867 gtk_widget_show(m_widget
);
2871 gtk_widget_hide(m_widget
);
2874 wxShowEvent
eventShow(GetId(), show
);
2875 eventShow
.SetEventObject(this);
2876 HandleWindowEvent(eventShow
);
2881 void wxWindowGTK::DoEnable( bool enable
)
2883 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2885 gtk_widget_set_sensitive( m_widget
, enable
);
2886 if (m_wxwindow
&& (m_wxwindow
!= m_widget
))
2887 gtk_widget_set_sensitive( m_wxwindow
, enable
);
2890 int wxWindowGTK::GetCharHeight() const
2892 wxCHECK_MSG( (m_widget
!= NULL
), 12, wxT("invalid window") );
2894 wxFont font
= GetFont();
2895 wxCHECK_MSG( font
.IsOk(), 12, wxT("invalid font") );
2897 PangoContext
* context
= gtk_widget_get_pango_context(m_widget
);
2902 PangoFontDescription
*desc
= font
.GetNativeFontInfo()->description
;
2903 PangoLayout
*layout
= pango_layout_new(context
);
2904 pango_layout_set_font_description(layout
, desc
);
2905 pango_layout_set_text(layout
, "H", 1);
2906 PangoLayoutLine
*line
= (PangoLayoutLine
*)pango_layout_get_lines(layout
)->data
;
2908 PangoRectangle rect
;
2909 pango_layout_line_get_extents(line
, NULL
, &rect
);
2911 g_object_unref (layout
);
2913 return (int) PANGO_PIXELS(rect
.height
);
2916 int wxWindowGTK::GetCharWidth() const
2918 wxCHECK_MSG( (m_widget
!= NULL
), 8, wxT("invalid window") );
2920 wxFont font
= GetFont();
2921 wxCHECK_MSG( font
.IsOk(), 8, wxT("invalid font") );
2923 PangoContext
* context
= gtk_widget_get_pango_context(m_widget
);
2928 PangoFontDescription
*desc
= font
.GetNativeFontInfo()->description
;
2929 PangoLayout
*layout
= pango_layout_new(context
);
2930 pango_layout_set_font_description(layout
, desc
);
2931 pango_layout_set_text(layout
, "g", 1);
2932 PangoLayoutLine
*line
= (PangoLayoutLine
*)pango_layout_get_lines(layout
)->data
;
2934 PangoRectangle rect
;
2935 pango_layout_line_get_extents(line
, NULL
, &rect
);
2937 g_object_unref (layout
);
2939 return (int) PANGO_PIXELS(rect
.width
);
2942 void wxWindowGTK::DoGetTextExtent( const wxString
& string
,
2946 int *externalLeading
,
2947 const wxFont
*theFont
) const
2949 wxFont fontToUse
= theFont
? *theFont
: GetFont();
2951 wxCHECK_RET( fontToUse
.IsOk(), wxT("invalid font") );
2960 PangoContext
*context
= NULL
;
2962 context
= gtk_widget_get_pango_context( m_widget
);
2971 PangoFontDescription
*desc
= fontToUse
.GetNativeFontInfo()->description
;
2972 PangoLayout
*layout
= pango_layout_new(context
);
2973 pango_layout_set_font_description(layout
, desc
);
2975 const wxCharBuffer data
= wxGTK_CONV( string
);
2977 pango_layout_set_text(layout
, data
, strlen(data
));
2980 PangoRectangle rect
;
2981 pango_layout_get_extents(layout
, NULL
, &rect
);
2983 if (x
) (*x
) = (wxCoord
) PANGO_PIXELS(rect
.width
);
2984 if (y
) (*y
) = (wxCoord
) PANGO_PIXELS(rect
.height
);
2987 PangoLayoutIter
*iter
= pango_layout_get_iter(layout
);
2988 int baseline
= pango_layout_iter_get_baseline(iter
);
2989 pango_layout_iter_free(iter
);
2990 *descent
= *y
- PANGO_PIXELS(baseline
);
2992 if (externalLeading
) (*externalLeading
) = 0; // ??
2994 g_object_unref (layout
);
2997 void wxWindowGTK::GTKDisableFocusOutEvent()
2999 g_signal_handlers_block_by_func( m_focusWidget
,
3000 (gpointer
) gtk_window_focus_out_callback
, this);
3003 void wxWindowGTK::GTKEnableFocusOutEvent()
3005 g_signal_handlers_unblock_by_func( m_focusWidget
,
3006 (gpointer
) gtk_window_focus_out_callback
, this);
3009 bool wxWindowGTK::GTKHandleFocusIn()
3011 // Disable default focus handling for custom windows since the default GTK+
3012 // handler issues a repaint
3013 const bool retval
= m_wxwindow
? true : false;
3016 // NB: if there's still unprocessed deferred focus-out event (see
3017 // GTKHandleFocusOut() for explanation), we need to process it first so
3018 // that the order of focus events -- focus-out first, then focus-in
3019 // elsewhere -- is preserved
3020 if ( gs_deferredFocusOut
)
3022 if ( GTKNeedsToFilterSameWindowFocus() &&
3023 gs_deferredFocusOut
== this )
3025 // GTK+ focus changed from this wxWindow back to itself, so don't
3026 // emit any events at all
3027 wxLogTrace(TRACE_FOCUS
,
3028 "filtered out spurious focus change within %s(%p, %s)",
3029 GetClassInfo()->GetClassName(), this, GetLabel());
3030 gs_deferredFocusOut
= NULL
;
3034 // otherwise we need to send focus-out first
3035 wxASSERT_MSG ( gs_deferredFocusOut
!= this,
3036 "GTKHandleFocusIn(GTKFocus_Normal) called even though focus changed back to itself - derived class should handle this" );
3037 GTKHandleDeferredFocusOut();
3041 wxLogTrace(TRACE_FOCUS
,
3042 "handling focus_in event for %s(%p, %s)",
3043 GetClassInfo()->GetClassName(), this, GetLabel());
3046 gtk_im_context_focus_in(m_imData
->context
);
3048 gs_currentFocus
= this;
3049 gs_pendingFocus
= NULL
;
3052 // caret needs to be informed about focus change
3053 wxCaret
*caret
= GetCaret();
3056 caret
->OnSetFocus();
3058 #endif // wxUSE_CARET
3060 // Notify the parent keeping track of focus for the kbd navigation
3061 // purposes that we got it.
3062 wxChildFocusEvent
eventChildFocus(static_cast<wxWindow
*>(this));
3063 GTKProcessEvent(eventChildFocus
);
3065 wxFocusEvent
eventFocus(wxEVT_SET_FOCUS
, GetId());
3066 eventFocus
.SetEventObject(this);
3067 GTKProcessEvent(eventFocus
);
3072 bool wxWindowGTK::GTKHandleFocusOut()
3074 // Disable default focus handling for custom windows since the default GTK+
3075 // handler issues a repaint
3076 const bool retval
= m_wxwindow
? true : false;
3079 // NB: If a control is composed of several GtkWidgets and when focus
3080 // changes from one of them to another within the same wxWindow, we get
3081 // a focus-out event followed by focus-in for another GtkWidget owned
3082 // by the same wx control. We don't want to generate two spurious
3083 // wxEVT_SET_FOCUS events in this case, so we defer sending wx events
3084 // from GTKHandleFocusOut() until we know for sure it's not coming back
3085 // (i.e. in GTKHandleFocusIn() or at idle time).
3086 if ( GTKNeedsToFilterSameWindowFocus() )
3088 wxASSERT_MSG( gs_deferredFocusOut
== NULL
,
3089 "deferred focus out event already pending" );
3090 wxLogTrace(TRACE_FOCUS
,
3091 "deferring focus_out event for %s(%p, %s)",
3092 GetClassInfo()->GetClassName(), this, GetLabel());
3093 gs_deferredFocusOut
= this;
3097 GTKHandleFocusOutNoDeferring();
3102 void wxWindowGTK::GTKHandleFocusOutNoDeferring()
3104 wxLogTrace(TRACE_FOCUS
,
3105 "handling focus_out event for %s(%p, %s)",
3106 GetClassInfo()->GetClassName(), this, GetLabel());
3109 gtk_im_context_focus_out(m_imData
->context
);
3111 if ( gs_currentFocus
!= this )
3113 // Something is terribly wrong, gs_currentFocus is out of sync with the
3114 // real focus. We will reset it to NULL anyway, because after this
3115 // focus-out event is handled, one of the following with happen:
3117 // * either focus will go out of the app altogether, in which case
3118 // gs_currentFocus _should_ be NULL
3120 // * or it goes to another control, in which case focus-in event will
3121 // follow immediately and it will set gs_currentFocus to the right
3123 wxLogDebug("window %s(%p, %s) lost focus even though it didn't have it",
3124 GetClassInfo()->GetClassName(), this, GetLabel());
3126 gs_currentFocus
= NULL
;
3129 // caret needs to be informed about focus change
3130 wxCaret
*caret
= GetCaret();
3133 caret
->OnKillFocus();
3135 #endif // wxUSE_CARET
3137 wxFocusEvent
event( wxEVT_KILL_FOCUS
, GetId() );
3138 event
.SetEventObject( this );
3139 event
.SetWindow( FindFocus() );
3140 GTKProcessEvent( event
);
3144 void wxWindowGTK::GTKHandleDeferredFocusOut()
3146 // NB: See GTKHandleFocusOut() for explanation. This function is called
3147 // from either GTKHandleFocusIn() or OnInternalIdle() to process
3149 if ( gs_deferredFocusOut
)
3151 wxWindowGTK
*win
= gs_deferredFocusOut
;
3152 gs_deferredFocusOut
= NULL
;
3154 wxLogTrace(TRACE_FOCUS
,
3155 "processing deferred focus_out event for %s(%p, %s)",
3156 win
->GetClassInfo()->GetClassName(), win
, win
->GetLabel());
3158 win
->GTKHandleFocusOutNoDeferring();
3162 void wxWindowGTK::SetFocus()
3164 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
3166 // Setting "physical" focus is not immediate in GTK+ and while
3167 // gtk_widget_is_focus ("determines if the widget is the focus widget
3168 // within its toplevel", i.e. returns true for one widget per TLW, not
3169 // globally) returns true immediately after grabbing focus,
3170 // GTK_WIDGET_HAS_FOCUS (which returns true only for the one widget that
3171 // has focus at the moment) takes effect only after the window is shown
3172 // (if it was hidden at the moment of the call) or at the next event loop
3175 // Because we want to FindFocus() call immediately following
3176 // foo->SetFocus() to return foo, we have to keep track of "pending" focus
3178 gs_pendingFocus
= this;
3180 GtkWidget
*widget
= m_wxwindow
? m_wxwindow
: m_focusWidget
;
3182 if ( GTK_IS_CONTAINER(widget
) &&
3183 !gtk_widget_get_can_focus(widget
) )
3185 wxLogTrace(TRACE_FOCUS
,
3186 wxT("Setting focus to a child of %s(%p, %s)"),
3187 GetClassInfo()->GetClassName(), this, GetLabel().c_str());
3188 gtk_widget_child_focus(widget
, GTK_DIR_TAB_FORWARD
);
3192 wxLogTrace(TRACE_FOCUS
,
3193 wxT("Setting focus to %s(%p, %s)"),
3194 GetClassInfo()->GetClassName(), this, GetLabel().c_str());
3195 gtk_widget_grab_focus(widget
);
3199 void wxWindowGTK::SetCanFocus(bool canFocus
)
3201 gtk_widget_set_can_focus(m_widget
, canFocus
);
3203 if ( m_wxwindow
&& (m_widget
!= m_wxwindow
) )
3205 gtk_widget_set_can_focus(m_wxwindow
, canFocus
);
3209 bool wxWindowGTK::Reparent( wxWindowBase
*newParentBase
)
3211 wxCHECK_MSG( (m_widget
!= NULL
), false, wxT("invalid window") );
3213 wxWindowGTK
* const newParent
= (wxWindowGTK
*)newParentBase
;
3215 wxASSERT( GTK_IS_WIDGET(m_widget
) );
3217 if ( !wxWindowBase::Reparent(newParent
) )
3220 wxASSERT( GTK_IS_WIDGET(m_widget
) );
3222 // Notice that old m_parent pointer might be non-NULL here but the widget
3223 // still not have any parent at GTK level if it's a notebook page that had
3224 // been removed from the notebook so test this at GTK level and not wx one.
3225 if ( GtkWidget
*parentGTK
= gtk_widget_get_parent(m_widget
) )
3226 gtk_container_remove(GTK_CONTAINER(parentGTK
), m_widget
);
3228 wxASSERT( GTK_IS_WIDGET(m_widget
) );
3232 if (gtk_widget_get_visible (newParent
->m_widget
))
3234 m_showOnIdle
= true;
3235 gtk_widget_hide( m_widget
);
3237 /* insert GTK representation */
3238 newParent
->AddChildGTK(this);
3241 SetLayoutDirection(wxLayout_Default
);
3246 void wxWindowGTK::DoAddChild(wxWindowGTK
*child
)
3248 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid window") );
3249 wxASSERT_MSG( (child
!= NULL
), wxT("invalid child window") );
3254 /* insert GTK representation */
3258 void wxWindowGTK::AddChild(wxWindowBase
*child
)
3260 wxWindowBase::AddChild(child
);
3261 m_dirtyTabOrder
= true;
3262 wxTheApp
->WakeUpIdle();
3265 void wxWindowGTK::RemoveChild(wxWindowBase
*child
)
3267 wxWindowBase::RemoveChild(child
);
3268 m_dirtyTabOrder
= true;
3269 wxTheApp
->WakeUpIdle();
3273 wxLayoutDirection
wxWindowGTK::GTKGetLayout(GtkWidget
*widget
)
3275 return gtk_widget_get_direction(widget
) == GTK_TEXT_DIR_RTL
3276 ? wxLayout_RightToLeft
3277 : wxLayout_LeftToRight
;
3281 void wxWindowGTK::GTKSetLayout(GtkWidget
*widget
, wxLayoutDirection dir
)
3283 wxASSERT_MSG( dir
!= wxLayout_Default
, wxT("invalid layout direction") );
3285 gtk_widget_set_direction(widget
,
3286 dir
== wxLayout_RightToLeft
? GTK_TEXT_DIR_RTL
3287 : GTK_TEXT_DIR_LTR
);
3290 wxLayoutDirection
wxWindowGTK::GetLayoutDirection() const
3292 return GTKGetLayout(m_widget
);
3295 void wxWindowGTK::SetLayoutDirection(wxLayoutDirection dir
)
3297 if ( dir
== wxLayout_Default
)
3299 const wxWindow
*const parent
= GetParent();
3302 // inherit layout from parent.
3303 dir
= parent
->GetLayoutDirection();
3305 else // no parent, use global default layout
3307 dir
= wxTheApp
->GetLayoutDirection();
3311 if ( dir
== wxLayout_Default
)
3314 GTKSetLayout(m_widget
, dir
);
3316 if (m_wxwindow
&& (m_wxwindow
!= m_widget
))
3317 GTKSetLayout(m_wxwindow
, dir
);
3321 wxWindowGTK::AdjustForLayoutDirection(wxCoord x
,
3322 wxCoord
WXUNUSED(width
),
3323 wxCoord
WXUNUSED(widthTotal
)) const
3325 // We now mirror the coordinates of RTL windows in wxPizza
3329 void wxWindowGTK::DoMoveInTabOrder(wxWindow
*win
, WindowOrder move
)
3331 wxWindowBase::DoMoveInTabOrder(win
, move
);
3332 m_dirtyTabOrder
= true;
3333 wxTheApp
->WakeUpIdle();
3336 bool wxWindowGTK::DoNavigateIn(int flags
)
3338 if ( flags
& wxNavigationKeyEvent::WinChange
)
3340 wxFAIL_MSG( wxT("not implemented") );
3344 else // navigate inside the container
3346 wxWindow
*parent
= wxGetTopLevelParent((wxWindow
*)this);
3347 wxCHECK_MSG( parent
, false, wxT("every window must have a TLW parent") );
3349 GtkDirectionType dir
;
3350 dir
= flags
& wxNavigationKeyEvent::IsForward
? GTK_DIR_TAB_FORWARD
3351 : GTK_DIR_TAB_BACKWARD
;
3354 g_signal_emit_by_name(parent
->m_widget
, "focus", dir
, &rc
);
3360 bool wxWindowGTK::GTKWidgetNeedsMnemonic() const
3362 // none needed by default
3366 void wxWindowGTK::GTKWidgetDoSetMnemonic(GtkWidget
* WXUNUSED(w
))
3368 // nothing to do by default since none is needed
3371 void wxWindowGTK::RealizeTabOrder()
3375 if ( !m_children
.empty() )
3377 // we don't only construct the correct focus chain but also use
3378 // this opportunity to update the mnemonic widgets for the widgets
3381 GList
*chain
= NULL
;
3382 wxWindowGTK
* mnemonicWindow
= NULL
;
3384 for ( wxWindowList::const_iterator i
= m_children
.begin();
3385 i
!= m_children
.end();
3388 wxWindowGTK
*win
= *i
;
3390 bool focusableFromKeyboard
= win
->AcceptsFocusFromKeyboard();
3392 if ( mnemonicWindow
)
3394 if ( focusableFromKeyboard
)
3396 // wxComboBox et al. needs to focus on on a different
3397 // widget than m_widget, so if the main widget isn't
3398 // focusable try the connect widget
3399 GtkWidget
* w
= win
->m_widget
;
3400 if ( !gtk_widget_get_can_focus(w
) )
3402 w
= win
->GetConnectWidget();
3403 if ( !gtk_widget_get_can_focus(w
) )
3409 mnemonicWindow
->GTKWidgetDoSetMnemonic(w
);
3410 mnemonicWindow
= NULL
;
3414 else if ( win
->GTKWidgetNeedsMnemonic() )
3416 mnemonicWindow
= win
;
3419 if ( focusableFromKeyboard
)
3420 chain
= g_list_prepend(chain
, win
->m_widget
);
3423 chain
= g_list_reverse(chain
);
3425 gtk_container_set_focus_chain(GTK_CONTAINER(m_wxwindow
), chain
);
3430 gtk_container_unset_focus_chain(GTK_CONTAINER(m_wxwindow
));
3435 void wxWindowGTK::Raise()
3437 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
3439 if (m_wxwindow
&& gtk_widget_get_window(m_wxwindow
))
3441 gdk_window_raise(gtk_widget_get_window(m_wxwindow
));
3443 else if (gtk_widget_get_window(m_widget
))
3445 gdk_window_raise(gtk_widget_get_window(m_widget
));
3449 void wxWindowGTK::Lower()
3451 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
3453 if (m_wxwindow
&& gtk_widget_get_window(m_wxwindow
))
3455 gdk_window_lower(gtk_widget_get_window(m_wxwindow
));
3457 else if (gtk_widget_get_window(m_widget
))
3459 gdk_window_lower(gtk_widget_get_window(m_widget
));
3463 bool wxWindowGTK::SetCursor( const wxCursor
&cursor
)
3465 if ( !wxWindowBase::SetCursor(cursor
.IsOk() ? cursor
: *wxSTANDARD_CURSOR
) )
3473 void wxWindowGTK::GTKUpdateCursor(bool update_self
/*=true*/, bool recurse
/*=true*/)
3477 wxCursor
cursor(g_globalCursor
.IsOk() ? g_globalCursor
: GetCursor());
3478 if ( cursor
.IsOk() )
3480 wxArrayGdkWindows windowsThis
;
3481 GdkWindow
* window
= GTKGetWindow(windowsThis
);
3483 gdk_window_set_cursor( window
, cursor
.GetCursor() );
3486 const size_t count
= windowsThis
.size();
3487 for ( size_t n
= 0; n
< count
; n
++ )
3489 GdkWindow
*win
= windowsThis
[n
];
3490 // It can be zero if the window has not been realized yet.
3493 gdk_window_set_cursor(win
, cursor
.GetCursor());
3502 for (wxWindowList::iterator it
= GetChildren().begin(); it
!= GetChildren().end(); ++it
)
3504 (*it
)->GTKUpdateCursor( true );
3509 void wxWindowGTK::WarpPointer( int x
, int y
)
3511 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
3513 ClientToScreen(&x
, &y
);
3514 GdkDisplay
* display
= gtk_widget_get_display(m_widget
);
3515 GdkScreen
* screen
= gtk_widget_get_screen(m_widget
);
3517 GdkDeviceManager
* manager
= gdk_display_get_device_manager(display
);
3518 gdk_device_warp(gdk_device_manager_get_client_pointer(manager
), screen
, x
, y
);
3520 XWarpPointer(GDK_DISPLAY_XDISPLAY(display
),
3522 GDK_WINDOW_XID(gdk_screen_get_root_window(screen
)),
3527 wxWindowGTK::ScrollDir
wxWindowGTK::ScrollDirFromRange(GtkRange
*range
) const
3529 // find the scrollbar which generated the event
3530 for ( int dir
= 0; dir
< ScrollDir_Max
; dir
++ )
3532 if ( range
== m_scrollBar
[dir
] )
3533 return (ScrollDir
)dir
;
3536 wxFAIL_MSG( wxT("event from unknown scrollbar received") );
3538 return ScrollDir_Max
;
3541 bool wxWindowGTK::DoScrollByUnits(ScrollDir dir
, ScrollUnit unit
, int units
)
3543 bool changed
= false;
3544 GtkRange
* range
= m_scrollBar
[dir
];
3545 if ( range
&& units
)
3547 GtkAdjustment
* adj
= gtk_range_get_adjustment(range
);
3548 double inc
= unit
== ScrollUnit_Line
? gtk_adjustment_get_step_increment(adj
)
3549 : gtk_adjustment_get_page_increment(adj
);
3551 const int posOld
= wxRound(gtk_adjustment_get_value(adj
));
3552 gtk_range_set_value(range
, posOld
+ units
*inc
);
3554 changed
= wxRound(gtk_adjustment_get_value(adj
)) != posOld
;
3560 bool wxWindowGTK::ScrollLines(int lines
)
3562 return DoScrollByUnits(ScrollDir_Vert
, ScrollUnit_Line
, lines
);
3565 bool wxWindowGTK::ScrollPages(int pages
)
3567 return DoScrollByUnits(ScrollDir_Vert
, ScrollUnit_Page
, pages
);
3570 void wxWindowGTK::Refresh(bool WXUNUSED(eraseBackground
),
3573 if (m_widget
== NULL
|| !gtk_widget_get_mapped(m_widget
))
3578 GdkWindow
* window
= gtk_widget_get_window(m_wxwindow
);
3581 GdkRectangle r
= { rect
->x
, rect
->y
, rect
->width
, rect
->height
};
3582 if (GetLayoutDirection() == wxLayout_RightToLeft
)
3583 r
.x
= gdk_window_get_width(window
) - r
.x
- rect
->width
;
3584 gdk_window_invalidate_rect(window
, &r
, true);
3587 gdk_window_invalidate_rect(window
, NULL
, true);
3592 gtk_widget_queue_draw_area(m_widget
, rect
->x
, rect
->y
, rect
->width
, rect
->height
);
3594 gtk_widget_queue_draw(m_widget
);
3598 void wxWindowGTK::Update()
3600 if (m_widget
&& gtk_widget_get_mapped(m_widget
))
3602 GdkDisplay
* display
= gtk_widget_get_display(m_widget
);
3603 // Flush everything out to the server, and wait for it to finish.
3604 // This ensures nothing will overwrite the drawing we are about to do.
3605 gdk_display_sync(display
);
3607 GdkWindow
* window
= GTKGetDrawingWindow();
3609 window
= gtk_widget_get_window(m_widget
);
3610 gdk_window_process_updates(window
, true);
3612 // Flush again, but no need to wait for it to finish
3613 gdk_display_flush(display
);
3617 bool wxWindowGTK::DoIsExposed( int x
, int y
) const
3619 return m_updateRegion
.Contains(x
, y
) != wxOutRegion
;
3622 bool wxWindowGTK::DoIsExposed( int x
, int y
, int w
, int h
) const
3624 if (GetLayoutDirection() == wxLayout_RightToLeft
)
3625 return m_updateRegion
.Contains(x
-w
, y
, w
, h
) != wxOutRegion
;
3627 return m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
;
3630 void wxWindowGTK::GtkSendPaintEvents()
3634 m_updateRegion
.Clear();
3638 // Clip to paint region in wxClientDC
3639 m_clipPaintRegion
= true;
3641 m_nativeUpdateRegion
= m_updateRegion
;
3643 if (GetLayoutDirection() == wxLayout_RightToLeft
)
3645 // Transform m_updateRegion under RTL
3646 m_updateRegion
.Clear();
3649 gdk_drawable_get_size(gtk_widget_get_window(m_wxwindow
), &width
, NULL
);
3651 wxRegionIterator
upd( m_nativeUpdateRegion
);
3655 rect
.x
= upd
.GetX();
3656 rect
.y
= upd
.GetY();
3657 rect
.width
= upd
.GetWidth();
3658 rect
.height
= upd
.GetHeight();
3660 rect
.x
= width
- rect
.x
- rect
.width
;
3661 m_updateRegion
.Union( rect
);
3667 switch ( GetBackgroundStyle() )
3669 case wxBG_STYLE_ERASE
:
3671 wxWindowDC
dc( (wxWindow
*)this );
3672 dc
.SetDeviceClippingRegion( m_updateRegion
);
3674 // Work around gtk-qt <= 0.60 bug whereby the window colour
3678 GetOptionInt("gtk.window.force-background-colour") )
3680 dc
.SetBackground(GetBackgroundColour());
3684 wxEraseEvent
erase_event( GetId(), &dc
);
3685 erase_event
.SetEventObject( this );
3687 if ( HandleWindowEvent(erase_event
) )
3689 // background erased, don't do it again
3695 case wxBG_STYLE_SYSTEM
:
3696 if ( GetThemeEnabled() )
3698 // find ancestor from which to steal background
3699 wxWindow
*parent
= wxGetTopLevelParent((wxWindow
*)this);
3701 parent
= (wxWindow
*)this;
3703 if (gtk_widget_get_mapped(parent
->m_widget
))
3705 wxRegionIterator
upd( m_nativeUpdateRegion
);
3709 rect
.x
= upd
.GetX();
3710 rect
.y
= upd
.GetY();
3711 rect
.width
= upd
.GetWidth();
3712 rect
.height
= upd
.GetHeight();
3714 gtk_paint_flat_box(gtk_widget_get_style(parent
->m_widget
),
3715 GTKGetDrawingWindow(),
3716 gtk_widget_get_state(m_wxwindow
),
3729 case wxBG_STYLE_PAINT
:
3730 // nothing to do: window will be painted over in EVT_PAINT
3734 wxFAIL_MSG( "unsupported background style" );
3737 wxNcPaintEvent
nc_paint_event( GetId() );
3738 nc_paint_event
.SetEventObject( this );
3739 HandleWindowEvent( nc_paint_event
);
3741 wxPaintEvent
paint_event( GetId() );
3742 paint_event
.SetEventObject( this );
3743 HandleWindowEvent( paint_event
);
3745 m_clipPaintRegion
= false;
3747 m_updateRegion
.Clear();
3748 m_nativeUpdateRegion
.Clear();
3751 void wxWindowGTK::SetDoubleBuffered( bool on
)
3753 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
3756 gtk_widget_set_double_buffered( m_wxwindow
, on
);
3759 bool wxWindowGTK::IsDoubleBuffered() const
3761 return gtk_widget_get_double_buffered( m_wxwindow
);
3764 void wxWindowGTK::ClearBackground()
3766 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
3770 void wxWindowGTK::DoSetToolTip( wxToolTip
*tip
)
3772 if (m_tooltip
!= tip
)
3774 wxWindowBase::DoSetToolTip(tip
);
3777 m_tooltip
->GTKSetWindow(static_cast<wxWindow
*>(this));
3779 GTKApplyToolTip(NULL
);
3783 void wxWindowGTK::GTKApplyToolTip(const char* tip
)
3785 wxToolTip::GTKApply(GetConnectWidget(), tip
);
3787 #endif // wxUSE_TOOLTIPS
3789 bool wxWindowGTK::SetBackgroundColour( const wxColour
&colour
)
3791 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid window") );
3793 if (!wxWindowBase::SetBackgroundColour(colour
))
3798 // We need the pixel value e.g. for background clearing.
3799 m_backgroundColour
.CalcPixel(gtk_widget_get_colormap(m_widget
));
3802 // apply style change (forceStyle=true so that new style is applied
3803 // even if the bg colour changed from valid to wxNullColour)
3804 GTKApplyWidgetStyle(true);
3809 bool wxWindowGTK::SetForegroundColour( const wxColour
&colour
)
3811 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid window") );
3813 if (!wxWindowBase::SetForegroundColour(colour
))
3820 // We need the pixel value e.g. for background clearing.
3821 m_foregroundColour
.CalcPixel(gtk_widget_get_colormap(m_widget
));
3824 // apply style change (forceStyle=true so that new style is applied
3825 // even if the bg colour changed from valid to wxNullColour):
3826 GTKApplyWidgetStyle(true);
3831 PangoContext
*wxWindowGTK::GTKGetPangoDefaultContext()
3833 return gtk_widget_get_pango_context( m_widget
);
3836 GtkRcStyle
*wxWindowGTK::GTKCreateWidgetStyle(bool forceStyle
)
3838 // do we need to apply any changes at all?
3841 !m_foregroundColour
.IsOk() && !m_backgroundColour
.IsOk() )
3846 GtkRcStyle
*style
= gtk_rc_style_new();
3848 if ( m_font
.IsOk() )
3851 pango_font_description_copy( m_font
.GetNativeFontInfo()->description
);
3854 int flagsNormal
= 0,
3857 flagsInsensitive
= 0;
3859 if ( m_foregroundColour
.IsOk() )
3861 const GdkColor
*fg
= m_foregroundColour
.GetColor();
3863 style
->fg
[GTK_STATE_NORMAL
] =
3864 style
->text
[GTK_STATE_NORMAL
] = *fg
;
3865 flagsNormal
|= GTK_RC_FG
| GTK_RC_TEXT
;
3867 style
->fg
[GTK_STATE_PRELIGHT
] =
3868 style
->text
[GTK_STATE_PRELIGHT
] = *fg
;
3869 flagsPrelight
|= GTK_RC_FG
| GTK_RC_TEXT
;
3871 style
->fg
[GTK_STATE_ACTIVE
] =
3872 style
->text
[GTK_STATE_ACTIVE
] = *fg
;
3873 flagsActive
|= GTK_RC_FG
| GTK_RC_TEXT
;
3876 if ( m_backgroundColour
.IsOk() )
3878 const GdkColor
*bg
= m_backgroundColour
.GetColor();
3880 style
->bg
[GTK_STATE_NORMAL
] =
3881 style
->base
[GTK_STATE_NORMAL
] = *bg
;
3882 flagsNormal
|= GTK_RC_BG
| GTK_RC_BASE
;
3884 style
->bg
[GTK_STATE_PRELIGHT
] =
3885 style
->base
[GTK_STATE_PRELIGHT
] = *bg
;
3886 flagsPrelight
|= GTK_RC_BG
| GTK_RC_BASE
;
3888 style
->bg
[GTK_STATE_ACTIVE
] =
3889 style
->base
[GTK_STATE_ACTIVE
] = *bg
;
3890 flagsActive
|= GTK_RC_BG
| GTK_RC_BASE
;
3892 style
->bg
[GTK_STATE_INSENSITIVE
] =
3893 style
->base
[GTK_STATE_INSENSITIVE
] = *bg
;
3894 flagsInsensitive
|= GTK_RC_BG
| GTK_RC_BASE
;
3897 style
->color_flags
[GTK_STATE_NORMAL
] = (GtkRcFlags
)flagsNormal
;
3898 style
->color_flags
[GTK_STATE_PRELIGHT
] = (GtkRcFlags
)flagsPrelight
;
3899 style
->color_flags
[GTK_STATE_ACTIVE
] = (GtkRcFlags
)flagsActive
;
3900 style
->color_flags
[GTK_STATE_INSENSITIVE
] = (GtkRcFlags
)flagsInsensitive
;
3905 void wxWindowGTK::GTKApplyWidgetStyle(bool forceStyle
)
3907 GtkRcStyle
*style
= GTKCreateWidgetStyle(forceStyle
);
3910 DoApplyWidgetStyle(style
);
3911 g_object_unref(style
);
3914 // Style change may affect GTK+'s size calculation:
3915 InvalidateBestSize();
3918 void wxWindowGTK::DoApplyWidgetStyle(GtkRcStyle
*style
)
3922 // block the signal temporarily to avoid sending
3923 // wxSysColourChangedEvents when we change the colours ourselves
3924 bool unblock
= false;
3928 g_signal_handlers_block_by_func(
3929 m_wxwindow
, (void *)gtk_window_style_set_callback
, this);
3932 gtk_widget_modify_style(m_wxwindow
, style
);
3936 g_signal_handlers_unblock_by_func(
3937 m_wxwindow
, (void *)gtk_window_style_set_callback
, this);
3942 gtk_widget_modify_style(m_widget
, style
);
3946 bool wxWindowGTK::SetBackgroundStyle(wxBackgroundStyle style
)
3948 wxWindowBase::SetBackgroundStyle(style
);
3950 if ( style
== wxBG_STYLE_PAINT
)
3955 window
= GTKGetDrawingWindow();
3959 GtkWidget
* const w
= GetConnectWidget();
3960 window
= w
? gtk_widget_get_window(w
) : NULL
;
3965 // Make sure GDK/X11 doesn't refresh the window
3967 gdk_window_set_back_pixmap( window
, None
, False
);
3969 Display
* display
= GDK_WINDOW_DISPLAY(window
);
3972 m_needsStyleChange
= false;
3974 else // window not realized yet
3976 // Do in OnIdle, because the window is not yet available
3977 m_needsStyleChange
= true;
3980 // Don't apply widget style, or we get a grey background
3984 // apply style change (forceStyle=true so that new style is applied
3985 // even if the bg colour changed from valid to wxNullColour):
3986 GTKApplyWidgetStyle(true);
3992 // ----------------------------------------------------------------------------
3993 // Pop-up menu stuff
3994 // ----------------------------------------------------------------------------
3996 #if wxUSE_MENUS_NATIVE
4000 void wxPopupMenuPositionCallback( GtkMenu
*menu
,
4002 gboolean
* WXUNUSED(whatever
),
4003 gpointer user_data
)
4005 // ensure that the menu appears entirely on screen
4007 gtk_widget_get_child_requisition(GTK_WIDGET(menu
), &req
);
4009 wxSize sizeScreen
= wxGetDisplaySize();
4010 wxPoint
*pos
= (wxPoint
*)user_data
;
4012 gint xmax
= sizeScreen
.x
- req
.width
,
4013 ymax
= sizeScreen
.y
- req
.height
;
4015 *x
= pos
->x
< xmax
? pos
->x
: xmax
;
4016 *y
= pos
->y
< ymax
? pos
->y
: ymax
;
4020 bool wxWindowGTK::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
4022 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid window") );
4028 GtkMenuPositionFunc posfunc
;
4029 if ( x
== -1 && y
== -1 )
4031 // use GTK's default positioning algorithm
4037 pos
= ClientToScreen(wxPoint(x
, y
));
4039 posfunc
= wxPopupMenuPositionCallback
;
4042 menu
->m_popupShown
= true;
4044 GTK_MENU(menu
->m_menu
),
4045 NULL
, // parent menu shell
4046 NULL
, // parent menu item
4047 posfunc
, // function to position it
4048 userdata
, // client data
4049 0, // button used to activate it
4050 gtk_get_current_event_time()
4053 while (menu
->m_popupShown
)
4055 gtk_main_iteration();
4061 #endif // wxUSE_MENUS_NATIVE
4063 #if wxUSE_DRAG_AND_DROP
4065 void wxWindowGTK::SetDropTarget( wxDropTarget
*dropTarget
)
4067 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
4069 GtkWidget
*dnd_widget
= GetConnectWidget();
4071 if (m_dropTarget
) m_dropTarget
->GtkUnregisterWidget( dnd_widget
);
4073 if (m_dropTarget
) delete m_dropTarget
;
4074 m_dropTarget
= dropTarget
;
4076 if (m_dropTarget
) m_dropTarget
->GtkRegisterWidget( dnd_widget
);
4079 #endif // wxUSE_DRAG_AND_DROP
4081 GtkWidget
* wxWindowGTK::GetConnectWidget()
4083 GtkWidget
*connect_widget
= m_widget
;
4084 if (m_wxwindow
) connect_widget
= m_wxwindow
;
4086 return connect_widget
;
4089 bool wxWindowGTK::GTKIsOwnWindow(GdkWindow
*window
) const
4091 wxArrayGdkWindows windowsThis
;
4092 GdkWindow
* const winThis
= GTKGetWindow(windowsThis
);
4094 return winThis
? window
== winThis
4095 : windowsThis
.Index(window
) != wxNOT_FOUND
;
4098 GdkWindow
*wxWindowGTK::GTKGetWindow(wxArrayGdkWindows
& WXUNUSED(windows
)) const
4100 return m_wxwindow
? GTKGetDrawingWindow() : gtk_widget_get_window(m_widget
);
4103 bool wxWindowGTK::SetFont( const wxFont
&font
)
4105 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid window") );
4107 if (!wxWindowBase::SetFont(font
))
4110 // apply style change (forceStyle=true so that new style is applied
4111 // even if the font changed from valid to wxNullFont):
4112 GTKApplyWidgetStyle(true);
4117 void wxWindowGTK::DoCaptureMouse()
4119 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
4121 GdkWindow
*window
= NULL
;
4123 window
= GTKGetDrawingWindow();
4125 window
= gtk_widget_get_window(GetConnectWidget());
4127 wxCHECK_RET( window
, wxT("CaptureMouse() failed") );
4129 const wxCursor
* cursor
= &m_cursor
;
4130 if (!cursor
->IsOk())
4131 cursor
= wxSTANDARD_CURSOR
;
4133 gdk_pointer_grab( window
, FALSE
,
4135 (GDK_BUTTON_PRESS_MASK
|
4136 GDK_BUTTON_RELEASE_MASK
|
4137 GDK_POINTER_MOTION_HINT_MASK
|
4138 GDK_POINTER_MOTION_MASK
),
4140 cursor
->GetCursor(),
4141 (guint32
)GDK_CURRENT_TIME
);
4142 g_captureWindow
= this;
4143 g_captureWindowHasMouse
= true;
4146 void wxWindowGTK::DoReleaseMouse()
4148 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
4150 wxCHECK_RET( g_captureWindow
, wxT("can't release mouse - not captured") );
4152 g_captureWindow
= NULL
;
4154 GdkWindow
*window
= NULL
;
4156 window
= GTKGetDrawingWindow();
4158 window
= gtk_widget_get_window(GetConnectWidget());
4163 gdk_pointer_ungrab ( (guint32
)GDK_CURRENT_TIME
);
4166 void wxWindowGTK::GTKReleaseMouseAndNotify()
4169 wxMouseCaptureLostEvent
evt(GetId());
4170 evt
.SetEventObject( this );
4171 HandleWindowEvent( evt
);
4175 wxWindow
*wxWindowBase::GetCapture()
4177 return (wxWindow
*)g_captureWindow
;
4180 bool wxWindowGTK::IsRetained() const
4185 void wxWindowGTK::SetScrollbar(int orient
,
4189 bool WXUNUSED(update
))
4191 const int dir
= ScrollDirFromOrient(orient
);
4192 GtkRange
* const sb
= m_scrollBar
[dir
];
4193 wxCHECK_RET( sb
, wxT("this window is not scrollable") );
4197 // GtkRange requires upper > lower
4202 g_signal_handlers_block_by_func(
4203 sb
, (void*)gtk_scrollbar_value_changed
, this);
4205 gtk_range_set_increments(sb
, 1, thumbVisible
);
4206 gtk_adjustment_set_page_size(gtk_range_get_adjustment(sb
), thumbVisible
);
4207 gtk_range_set_range(sb
, 0, range
);
4208 gtk_range_set_value(sb
, pos
);
4209 m_scrollPos
[dir
] = gtk_range_get_value(sb
);
4211 g_signal_handlers_unblock_by_func(
4212 sb
, (void*)gtk_scrollbar_value_changed
, this);
4215 void wxWindowGTK::SetScrollPos(int orient
, int pos
, bool WXUNUSED(refresh
))
4217 const int dir
= ScrollDirFromOrient(orient
);
4218 GtkRange
* const sb
= m_scrollBar
[dir
];
4219 wxCHECK_RET( sb
, wxT("this window is not scrollable") );
4221 // This check is more than an optimization. Without it, the slider
4222 // will not move smoothly while tracking when using wxScrollHelper.
4223 if (GetScrollPos(orient
) != pos
)
4225 g_signal_handlers_block_by_func(
4226 sb
, (void*)gtk_scrollbar_value_changed
, this);
4228 gtk_range_set_value(sb
, pos
);
4229 m_scrollPos
[dir
] = gtk_range_get_value(sb
);
4231 g_signal_handlers_unblock_by_func(
4232 sb
, (void*)gtk_scrollbar_value_changed
, this);
4236 int wxWindowGTK::GetScrollThumb(int orient
) const
4238 GtkRange
* const sb
= m_scrollBar
[ScrollDirFromOrient(orient
)];
4239 wxCHECK_MSG( sb
, 0, wxT("this window is not scrollable") );
4241 return wxRound(gtk_adjustment_get_page_size(gtk_range_get_adjustment(sb
)));
4244 int wxWindowGTK::GetScrollPos( int orient
) const
4246 GtkRange
* const sb
= m_scrollBar
[ScrollDirFromOrient(orient
)];
4247 wxCHECK_MSG( sb
, 0, wxT("this window is not scrollable") );
4249 return wxRound(gtk_range_get_value(sb
));
4252 int wxWindowGTK::GetScrollRange( int orient
) const
4254 GtkRange
* const sb
= m_scrollBar
[ScrollDirFromOrient(orient
)];
4255 wxCHECK_MSG( sb
, 0, wxT("this window is not scrollable") );
4257 return wxRound(gtk_adjustment_get_upper(gtk_range_get_adjustment(sb
)));
4260 // Determine if increment is the same as +/-x, allowing for some small
4261 // difference due to possible inexactness in floating point arithmetic
4262 static inline bool IsScrollIncrement(double increment
, double x
)
4264 wxASSERT(increment
> 0);
4265 const double tolerance
= 1.0 / 1024;
4266 return fabs(increment
- fabs(x
)) < tolerance
;
4269 wxEventType
wxWindowGTK::GTKGetScrollEventType(GtkRange
* range
)
4271 wxASSERT(range
== m_scrollBar
[0] || range
== m_scrollBar
[1]);
4273 const int barIndex
= range
== m_scrollBar
[1];
4275 const double value
= gtk_range_get_value(range
);
4277 // save previous position
4278 const double oldPos
= m_scrollPos
[barIndex
];
4279 // update current position
4280 m_scrollPos
[barIndex
] = value
;
4281 // If event should be ignored, or integral position has not changed
4282 if (!m_hasVMT
|| g_blockEventsOnDrag
|| wxRound(value
) == wxRound(oldPos
))
4287 wxEventType eventType
= wxEVT_SCROLL_THUMBTRACK
;
4290 // Difference from last change event
4291 const double diff
= value
- oldPos
;
4292 const bool isDown
= diff
> 0;
4294 GtkAdjustment
* adj
= gtk_range_get_adjustment(range
);
4295 if (IsScrollIncrement(gtk_adjustment_get_step_increment(adj
), diff
))
4297 eventType
= isDown
? wxEVT_SCROLL_LINEDOWN
: wxEVT_SCROLL_LINEUP
;
4299 else if (IsScrollIncrement(gtk_adjustment_get_page_increment(adj
), diff
))
4301 eventType
= isDown
? wxEVT_SCROLL_PAGEDOWN
: wxEVT_SCROLL_PAGEUP
;
4303 else if (m_mouseButtonDown
)
4305 // Assume track event
4306 m_isScrolling
= true;
4312 void wxWindowGTK::ScrollWindow( int dx
, int dy
, const wxRect
* WXUNUSED(rect
) )
4314 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
4316 wxCHECK_RET( m_wxwindow
!= NULL
, wxT("window needs client area for scrolling") );
4318 // No scrolling requested.
4319 if ((dx
== 0) && (dy
== 0)) return;
4321 m_clipPaintRegion
= true;
4323 WX_PIZZA(m_wxwindow
)->scroll(dx
, dy
);
4325 m_clipPaintRegion
= false;
4328 bool restoreCaret
= (GetCaret() != NULL
&& GetCaret()->IsVisible());
4331 wxRect
caretRect(GetCaret()->GetPosition(), GetCaret()->GetSize());
4333 caretRect
.width
+= dx
;
4336 caretRect
.x
+= dx
; caretRect
.width
-= dx
;
4339 caretRect
.height
+= dy
;
4342 caretRect
.y
+= dy
; caretRect
.height
-= dy
;
4345 RefreshRect(caretRect
);
4347 #endif // wxUSE_CARET
4350 void wxWindowGTK::GTKScrolledWindowSetBorder(GtkWidget
* w
, int wxstyle
)
4352 //RN: Note that static controls usually have no border on gtk, so maybe
4353 //it makes sense to treat that as simply no border at the wx level
4355 if (!(wxstyle
& wxNO_BORDER
) && !(wxstyle
& wxBORDER_STATIC
))
4357 GtkShadowType gtkstyle
;
4359 if(wxstyle
& wxBORDER_RAISED
)
4360 gtkstyle
= GTK_SHADOW_OUT
;
4361 else if ((wxstyle
& wxBORDER_SUNKEN
) || (wxstyle
& wxBORDER_THEME
))
4362 gtkstyle
= GTK_SHADOW_IN
;
4365 else if (wxstyle
& wxBORDER_DOUBLE
)
4366 gtkstyle
= GTK_SHADOW_ETCHED_IN
;
4369 gtkstyle
= GTK_SHADOW_IN
;
4371 gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(w
),
4376 void wxWindowGTK::SetWindowStyleFlag( long style
)
4378 // Updates the internal variable. NB: Now m_windowStyle bits carry the _new_ style values already
4379 wxWindowBase::SetWindowStyleFlag(style
);
4382 // Find the wxWindow at the current mouse position, also returning the mouse
4384 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
4386 pt
= wxGetMousePosition();
4387 wxWindow
* found
= wxFindWindowAtPoint(pt
);
4391 // Get the current mouse position.
4392 wxPoint
wxGetMousePosition()
4394 /* This crashes when used within wxHelpContext,
4395 so we have to use the X-specific implementation below.
4397 GdkModifierType *mask;
4398 (void) gdk_window_get_pointer(NULL, &x, &y, mask);
4400 return wxPoint(x, y);
4404 GdkWindow
* windowAtPtr
= gdk_window_at_pointer(& x
, & y
);
4406 Display
*display
= windowAtPtr
? GDK_WINDOW_XDISPLAY(windowAtPtr
) : GDK_DISPLAY();
4407 Window rootWindow
= RootWindowOfScreen (DefaultScreenOfDisplay(display
));
4408 Window rootReturn
, childReturn
;
4409 int rootX
, rootY
, winX
, winY
;
4410 unsigned int maskReturn
;
4412 XQueryPointer (display
,
4416 &rootX
, &rootY
, &winX
, &winY
, &maskReturn
);
4417 return wxPoint(rootX
, rootY
);
4421 GdkWindow
* wxWindowGTK::GTKGetDrawingWindow() const
4423 GdkWindow
* window
= NULL
;
4425 window
= gtk_widget_get_window(m_wxwindow
);
4429 // ----------------------------------------------------------------------------
4431 // ----------------------------------------------------------------------------
4436 // this is called if we attempted to freeze unrealized widget when it finally
4437 // is realized (and so can be frozen):
4438 static void wx_frozen_widget_realize(GtkWidget
* w
, wxWindowGTK
* win
)
4440 wxASSERT( w
&& gtk_widget_get_has_window(w
) );
4441 wxASSERT( gtk_widget_get_realized(w
) );
4443 g_signal_handlers_disconnect_by_func
4446 (void*)wx_frozen_widget_realize
,
4451 if (w
== win
->m_wxwindow
)
4452 window
= win
->GTKGetDrawingWindow();
4454 window
= gtk_widget_get_window(w
);
4455 gdk_window_freeze_updates(window
);
4460 void wxWindowGTK::GTKFreezeWidget(GtkWidget
*w
)
4462 if ( !w
|| !gtk_widget_get_has_window(w
) )
4463 return; // window-less widget, cannot be frozen
4465 GdkWindow
* window
= gtk_widget_get_window(w
);
4468 // we can't thaw unrealized widgets because they don't have GdkWindow,
4469 // so set it up to be done immediately after realization:
4470 g_signal_connect_after
4474 G_CALLBACK(wx_frozen_widget_realize
),
4480 if (w
== m_wxwindow
)
4481 window
= GTKGetDrawingWindow();
4482 gdk_window_freeze_updates(window
);
4485 void wxWindowGTK::GTKThawWidget(GtkWidget
*w
)
4487 if ( !w
|| !gtk_widget_get_has_window(w
) )
4488 return; // window-less widget, cannot be frozen
4490 GdkWindow
* window
= gtk_widget_get_window(w
);
4493 // the widget wasn't realized yet, no need to thaw
4494 g_signal_handlers_disconnect_by_func
4497 (void*)wx_frozen_widget_realize
,
4503 if (w
== m_wxwindow
)
4504 window
= GTKGetDrawingWindow();
4505 gdk_window_thaw_updates(window
);
4508 void wxWindowGTK::DoFreeze()
4510 GTKFreezeWidget(m_widget
);
4511 if ( m_wxwindow
&& m_widget
!= m_wxwindow
)
4512 GTKFreezeWidget(m_wxwindow
);
4515 void wxWindowGTK::DoThaw()
4517 GTKThawWidget(m_widget
);
4518 if ( m_wxwindow
&& m_widget
!= m_wxwindow
)
4519 GTKThawWidget(m_wxwindow
);