1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/window.cpp
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"
36 #include "wx/thread.h"
41 // FIXME: Due to a hack we use GtkCombo in here, which is deprecated since gtk2.3.0
42 #include <gtk/gtkversion.h>
43 #if defined(GTK_DISABLE_DEPRECATED) && GTK_CHECK_VERSION(2,3,0)
44 #undef GTK_DISABLE_DEPRECATED
45 #include <gtk/gtkcombo.h>
46 #define GTK_DISABLE_DEPRECATED
49 #include "wx/gtk/private.h"
50 #include "wx/gtk/win_gtk.h"
51 #include <gdk/gdkkeysyms.h>
54 //-----------------------------------------------------------------------------
55 // documentation on internals
56 //-----------------------------------------------------------------------------
59 I have been asked several times about writing some documentation about
60 the GTK port of wxWidgets, especially its internal structures. Obviously,
61 you cannot understand wxGTK without knowing a little about the GTK, but
62 some more information about what the wxWindow, which is the base class
63 for all other window classes, does seems required as well.
67 What does wxWindow do? It contains the common interface for the following
68 jobs of its descendants:
70 1) Define the rudimentary behaviour common to all window classes, such as
71 resizing, intercepting user input (so as to make it possible to use these
72 events for special purposes in a derived class), window names etc.
74 2) Provide the possibility to contain and manage children, if the derived
75 class is allowed to contain children, which holds true for those window
76 classes which do not display a native GTK widget. To name them, these
77 classes are wxPanel, wxScrolledWindow, wxDialog, wxFrame. The MDI frame-
78 work classes are a special case and are handled a bit differently from
79 the rest. The same holds true for the wxNotebook class.
81 3) Provide the possibility to draw into a client area of a window. This,
82 too, only holds true for classes that do not display a native GTK widget
85 4) Provide the entire mechanism for scrolling widgets. This actual inter-
86 face for this is usually in wxScrolledWindow, but the GTK implementation
89 5) A multitude of helper or extra methods for special purposes, such as
90 Drag'n'Drop, managing validators etc.
92 6) Display a border (sunken, raised, simple or none).
94 Normally one might expect, that one wxWidgets window would always correspond
95 to one GTK widget. Under GTK, there is no such all-round widget that has all
96 the functionality. Moreover, the GTK defines a client area as a different
97 widget from the actual widget you are handling. Last but not least some
98 special classes (e.g. wxFrame) handle different categories of widgets and
99 still have the possibility to draw something in the client area.
100 It was therefore required to write a special purpose GTK widget, that would
101 represent a client area in the sense of wxWidgets capable to do the jobs
102 2), 3) and 4). I have written this class and it resides in win_gtk.c of
105 All windows must have a widget, with which they interact with other under-
106 lying GTK widgets. It is this widget, e.g. that has to be resized etc and
107 the wxWindow class has a member variable called m_widget which holds a
108 pointer to this widget. When the window class represents a GTK native widget,
109 this is (in most cases) the only GTK widget the class manages. E.g. the
110 wxStaticText class handles only a GtkLabel widget a pointer to which you
111 can find in m_widget (defined in wxWindow)
113 When the class has a client area for drawing into and for containing children
114 it has to handle the client area widget (of the type GtkPizza, defined in
115 win_gtk.c), but there could be any number of widgets, handled by a class
116 The common rule for all windows is only, that the widget that interacts with
117 the rest of GTK must be referenced in m_widget and all other widgets must be
118 children of this widget on the GTK level. The top-most widget, which also
119 represents the client area, must be in the m_wxwindow field and must be of
122 As I said, the window classes that display a GTK native widget only have
123 one widget, so in the case of e.g. the wxButton class m_widget holds a
124 pointer to a GtkButton widget. But windows with client areas (for drawing
125 and children) have a m_widget field that is a pointer to a GtkScrolled-
126 Window and a m_wxwindow field that is pointer to a GtkPizza and this
127 one is (in the GTK sense) a child of the GtkScrolledWindow.
129 If the m_wxwindow field is set, then all input to this widget is inter-
130 cepted and sent to the wxWidgets class. If not, all input to the widget
131 that gets pointed to by m_widget gets intercepted and sent to the class.
135 The design of scrolling in wxWidgets is markedly different from that offered
136 by the GTK itself and therefore we cannot simply take it as it is. In GTK,
137 clicking on a scrollbar belonging to scrolled window will inevitably move
138 the window. In wxWidgets, the scrollbar will only emit an event, send this
139 to (normally) a wxScrolledWindow and that class will call ScrollWindow()
140 which actually moves the window and its sub-windows. Note that GtkPizza
141 memorizes how much it has been scrolled but that wxWidgets forgets this
142 so that the two coordinates systems have to be kept in synch. This is done
143 in various places using the pizza->xoffset and pizza->yoffset values.
147 Singularly the most broken code in GTK is the code that is supposed to
148 inform subwindows (child windows) about new positions. Very often, duplicate
149 events are sent without changes in size or position, equally often no
150 events are sent at all (All this is due to a bug in the GtkContainer code
151 which got fixed in GTK 1.2.6). For that reason, wxGTK completely ignores
152 GTK's own system and it simply waits for size events for toplevel windows
153 and then iterates down the respective size events to all window. This has
154 the disadvantage that windows might get size events before the GTK widget
155 actually has the reported size. This doesn't normally pose any problem, but
156 the OpenGL drawing routines rely on correct behaviour. Therefore, I have
157 added the m_nativeSizeEvents flag, which is true only for the OpenGL canvas,
158 i.e. the wxGLCanvas will emit a size event, when (and not before) the X11
159 window that is used for OpenGL output really has that size (as reported by
164 If someone at some point of time feels the immense desire to have a look at,
165 change or attempt to optimise the Refresh() logic, this person will need an
166 intimate understanding of what "draw" and "expose" events are and what
167 they are used for, in particular when used in connection with GTK's
168 own windowless widgets. Beware.
172 Cursors, too, have been a constant source of pleasure. The main difficulty
173 is that a GdkWindow inherits a cursor if the programmer sets a new cursor
174 for the parent. To prevent this from doing too much harm, I use idle time
175 to set the cursor over and over again, starting from the toplevel windows
176 and ending with the youngest generation (speaking of parent and child windows).
177 Also don't forget that cursors (like much else) are connected to GdkWindows,
178 not GtkWidgets and that the "window" field of a GtkWidget might very well
179 point to the GdkWindow of the parent widget (-> "window-less widget") and
180 that the two obviously have very different meanings.
184 //-----------------------------------------------------------------------------
186 //-----------------------------------------------------------------------------
188 // Don't allow event propagation during drag
189 bool g_blockEventsOnDrag
;
190 // Don't allow mouse event propagation during scroll
191 bool g_blockEventsOnScroll
;
192 extern wxCursor g_globalCursor
;
194 // mouse capture state: the window which has it and if the mouse is currently
196 static wxWindowGTK
*g_captureWindow
= (wxWindowGTK
*) NULL
;
197 static bool g_captureWindowHasMouse
= false;
199 wxWindowGTK
*g_focusWindow
= (wxWindowGTK
*) NULL
;
201 // the last window which had the focus - this is normally never NULL (except
202 // if we never had focus at all) as even when g_focusWindow is NULL it still
203 // keeps its previous value
204 wxWindowGTK
*g_focusWindowLast
= (wxWindowGTK
*) NULL
;
206 // If a window get the focus set but has not been realized
207 // yet, defer setting the focus to idle time.
208 wxWindowGTK
*g_delayedFocus
= (wxWindowGTK
*) NULL
;
210 // global variables because GTK+ DnD want to have the
211 // mouse event that caused it
212 GdkEvent
*g_lastMouseEvent
= (GdkEvent
*) NULL
;
213 int g_lastButtonNumber
= 0;
215 extern bool g_mainThreadLocked
;
217 //-----------------------------------------------------------------------------
219 //-----------------------------------------------------------------------------
224 # define DEBUG_MAIN_THREAD if (wxThread::IsMain() && g_mainThreadLocked) printf("gui reentrance");
226 # define DEBUG_MAIN_THREAD
229 #define DEBUG_MAIN_THREAD
232 // the trace mask used for the focus debugging messages
233 #define TRACE_FOCUS _T("focus")
235 //-----------------------------------------------------------------------------
236 // missing gdk functions
237 //-----------------------------------------------------------------------------
240 gdk_window_warp_pointer (GdkWindow
*window
,
245 window
= gdk_get_default_root_window();
247 if (!GDK_WINDOW_DESTROYED(window
))
249 XWarpPointer (GDK_WINDOW_XDISPLAY(window
),
250 None
, /* not source window -> move from anywhere */
251 GDK_WINDOW_XID(window
), /* dest window */
252 0, 0, 0, 0, /* not source window -> move from anywhere */
257 //-----------------------------------------------------------------------------
258 // local code (see below)
259 //-----------------------------------------------------------------------------
261 // returns the child of win which currently has focus or NULL if not found
263 // Note: can't be static, needed by textctrl.cpp.
264 wxWindow
*wxFindFocusedChild(wxWindowGTK
*win
)
266 wxWindow
*winFocus
= wxWindowGTK::FindFocus();
268 return (wxWindow
*)NULL
;
270 if ( winFocus
== win
)
271 return (wxWindow
*)win
;
273 for ( wxWindowList::compatibility_iterator node
= win
->GetChildren().GetFirst();
275 node
= node
->GetNext() )
277 wxWindow
*child
= wxFindFocusedChild(node
->GetData());
282 return (wxWindow
*)NULL
;
285 static void GetScrollbarWidth(GtkWidget
* widget
, int& w
, int& h
)
287 GtkScrolledWindow
* scroll_window
= GTK_SCROLLED_WINDOW(widget
);
288 GtkScrolledWindowClass
* scroll_class
= GTK_SCROLLED_WINDOW_CLASS(GTK_OBJECT_GET_CLASS(scroll_window
));
289 GtkRequisition scroll_req
;
292 if (scroll_window
->vscrollbar_visible
)
294 scroll_req
.width
= 2;
295 scroll_req
.height
= 2;
296 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(scroll_window
->vscrollbar
) )->size_request
)
297 (scroll_window
->vscrollbar
, &scroll_req
);
298 w
= scroll_req
.width
+
299 scroll_class
->scrollbar_spacing
;
303 if (scroll_window
->hscrollbar_visible
)
305 scroll_req
.width
= 2;
306 scroll_req
.height
= 2;
307 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(scroll_window
->hscrollbar
) )->size_request
)
308 (scroll_window
->hscrollbar
, &scroll_req
);
309 h
= scroll_req
.height
+
310 scroll_class
->scrollbar_spacing
;
314 static void draw_frame( GtkWidget
*widget
, wxWindowGTK
*win
)
316 // wxUniversal widgets draw the borders and scrollbars themselves
317 #ifndef __WXUNIVERSAL__
323 if (GTK_WIDGET_NO_WINDOW (widget
))
325 dx
+= widget
->allocation
.x
;
326 dy
+= widget
->allocation
.y
;
334 if (win
->m_hasScrolling
)
336 GetScrollbarWidth(widget
, dw
, dh
);
338 if (win
->GetLayoutDirection() == wxLayout_RightToLeft
)
340 // This is actually wrong for old GTK+ version
341 // which do not display the scrollbar on the
347 int w
= widget
->allocation
.width
-dw
;
348 int h
= widget
->allocation
.height
-dh
;
350 if (win
->HasFlag(wxRAISED_BORDER
))
352 gtk_paint_shadow (widget
->style
,
356 NULL
, NULL
, NULL
, // FIXME: No clipping?
361 if (win
->HasFlag(wxSUNKEN_BORDER
))
363 gtk_paint_shadow (widget
->style
,
367 NULL
, NULL
, NULL
, // FIXME: No clipping?
372 if (win
->HasFlag(wxSIMPLE_BORDER
))
375 gc
= gdk_gc_new( widget
->window
);
376 gdk_gc_set_foreground( gc
, &widget
->style
->black
);
377 gdk_draw_rectangle( widget
->window
, gc
, FALSE
, x
, y
, w
-1, h
-1 );
381 #endif // __WXUNIVERSAL__
384 //-----------------------------------------------------------------------------
385 // "expose_event" of m_widget
386 //-----------------------------------------------------------------------------
390 gtk_window_own_expose_callback( GtkWidget
*widget
,
391 GdkEventExpose
*gdk_event
,
394 if (gdk_event
->count
== 0)
395 draw_frame(widget
, win
);
400 //-----------------------------------------------------------------------------
401 // "size_request" of m_widget
402 //-----------------------------------------------------------------------------
404 // make it extern because wxStaticText needs to disconnect this one
406 void wxgtk_window_size_request_callback(GtkWidget
* WXUNUSED(widget
),
407 GtkRequisition
*requisition
,
411 win
->GetSize( &w
, &h
);
417 requisition
->height
= h
;
418 requisition
->width
= w
;
426 void wxgtk_combo_size_request_callback(GtkWidget
* WXUNUSED(widget
),
427 GtkRequisition
*requisition
,
430 // This callback is actually hooked into the text entry
431 // of the combo box, not the GtkHBox.
434 win
->GetSize( &w
, &h
);
440 GtkCombo
*gcombo
= GTK_COMBO(win
->m_widget
);
442 GtkRequisition entry_req
;
444 entry_req
.height
= 2;
445 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(gcombo
->entry
) )->size_request
)
446 (gcombo
->entry
, &entry_req
);
448 GtkRequisition button_req
;
449 button_req
.width
= 2;
450 button_req
.height
= 2;
451 (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(gcombo
->button
) )->size_request
)
452 (gcombo
->button
, &button_req
);
454 requisition
->width
= w
- button_req
.width
;
455 requisition
->height
= entry_req
.height
;
459 #endif // wxUSE_COMBOBOX
461 //-----------------------------------------------------------------------------
462 // "expose_event" of m_wxwindow
463 //-----------------------------------------------------------------------------
467 gtk_window_expose_callback( GtkWidget
*widget
,
468 GdkEventExpose
*gdk_event
,
473 // This callback gets called in drawing-idle time under
474 // GTK 2.0, so we don't need to defer anything to idle
477 GtkPizza
*pizza
= GTK_PIZZA( widget
);
478 if (gdk_event
->window
!= pizza
->bin_window
)
480 // block expose events on GTK_WIDGET(pizza)->window,
481 // all drawing is done on pizza->bin_window
489 wxPrintf( wxT("OnExpose from ") );
490 if (win
->GetClassInfo() && win
->GetClassInfo()->GetClassName())
491 wxPrintf( win
->GetClassInfo()->GetClassName() );
492 wxPrintf( wxT(" %d %d %d %d\n"), (int)gdk_event
->area
.x
,
493 (int)gdk_event
->area
.y
,
494 (int)gdk_event
->area
.width
,
495 (int)gdk_event
->area
.height
);
500 win
->m_wxwindow
->style
,
504 (GdkRectangle
*) NULL
,
506 (char *)"button", // const_cast
511 win
->GetUpdateRegion() = wxRegion( gdk_event
->region
);
513 win
->GtkSendPaintEvents();
515 // Let parent window draw window-less widgets
520 //-----------------------------------------------------------------------------
521 // "key_press_event" from any window
522 //-----------------------------------------------------------------------------
524 // These are used when transforming Ctrl-alpha to ascii values 1-26
525 inline bool wxIsLowerChar(int code
)
527 return (code
>= 'a' && code
<= 'z' );
530 inline bool wxIsUpperChar(int code
)
532 return (code
>= 'A' && code
<= 'Z' );
536 // set WXTRACE to this to see the key event codes on the console
537 #define TRACE_KEYS _T("keyevent")
539 // translates an X key symbol to WXK_XXX value
541 // if isChar is true it means that the value returned will be used for EVT_CHAR
542 // event and then we choose the logical WXK_XXX, i.e. '/' for GDK_KP_Divide,
543 // for example, while if it is false it means that the value is going to be
544 // used for KEY_DOWN/UP events and then we translate GDK_KP_Divide to
546 static long wxTranslateKeySymToWXKey(KeySym keysym
, bool isChar
)
552 // Shift, Control and Alt don't generate the CHAR events at all
555 key_code
= isChar
? 0 : WXK_SHIFT
;
559 key_code
= isChar
? 0 : WXK_CONTROL
;
567 key_code
= isChar
? 0 : WXK_ALT
;
570 // neither do the toggle modifies
571 case GDK_Scroll_Lock
:
572 key_code
= isChar
? 0 : WXK_SCROLL
;
576 key_code
= isChar
? 0 : WXK_CAPITAL
;
580 key_code
= isChar
? 0 : WXK_NUMLOCK
;
584 // various other special keys
597 case GDK_ISO_Left_Tab
:
604 key_code
= WXK_RETURN
;
608 key_code
= WXK_CLEAR
;
612 key_code
= WXK_PAUSE
;
616 key_code
= WXK_SELECT
;
620 key_code
= WXK_PRINT
;
624 key_code
= WXK_EXECUTE
;
628 key_code
= WXK_ESCAPE
;
631 // cursor and other extended keyboard keys
633 key_code
= WXK_DELETE
;
649 key_code
= WXK_RIGHT
;
656 case GDK_Prior
: // == GDK_Page_Up
657 key_code
= WXK_PAGEUP
;
660 case GDK_Next
: // == GDK_Page_Down
661 key_code
= WXK_PAGEDOWN
;
673 key_code
= WXK_INSERT
;
688 key_code
= (isChar
? '0' : WXK_NUMPAD0
) + keysym
- GDK_KP_0
;
692 key_code
= isChar
? ' ' : WXK_NUMPAD_SPACE
;
696 key_code
= isChar
? WXK_TAB
: WXK_NUMPAD_TAB
;
700 key_code
= isChar
? WXK_RETURN
: WXK_NUMPAD_ENTER
;
704 key_code
= isChar
? WXK_F1
: WXK_NUMPAD_F1
;
708 key_code
= isChar
? WXK_F2
: WXK_NUMPAD_F2
;
712 key_code
= isChar
? WXK_F3
: WXK_NUMPAD_F3
;
716 key_code
= isChar
? WXK_F4
: WXK_NUMPAD_F4
;
720 key_code
= isChar
? WXK_HOME
: WXK_NUMPAD_HOME
;
724 key_code
= isChar
? WXK_LEFT
: WXK_NUMPAD_LEFT
;
728 key_code
= isChar
? WXK_UP
: WXK_NUMPAD_UP
;
732 key_code
= isChar
? WXK_RIGHT
: WXK_NUMPAD_RIGHT
;
736 key_code
= isChar
? WXK_DOWN
: WXK_NUMPAD_DOWN
;
739 case GDK_KP_Prior
: // == GDK_KP_Page_Up
740 key_code
= isChar
? WXK_PAGEUP
: WXK_NUMPAD_PAGEUP
;
743 case GDK_KP_Next
: // == GDK_KP_Page_Down
744 key_code
= isChar
? WXK_PAGEDOWN
: WXK_NUMPAD_PAGEDOWN
;
748 key_code
= isChar
? WXK_END
: WXK_NUMPAD_END
;
752 key_code
= isChar
? WXK_HOME
: WXK_NUMPAD_BEGIN
;
756 key_code
= isChar
? WXK_INSERT
: WXK_NUMPAD_INSERT
;
760 key_code
= isChar
? WXK_DELETE
: WXK_NUMPAD_DELETE
;
764 key_code
= isChar
? '=' : WXK_NUMPAD_EQUAL
;
767 case GDK_KP_Multiply
:
768 key_code
= isChar
? '*' : WXK_NUMPAD_MULTIPLY
;
772 key_code
= isChar
? '+' : WXK_NUMPAD_ADD
;
775 case GDK_KP_Separator
:
776 // FIXME: what is this?
777 key_code
= isChar
? '.' : WXK_NUMPAD_SEPARATOR
;
780 case GDK_KP_Subtract
:
781 key_code
= isChar
? '-' : WXK_NUMPAD_SUBTRACT
;
785 key_code
= isChar
? '.' : WXK_NUMPAD_DECIMAL
;
789 key_code
= isChar
? '/' : WXK_NUMPAD_DIVIDE
;
806 key_code
= WXK_F1
+ keysym
- GDK_F1
;
816 static inline bool wxIsAsciiKeysym(KeySym ks
)
821 static void wxFillOtherKeyEventFields(wxKeyEvent
& event
,
823 GdkEventKey
*gdk_event
)
827 GdkModifierType state
;
828 if (gdk_event
->window
)
829 gdk_window_get_pointer(gdk_event
->window
, &x
, &y
, &state
);
831 event
.SetTimestamp( gdk_event
->time
);
832 event
.SetId(win
->GetId());
833 event
.m_shiftDown
= (gdk_event
->state
& GDK_SHIFT_MASK
) != 0;
834 event
.m_controlDown
= (gdk_event
->state
& GDK_CONTROL_MASK
) != 0;
835 event
.m_altDown
= (gdk_event
->state
& GDK_MOD1_MASK
) != 0;
836 event
.m_metaDown
= (gdk_event
->state
& GDK_MOD2_MASK
) != 0;
837 event
.m_scanCode
= gdk_event
->keyval
;
838 event
.m_rawCode
= (wxUint32
) gdk_event
->keyval
;
839 event
.m_rawFlags
= 0;
841 event
.m_uniChar
= gdk_keyval_to_unicode(gdk_event
->keyval
);
843 wxGetMousePosition( &x
, &y
);
844 win
->ScreenToClient( &x
, &y
);
847 event
.SetEventObject( win
);
852 wxTranslateGTKKeyEventToWx(wxKeyEvent
& event
,
854 GdkEventKey
*gdk_event
)
856 // VZ: it seems that GDK_KEY_RELEASE event doesn't set event->string
857 // but only event->keyval which is quite useless to us, so remember
858 // the last character from GDK_KEY_PRESS and reuse it as last resort
860 // NB: should be MT-safe as we're always called from the main thread only
865 } s_lastKeyPress
= { 0, 0 };
867 KeySym keysym
= gdk_event
->keyval
;
869 wxLogTrace(TRACE_KEYS
, _T("Key %s event: keysym = %ld"),
870 event
.GetEventType() == wxEVT_KEY_UP
? _T("release")
874 long key_code
= wxTranslateKeySymToWXKey(keysym
, false /* !isChar */);
878 // do we have the translation or is it a plain ASCII character?
879 if ( (gdk_event
->length
== 1) || wxIsAsciiKeysym(keysym
) )
881 // we should use keysym if it is ASCII as X does some translations
882 // like "I pressed while Control is down" => "Ctrl-I" == "TAB"
883 // which we don't want here (but which we do use for OnChar())
884 if ( !wxIsAsciiKeysym(keysym
) )
886 keysym
= (KeySym
)gdk_event
->string
[0];
889 // we want to always get the same key code when the same key is
890 // pressed regardless of the state of the modifiers, i.e. on a
891 // standard US keyboard pressing '5' or '%' ('5' key with
892 // Shift) should result in the same key code in OnKeyDown():
893 // '5' (although OnChar() will get either '5' or '%').
895 // to do it we first translate keysym to keycode (== scan code)
896 // and then back but always using the lower register
897 Display
*dpy
= (Display
*)wxGetDisplay();
898 KeyCode keycode
= XKeysymToKeycode(dpy
, keysym
);
900 wxLogTrace(TRACE_KEYS
, _T("\t-> keycode %d"), keycode
);
902 KeySym keysymNormalized
= XKeycodeToKeysym(dpy
, keycode
, 0);
904 // use the normalized, i.e. lower register, keysym if we've
906 key_code
= keysymNormalized
? keysymNormalized
: keysym
;
908 // as explained above, we want to have lower register key codes
909 // normally but for the letter keys we want to have the upper ones
911 // NB: don't use XConvertCase() here, we want to do it for letters
913 key_code
= toupper(key_code
);
915 else // non ASCII key, what to do?
917 // by default, ignore it
920 // but if we have cached information from the last KEY_PRESS
921 if ( gdk_event
->type
== GDK_KEY_RELEASE
)
924 if ( keysym
== s_lastKeyPress
.keysym
)
926 key_code
= s_lastKeyPress
.keycode
;
931 if ( gdk_event
->type
== GDK_KEY_PRESS
)
933 // remember it to be reused for KEY_UP event later
934 s_lastKeyPress
.keysym
= keysym
;
935 s_lastKeyPress
.keycode
= key_code
;
939 wxLogTrace(TRACE_KEYS
, _T("\t-> wxKeyCode %ld"), key_code
);
941 // sending unknown key events doesn't really make sense
945 // now fill all the other fields
946 wxFillOtherKeyEventFields(event
, win
, gdk_event
);
948 event
.m_keyCode
= key_code
;
950 if ( gdk_event
->type
== GDK_KEY_PRESS
|| gdk_event
->type
== GDK_KEY_RELEASE
)
952 event
.m_uniChar
= key_code
;
962 GtkIMContext
*context
;
963 GdkEventKey
*lastKeyEvent
;
967 context
= gtk_im_multicontext_new();
972 g_object_unref (context
);
978 gtk_window_key_press_callback( GtkWidget
*widget
,
979 GdkEventKey
*gdk_event
,
986 if (g_blockEventsOnDrag
)
989 // GTK+ sends keypress events to the focus widget and then
990 // to all its parent and grandparent widget. We only want
991 // the key events from the focus widget.
992 if (!GTK_WIDGET_HAS_FOCUS(widget
))
995 wxKeyEvent
event( wxEVT_KEY_DOWN
);
997 bool return_after_IM
= false;
999 if( wxTranslateGTKKeyEventToWx(event
, win
, gdk_event
) )
1001 // Emit KEY_DOWN event
1002 ret
= win
->GetEventHandler()->ProcessEvent( event
);
1006 // Return after IM processing as we cannot do
1007 // anything with it anyhow.
1008 return_after_IM
= true;
1011 if ((!ret
) && (win
->m_imData
!= NULL
))
1013 // We should let GTK+ IM filter key event first. According to GTK+ 2.0 API
1014 // docs, if IM filter returns true, no further processing should be done.
1015 // we should send the key_down event anyway.
1016 bool intercepted_by_IM
= gtk_im_context_filter_keypress(win
->m_imData
->context
, gdk_event
);
1017 win
->m_imData
->lastKeyEvent
= NULL
;
1018 if (intercepted_by_IM
)
1020 wxLogTrace(TRACE_KEYS
, _T("Key event intercepted by IM"));
1025 if (return_after_IM
)
1031 wxWindowGTK
*ancestor
= win
;
1034 int command
= ancestor
->GetAcceleratorTable()->GetCommand( event
);
1037 wxCommandEvent
command_event( wxEVT_COMMAND_MENU_SELECTED
, command
);
1038 ret
= ancestor
->GetEventHandler()->ProcessEvent( command_event
);
1041 if (ancestor
->IsTopLevel())
1043 ancestor
= ancestor
->GetParent();
1046 #endif // wxUSE_ACCEL
1048 // Only send wxEVT_CHAR event if not processed yet. Thus, ALT-x
1049 // will only be sent if it is not in an accelerator table.
1053 KeySym keysym
= gdk_event
->keyval
;
1054 // Find key code for EVT_CHAR and EVT_CHAR_HOOK events
1055 key_code
= wxTranslateKeySymToWXKey(keysym
, true /* isChar */);
1058 if ( wxIsAsciiKeysym(keysym
) )
1061 key_code
= (unsigned char)keysym
;
1063 // gdk_event->string is actually deprecated
1064 else if ( gdk_event
->length
== 1 )
1066 key_code
= (unsigned char)gdk_event
->string
[0];
1072 wxLogTrace(TRACE_KEYS
, _T("Char event: %ld"), key_code
);
1074 event
.m_keyCode
= key_code
;
1076 // To conform to the docs we need to translate Ctrl-alpha
1077 // characters to values in the range 1-26.
1078 if ( event
.ControlDown() &&
1079 ( wxIsLowerChar(key_code
) || wxIsUpperChar(key_code
) ))
1081 if ( wxIsLowerChar(key_code
) )
1082 event
.m_keyCode
= key_code
- 'a' + 1;
1083 if ( wxIsUpperChar(key_code
) )
1084 event
.m_keyCode
= key_code
- 'A' + 1;
1086 event
.m_uniChar
= event
.m_keyCode
;
1090 // Implement OnCharHook by checking ancestor top level windows
1091 wxWindow
*parent
= win
;
1092 while (parent
&& !parent
->IsTopLevel())
1093 parent
= parent
->GetParent();
1096 event
.SetEventType( wxEVT_CHAR_HOOK
);
1097 ret
= parent
->GetEventHandler()->ProcessEvent( event
);
1102 event
.SetEventType(wxEVT_CHAR
);
1103 ret
= win
->GetEventHandler()->ProcessEvent( event
);
1114 gtk_wxwindow_commit_cb (GtkIMContext
* WXUNUSED(context
),
1118 wxKeyEvent
event( wxEVT_KEY_DOWN
);
1120 // take modifiers, cursor position, timestamp etc. from the last
1121 // key_press_event that was fed into Input Method:
1122 if (window
->m_imData
->lastKeyEvent
)
1124 wxFillOtherKeyEventFields(event
,
1125 window
, window
->m_imData
->lastKeyEvent
);
1129 event
.SetEventObject( window
);
1132 const wxString
data(wxGTK_CONV_BACK_SYS(str
));
1138 // Implement OnCharHook by checking ancestor top level windows
1139 wxWindow
*parent
= window
;
1140 while (parent
&& !parent
->IsTopLevel())
1141 parent
= parent
->GetParent();
1143 for( wxString::const_iterator pstr
= data
.begin(); pstr
!= data
.end(); ++pstr
)
1146 event
.m_uniChar
= *pstr
;
1147 // Backward compatible for ISO-8859-1
1148 event
.m_keyCode
= *pstr
< 256 ? event
.m_uniChar
: 0;
1149 wxLogTrace(TRACE_KEYS
, _T("IM sent character '%c'"), event
.m_uniChar
);
1151 event
.m_keyCode
= (char)*pstr
;
1152 #endif // wxUSE_UNICODE
1154 // To conform to the docs we need to translate Ctrl-alpha
1155 // characters to values in the range 1-26.
1156 if ( event
.ControlDown() &&
1157 ( wxIsLowerChar(*pstr
) || wxIsUpperChar(*pstr
) ))
1159 if ( wxIsLowerChar(*pstr
) )
1160 event
.m_keyCode
= *pstr
- 'a' + 1;
1161 if ( wxIsUpperChar(*pstr
) )
1162 event
.m_keyCode
= *pstr
- 'A' + 1;
1164 event
.m_keyCode
= *pstr
- 'a' + 1;
1166 event
.m_uniChar
= event
.m_keyCode
;
1172 event
.SetEventType( wxEVT_CHAR_HOOK
);
1173 ret
= parent
->GetEventHandler()->ProcessEvent( event
);
1178 event
.SetEventType(wxEVT_CHAR
);
1179 ret
= window
->GetEventHandler()->ProcessEvent( event
);
1186 //-----------------------------------------------------------------------------
1187 // "key_release_event" from any window
1188 //-----------------------------------------------------------------------------
1192 gtk_window_key_release_callback( GtkWidget
* WXUNUSED(widget
),
1193 GdkEventKey
*gdk_event
,
1201 if (g_blockEventsOnDrag
)
1204 wxKeyEvent
event( wxEVT_KEY_UP
);
1205 if ( !wxTranslateGTKKeyEventToWx(event
, win
, gdk_event
) )
1207 // unknown key pressed, ignore (the event would be useless anyhow)
1211 return win
->GTKProcessEvent(event
);
1215 // ============================================================================
1217 // ============================================================================
1219 // ----------------------------------------------------------------------------
1220 // mouse event processing helpers
1221 // ----------------------------------------------------------------------------
1223 // init wxMouseEvent with the info from GdkEventXXX struct
1224 template<typename T
> void InitMouseEvent(wxWindowGTK
*win
,
1225 wxMouseEvent
& event
,
1228 event
.SetTimestamp( gdk_event
->time
);
1229 event
.m_shiftDown
= gdk_event
->state
& GDK_SHIFT_MASK
;
1230 event
.m_controlDown
= gdk_event
->state
& GDK_CONTROL_MASK
;
1231 event
.m_altDown
= gdk_event
->state
& GDK_MOD1_MASK
;
1232 event
.m_metaDown
= gdk_event
->state
& GDK_MOD2_MASK
;
1233 event
.m_leftDown
= gdk_event
->state
& GDK_BUTTON1_MASK
;
1234 event
.m_middleDown
= gdk_event
->state
& GDK_BUTTON2_MASK
;
1235 event
.m_rightDown
= gdk_event
->state
& GDK_BUTTON3_MASK
;
1236 event
.m_aux1Down
= gdk_event
->state
& GDK_BUTTON4_MASK
;
1237 event
.m_aux2Down
= gdk_event
->state
& GDK_BUTTON5_MASK
;
1239 wxPoint pt
= win
->GetClientAreaOrigin();
1240 event
.m_x
= (wxCoord
)gdk_event
->x
- pt
.x
;
1241 event
.m_y
= (wxCoord
)gdk_event
->y
- pt
.y
;
1243 if ((win
->m_wxwindow
) && (win
->GetLayoutDirection() == wxLayout_RightToLeft
))
1245 // origin in the upper right corner
1246 int window_width
= gtk_pizza_get_rtl_offset( GTK_PIZZA(win
->m_wxwindow
) );
1247 event
.m_x
= window_width
- event
.m_x
;
1250 event
.SetEventObject( win
);
1251 event
.SetId( win
->GetId() );
1252 event
.SetTimestamp( gdk_event
->time
);
1255 static void AdjustEventButtonState(wxMouseEvent
& event
)
1257 // GDK reports the old state of the button for a button press event, but
1258 // for compatibility with MSW and common sense we want m_leftDown be TRUE
1259 // for a LEFT_DOWN event, not FALSE, so we will invert
1260 // left/right/middleDown for the corresponding click events
1262 if ((event
.GetEventType() == wxEVT_LEFT_DOWN
) ||
1263 (event
.GetEventType() == wxEVT_LEFT_DCLICK
) ||
1264 (event
.GetEventType() == wxEVT_LEFT_UP
))
1266 event
.m_leftDown
= !event
.m_leftDown
;
1270 if ((event
.GetEventType() == wxEVT_MIDDLE_DOWN
) ||
1271 (event
.GetEventType() == wxEVT_MIDDLE_DCLICK
) ||
1272 (event
.GetEventType() == wxEVT_MIDDLE_UP
))
1274 event
.m_middleDown
= !event
.m_middleDown
;
1278 if ((event
.GetEventType() == wxEVT_RIGHT_DOWN
) ||
1279 (event
.GetEventType() == wxEVT_RIGHT_DCLICK
) ||
1280 (event
.GetEventType() == wxEVT_RIGHT_UP
))
1282 event
.m_rightDown
= !event
.m_rightDown
;
1287 // find the window to send the mouse event too
1289 wxWindowGTK
*FindWindowForMouseEvent(wxWindowGTK
*win
, wxCoord
& x
, wxCoord
& y
)
1294 if (win
->m_wxwindow
)
1296 GtkPizza
*pizza
= GTK_PIZZA(win
->m_wxwindow
);
1297 xx
+= gtk_pizza_get_xoffset( pizza
);
1298 yy
+= gtk_pizza_get_yoffset( pizza
);
1301 wxWindowList::compatibility_iterator node
= win
->GetChildren().GetFirst();
1304 wxWindowGTK
*child
= node
->GetData();
1306 node
= node
->GetNext();
1307 if (!child
->IsShown())
1310 if (child
->IsTransparentForMouse())
1312 // wxStaticBox is transparent in the box itself
1313 int xx1
= child
->m_x
;
1314 int yy1
= child
->m_y
;
1315 int xx2
= child
->m_x
+ child
->m_width
;
1316 int yy2
= child
->m_y
+ child
->m_height
;
1319 if (((xx
>= xx1
) && (xx
<= xx1
+10) && (yy
>= yy1
) && (yy
<= yy2
)) ||
1321 ((xx
>= xx2
-10) && (xx
<= xx2
) && (yy
>= yy1
) && (yy
<= yy2
)) ||
1323 ((xx
>= xx1
) && (xx
<= xx2
) && (yy
>= yy1
) && (yy
<= yy1
+10)) ||
1325 ((xx
>= xx1
) && (xx
<= xx2
) && (yy
>= yy2
-1) && (yy
<= yy2
)))
1336 if ((child
->m_wxwindow
== (GtkWidget
*) NULL
) &&
1337 (child
->m_x
<= xx
) &&
1338 (child
->m_y
<= yy
) &&
1339 (child
->m_x
+child
->m_width
>= xx
) &&
1340 (child
->m_y
+child
->m_height
>= yy
))
1353 // ----------------------------------------------------------------------------
1354 // common event handlers helpers
1355 // ----------------------------------------------------------------------------
1357 bool wxWindowGTK::GTKProcessEvent(wxEvent
& event
) const
1359 // nothing special at this level
1360 return GetEventHandler()->ProcessEvent(event
);
1363 int wxWindowGTK::GTKCallbackCommonPrologue(GdkEventAny
*event
) const
1369 if (g_blockEventsOnDrag
)
1371 if (g_blockEventsOnScroll
)
1374 if (!GTKIsOwnWindow(event
->window
))
1380 // overloads for all GDK event types we use here: we need to have this as
1381 // GdkEventXXX can't be implicitly cast to GdkEventAny even if it, in fact,
1382 // derives from it in the sense that the structs have the same layout
1383 #define wxDEFINE_COMMON_PROLOGUE_OVERLOAD(T) \
1384 static int wxGtkCallbackCommonPrologue(T *event, wxWindowGTK *win) \
1386 return win->GTKCallbackCommonPrologue((GdkEventAny *)event); \
1389 wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventButton
)
1390 wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventMotion
)
1391 wxDEFINE_COMMON_PROLOGUE_OVERLOAD(GdkEventCrossing
)
1393 #undef wxDEFINE_COMMON_PROLOGUE_OVERLOAD
1395 #define wxCOMMON_CALLBACK_PROLOGUE(event, win) \
1396 const int rc = wxGtkCallbackCommonPrologue(event, win); \
1400 // send the wxChildFocusEvent and wxFocusEvent, common code of
1401 // gtk_window_focus_in_callback() and SetFocus()
1402 static bool DoSendFocusEvents(wxWindow
*win
)
1404 // Notify the parent keeping track of focus for the kbd navigation
1405 // purposes that we got it.
1406 wxChildFocusEvent
eventChildFocus(win
);
1407 (void)win
->GetEventHandler()->ProcessEvent(eventChildFocus
);
1409 wxFocusEvent
eventFocus(wxEVT_SET_FOCUS
, win
->GetId());
1410 eventFocus
.SetEventObject(win
);
1412 return win
->GetEventHandler()->ProcessEvent(eventFocus
);
1415 // all event handlers must have C linkage as they're called from GTK+ C code
1419 //-----------------------------------------------------------------------------
1420 // "button_press_event"
1421 //-----------------------------------------------------------------------------
1424 gtk_window_button_press_callback( GtkWidget
*widget
,
1425 GdkEventButton
*gdk_event
,
1428 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1430 g_lastButtonNumber
= gdk_event
->button
;
1432 // GDK sends surplus button down events
1433 // before a double click event. We
1434 // need to filter these out.
1435 if ((gdk_event
->type
== GDK_BUTTON_PRESS
) && (win
->m_wxwindow
))
1437 GdkEvent
*peek_event
= gdk_event_peek();
1440 if ((peek_event
->type
== GDK_2BUTTON_PRESS
) ||
1441 (peek_event
->type
== GDK_3BUTTON_PRESS
))
1443 gdk_event_free( peek_event
);
1448 gdk_event_free( peek_event
);
1453 wxEventType event_type
= wxEVT_NULL
;
1455 // GdkDisplay is a GTK+ 2.2.0 thing
1456 #if defined(__WXGTK20__) && GTK_CHECK_VERSION(2, 2, 0)
1457 if ( gdk_event
->type
== GDK_2BUTTON_PRESS
&&
1458 !gtk_check_version(2,2,0) &&
1459 gdk_event
->button
>= 1 && gdk_event
->button
<= 3 )
1461 // Reset GDK internal timestamp variables in order to disable GDK
1462 // triple click events. GDK will then next time believe no button has
1463 // been clicked just before, and send a normal button click event.
1464 GdkDisplay
* display
= gtk_widget_get_display (widget
);
1465 display
->button_click_time
[1] = 0;
1466 display
->button_click_time
[0] = 0;
1470 if (gdk_event
->button
== 1)
1472 // note that GDK generates triple click events which are not supported
1473 // by wxWidgets but still have to be passed to the app as otherwise
1474 // clicks would simply go missing
1475 switch (gdk_event
->type
)
1477 // we shouldn't get triple clicks at all for GTK2 because we
1478 // suppress them artificially using the code above but we still
1479 // should map them to something for GTK1 and not just ignore them
1480 // as this would lose clicks
1481 case GDK_3BUTTON_PRESS
: // we could also map this to DCLICK...
1482 case GDK_BUTTON_PRESS
:
1483 event_type
= wxEVT_LEFT_DOWN
;
1486 case GDK_2BUTTON_PRESS
:
1487 event_type
= wxEVT_LEFT_DCLICK
;
1491 // just to silence gcc warnings
1495 else if (gdk_event
->button
== 2)
1497 switch (gdk_event
->type
)
1499 case GDK_3BUTTON_PRESS
:
1500 case GDK_BUTTON_PRESS
:
1501 event_type
= wxEVT_MIDDLE_DOWN
;
1504 case GDK_2BUTTON_PRESS
:
1505 event_type
= wxEVT_MIDDLE_DCLICK
;
1512 else if (gdk_event
->button
== 3)
1514 switch (gdk_event
->type
)
1516 case GDK_3BUTTON_PRESS
:
1517 case GDK_BUTTON_PRESS
:
1518 event_type
= wxEVT_RIGHT_DOWN
;
1521 case GDK_2BUTTON_PRESS
:
1522 event_type
= wxEVT_RIGHT_DCLICK
;
1530 if ( event_type
== wxEVT_NULL
)
1532 // unknown mouse button or click type
1536 g_lastMouseEvent
= (GdkEvent
*) gdk_event
;
1538 wxMouseEvent
event( event_type
);
1539 InitMouseEvent( win
, event
, gdk_event
);
1541 AdjustEventButtonState(event
);
1543 // wxListBox actually gets mouse events from the item, so we need to give it
1544 // a chance to correct this
1545 win
->FixUpMouseEvent(widget
, event
.m_x
, event
.m_y
);
1547 // find the correct window to send the event to: it may be a different one
1548 // from the one which got it at GTK+ level because some controls don't have
1549 // their own X window and thus cannot get any events.
1550 if ( !g_captureWindow
)
1551 win
= FindWindowForMouseEvent(win
, event
.m_x
, event
.m_y
);
1553 // reset the event object and id in case win changed.
1554 event
.SetEventObject( win
);
1555 event
.SetId( win
->GetId() );
1557 bool ret
= win
->GTKProcessEvent( event
);
1558 g_lastMouseEvent
= NULL
;
1562 if ((event_type
== wxEVT_LEFT_DOWN
) && !win
->IsOfStandardClass() &&
1563 (g_focusWindow
!= win
) /* && win->IsFocusable() */)
1568 if (event_type
== wxEVT_RIGHT_DOWN
)
1570 // generate a "context menu" event: this is similar to right mouse
1571 // click under many GUIs except that it is generated differently
1572 // (right up under MSW, ctrl-click under Mac, right down here) and
1574 // (a) it's a command event and so is propagated to the parent
1575 // (b) under some ports it can be generated from kbd too
1576 // (c) it uses screen coords (because of (a))
1577 wxContextMenuEvent
evtCtx(
1580 win
->ClientToScreen(event
.GetPosition()));
1581 evtCtx
.SetEventObject(win
);
1582 return win
->GTKProcessEvent(evtCtx
);
1588 //-----------------------------------------------------------------------------
1589 // "button_release_event"
1590 //-----------------------------------------------------------------------------
1593 gtk_window_button_release_callback( GtkWidget
*widget
,
1594 GdkEventButton
*gdk_event
,
1597 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1599 g_lastButtonNumber
= 0;
1601 wxEventType event_type
= wxEVT_NULL
;
1603 switch (gdk_event
->button
)
1606 event_type
= wxEVT_LEFT_UP
;
1610 event_type
= wxEVT_MIDDLE_UP
;
1614 event_type
= wxEVT_RIGHT_UP
;
1618 // unknown button, don't process
1622 g_lastMouseEvent
= (GdkEvent
*) gdk_event
;
1624 wxMouseEvent
event( event_type
);
1625 InitMouseEvent( win
, event
, gdk_event
);
1627 AdjustEventButtonState(event
);
1629 // same wxListBox hack as above
1630 win
->FixUpMouseEvent(widget
, event
.m_x
, event
.m_y
);
1632 if ( !g_captureWindow
)
1633 win
= FindWindowForMouseEvent(win
, event
.m_x
, event
.m_y
);
1635 // reset the event object and id in case win changed.
1636 event
.SetEventObject( win
);
1637 event
.SetId( win
->GetId() );
1639 bool ret
= win
->GTKProcessEvent(event
);
1641 g_lastMouseEvent
= NULL
;
1646 //-----------------------------------------------------------------------------
1647 // "motion_notify_event"
1648 //-----------------------------------------------------------------------------
1651 gtk_window_motion_notify_callback( GtkWidget
* WXUNUSED(widget
),
1652 GdkEventMotion
*gdk_event
,
1655 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1657 if (gdk_event
->is_hint
)
1661 GdkModifierType state
;
1662 gdk_window_get_pointer(gdk_event
->window
, &x
, &y
, &state
);
1667 g_lastMouseEvent
= (GdkEvent
*) gdk_event
;
1669 wxMouseEvent
event( wxEVT_MOTION
);
1670 InitMouseEvent(win
, event
, gdk_event
);
1672 if ( g_captureWindow
)
1674 // synthesise a mouse enter or leave event if needed
1675 GdkWindow
*winUnderMouse
= gdk_window_at_pointer(NULL
, NULL
);
1676 // This seems to be necessary and actually been added to
1677 // GDK itself in version 2.0.X
1680 bool hasMouse
= winUnderMouse
== gdk_event
->window
;
1681 if ( hasMouse
!= g_captureWindowHasMouse
)
1683 // the mouse changed window
1684 g_captureWindowHasMouse
= hasMouse
;
1686 wxMouseEvent
eventM(g_captureWindowHasMouse
? wxEVT_ENTER_WINDOW
1687 : wxEVT_LEAVE_WINDOW
);
1688 InitMouseEvent(win
, eventM
, gdk_event
);
1689 eventM
.SetEventObject(win
);
1690 win
->GTKProcessEvent(eventM
);
1695 win
= FindWindowForMouseEvent(win
, event
.m_x
, event
.m_y
);
1697 // reset the event object and id in case win changed.
1698 event
.SetEventObject( win
);
1699 event
.SetId( win
->GetId() );
1702 if ( !g_captureWindow
)
1704 wxSetCursorEvent
cevent( event
.m_x
, event
.m_y
);
1705 if (win
->GTKProcessEvent( cevent
))
1707 win
->SetCursor( cevent
.GetCursor() );
1711 bool ret
= win
->GTKProcessEvent(event
);
1713 g_lastMouseEvent
= NULL
;
1718 //-----------------------------------------------------------------------------
1719 // "scroll_event" (mouse wheel event)
1720 //-----------------------------------------------------------------------------
1723 window_scroll_event(GtkWidget
*, GdkEventScroll
* gdk_event
, wxWindow
* win
)
1727 if (gdk_event
->direction
!= GDK_SCROLL_UP
&&
1728 gdk_event
->direction
!= GDK_SCROLL_DOWN
)
1733 wxMouseEvent
event(wxEVT_MOUSEWHEEL
);
1734 InitMouseEvent(win
, event
, gdk_event
);
1735 event
.m_linesPerAction
= 3;
1736 event
.m_wheelDelta
= 120;
1737 if (gdk_event
->direction
== GDK_SCROLL_UP
)
1738 event
.m_wheelRotation
= 120;
1740 event
.m_wheelRotation
= -120;
1742 return win
->GTKProcessEvent(event
);
1745 //-----------------------------------------------------------------------------
1747 //-----------------------------------------------------------------------------
1749 static gboolean
wxgtk_window_popup_menu_callback(GtkWidget
*, wxWindowGTK
* win
)
1751 wxContextMenuEvent
event(wxEVT_CONTEXT_MENU
, win
->GetId(), wxPoint(-1, -1));
1752 event
.SetEventObject(win
);
1753 return win
->GTKProcessEvent(event
);
1756 //-----------------------------------------------------------------------------
1758 //-----------------------------------------------------------------------------
1761 gtk_window_focus_in_callback( GtkWidget
* WXUNUSED(widget
),
1762 GdkEventFocus
*WXUNUSED(event
),
1768 gtk_im_context_focus_in(win
->m_imData
->context
);
1771 g_focusWindow
= win
;
1773 wxLogTrace(TRACE_FOCUS
,
1774 _T("%s: focus in"), win
->GetName().c_str());
1777 // caret needs to be informed about focus change
1778 wxCaret
*caret
= win
->GetCaret();
1781 caret
->OnSetFocus();
1783 #endif // wxUSE_CARET
1785 gboolean ret
= FALSE
;
1787 // does the window itself think that it has the focus?
1788 if ( !win
->m_hasFocus
)
1790 // not yet, notify it
1791 win
->m_hasFocus
= true;
1793 (void)DoSendFocusEvents(win
);
1798 // Disable default focus handling for custom windows
1799 // since the default GTK+ handler issues a repaint
1800 if (win
->m_wxwindow
)
1806 //-----------------------------------------------------------------------------
1807 // "focus_out_event"
1808 //-----------------------------------------------------------------------------
1811 gtk_window_focus_out_callback( GtkWidget
* WXUNUSED(widget
),
1812 GdkEventFocus
* WXUNUSED(gdk_event
),
1818 gtk_im_context_focus_out(win
->m_imData
->context
);
1820 wxLogTrace( TRACE_FOCUS
,
1821 _T("%s: focus out"), win
->GetName().c_str() );
1824 wxWindowGTK
*winFocus
= wxFindFocusedChild(win
);
1828 g_focusWindow
= (wxWindowGTK
*)NULL
;
1831 // caret needs to be informed about focus change
1832 wxCaret
*caret
= win
->GetCaret();
1835 caret
->OnKillFocus();
1837 #endif // wxUSE_CARET
1839 // don't send the window a kill focus event if it thinks that it doesn't
1840 // have focus already
1841 if ( win
->m_hasFocus
)
1843 // the event handler might delete the window when it loses focus, so
1844 // check whether this is a custom window before calling it
1845 const bool has_wxwindow
= win
->m_wxwindow
!= NULL
;
1847 win
->m_hasFocus
= false;
1849 wxFocusEvent
event( wxEVT_KILL_FOCUS
, win
->GetId() );
1850 event
.SetEventObject( win
);
1852 (void)win
->GTKProcessEvent( event
);
1854 // Disable default focus handling for custom windows
1855 // since the default GTK+ handler issues a repaint
1860 // continue with normal processing
1865 wx_window_focus_callback(GtkWidget
*widget
,
1866 GtkDirectionType
WXUNUSED(direction
),
1869 // the default handler for focus signal in GtkPizza (or, rather, in
1870 // GtkScrolledWindow from which GtkPizza inherits this behaviour) sets
1871 // focus to the window itself even if it doesn't accept focus, i.e. has no
1872 // GTK_CAN_FOCUS in its style -- work around this by forcibly preventing
1873 // the signal from reaching gtk_scrolled_window_focus() if we don't have
1874 // any children which might accept focus (we know we don't accept the focus
1875 // ourselves as this signal is only connected in this case)
1876 if ( win
->GetChildren().empty() )
1877 g_signal_stop_emission_by_name(widget
, "focus");
1879 // we didn't change the focus
1883 //-----------------------------------------------------------------------------
1884 // "enter_notify_event"
1885 //-----------------------------------------------------------------------------
1888 gtk_window_enter_callback( GtkWidget
*widget
,
1889 GdkEventCrossing
*gdk_event
,
1892 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1894 // Event was emitted after a grab
1895 if (gdk_event
->mode
!= GDK_CROSSING_NORMAL
) return FALSE
;
1899 GdkModifierType state
= (GdkModifierType
)0;
1901 gdk_window_get_pointer( widget
->window
, &x
, &y
, &state
);
1903 wxMouseEvent
event( wxEVT_ENTER_WINDOW
);
1904 InitMouseEvent(win
, event
, gdk_event
);
1905 wxPoint pt
= win
->GetClientAreaOrigin();
1906 event
.m_x
= x
+ pt
.x
;
1907 event
.m_y
= y
+ pt
.y
;
1909 if ( !g_captureWindow
)
1911 wxSetCursorEvent
cevent( event
.m_x
, event
.m_y
);
1912 if (win
->GTKProcessEvent( cevent
))
1914 win
->SetCursor( cevent
.GetCursor() );
1918 return win
->GTKProcessEvent(event
);
1921 //-----------------------------------------------------------------------------
1922 // "leave_notify_event"
1923 //-----------------------------------------------------------------------------
1926 gtk_window_leave_callback( GtkWidget
*widget
,
1927 GdkEventCrossing
*gdk_event
,
1930 wxCOMMON_CALLBACK_PROLOGUE(gdk_event
, win
);
1932 // Event was emitted after an ungrab
1933 if (gdk_event
->mode
!= GDK_CROSSING_NORMAL
) return FALSE
;
1935 wxMouseEvent
event( wxEVT_LEAVE_WINDOW
);
1939 GdkModifierType state
= (GdkModifierType
)0;
1941 gdk_window_get_pointer( widget
->window
, &x
, &y
, &state
);
1943 InitMouseEvent(win
, event
, gdk_event
);
1945 return win
->GTKProcessEvent(event
);
1948 //-----------------------------------------------------------------------------
1949 // "value_changed" from scrollbar
1950 //-----------------------------------------------------------------------------
1953 gtk_scrollbar_value_changed(GtkRange
* range
, wxWindow
* win
)
1955 wxEventType eventType
= win
->GetScrollEventType(range
);
1956 if (eventType
!= wxEVT_NULL
)
1958 // Convert scroll event type to scrollwin event type
1959 eventType
+= wxEVT_SCROLLWIN_TOP
- wxEVT_SCROLL_TOP
;
1961 // find the scrollbar which generated the event
1962 wxWindowGTK::ScrollDir dir
= win
->ScrollDirFromRange(range
);
1964 // generate the corresponding wx event
1965 const int orient
= wxWindow::OrientFromScrollDir(dir
);
1966 wxScrollWinEvent
event(eventType
, win
->GetScrollPos(orient
), orient
);
1967 event
.SetEventObject(win
);
1969 win
->GTKProcessEvent(event
);
1973 //-----------------------------------------------------------------------------
1974 // "button_press_event" from scrollbar
1975 //-----------------------------------------------------------------------------
1978 gtk_scrollbar_button_press_event(GtkRange
*, GdkEventButton
*, wxWindow
* win
)
1982 g_blockEventsOnScroll
= true;
1983 win
->m_mouseButtonDown
= true;
1988 //-----------------------------------------------------------------------------
1989 // "event_after" from scrollbar
1990 //-----------------------------------------------------------------------------
1993 gtk_scrollbar_event_after(GtkRange
* range
, GdkEvent
* event
, wxWindow
* win
)
1995 if (event
->type
== GDK_BUTTON_RELEASE
)
1997 g_signal_handlers_block_by_func(range
, (void*)gtk_scrollbar_event_after
, win
);
1999 const int orient
= wxWindow::OrientFromScrollDir(
2000 win
->ScrollDirFromRange(range
));
2001 wxScrollWinEvent
evt(wxEVT_SCROLLWIN_THUMBRELEASE
,
2002 win
->GetScrollPos(orient
), orient
);
2003 evt
.SetEventObject(win
);
2004 win
->GTKProcessEvent(evt
);
2008 //-----------------------------------------------------------------------------
2009 // "button_release_event" from scrollbar
2010 //-----------------------------------------------------------------------------
2013 gtk_scrollbar_button_release_event(GtkRange
* range
, GdkEventButton
*, wxWindow
* win
)
2017 g_blockEventsOnScroll
= false;
2018 win
->m_mouseButtonDown
= false;
2019 // If thumb tracking
2020 if (win
->m_isScrolling
)
2022 win
->m_isScrolling
= false;
2023 // Hook up handler to send thumb release event after this emission is finished.
2024 // To allow setting scroll position from event handler, sending event must
2025 // be deferred until after the GtkRange handler for this signal has run
2026 g_signal_handlers_unblock_by_func(range
, (void*)gtk_scrollbar_event_after
, win
);
2032 //-----------------------------------------------------------------------------
2033 // "realize" from m_widget
2034 //-----------------------------------------------------------------------------
2037 gtk_window_realized_callback( GtkWidget
*m_widget
, wxWindow
*win
)
2043 GtkPizza
*pizza
= GTK_PIZZA( m_widget
);
2044 gtk_im_context_set_client_window( win
->m_imData
->context
,
2045 pizza
->bin_window
);
2048 // We cannot set colours and fonts before the widget
2049 // been realized, so we do this directly after realization
2050 // or otherwise in idle time
2052 if (win
->m_needsStyleChange
)
2054 win
->SetBackgroundStyle(win
->GetBackgroundStyle());
2055 win
->m_needsStyleChange
= false;
2058 wxWindowCreateEvent
event( win
);
2059 event
.SetEventObject( win
);
2060 win
->GTKProcessEvent( event
);
2063 //-----------------------------------------------------------------------------
2064 // "size_allocate" from m_wxwindow or m_widget
2065 //-----------------------------------------------------------------------------
2068 size_allocate(GtkWidget
*, GtkAllocation
* alloc
, wxWindow
* win
)
2070 int w
= alloc
->width
;
2071 int h
= alloc
->height
;
2072 if (win
->m_wxwindow
)
2074 const int border
= GTK_CONTAINER(win
->m_wxwindow
)->border_width
;
2080 if (win
->m_oldClientWidth
!= w
|| win
->m_oldClientHeight
!= h
)
2082 win
->m_oldClientWidth
= w
;
2083 win
->m_oldClientHeight
= h
;
2084 // this callback can be connected to m_wxwindow,
2085 // so always get size from m_widget->allocation
2086 win
->m_width
= win
->m_widget
->allocation
.width
;
2087 win
->m_height
= win
->m_widget
->allocation
.height
;
2088 if (!win
->m_nativeSizeEvent
)
2090 wxSizeEvent
event(win
->GetSize(), win
->GetId());
2091 event
.SetEventObject(win
);
2092 win
->GTKProcessEvent(event
);
2097 //-----------------------------------------------------------------------------
2099 //-----------------------------------------------------------------------------
2101 #if GTK_CHECK_VERSION(2, 8, 0)
2103 gtk_window_grab_broken( GtkWidget
*,
2104 GdkEventGrabBroken
*event
,
2107 // Mouse capture has been lost involuntarily, notify the application
2108 if(!event
->keyboard
&& wxWindow::GetCapture() == win
)
2110 wxMouseCaptureLostEvent
evt( win
->GetId() );
2111 evt
.SetEventObject( win
);
2112 win
->GetEventHandler()->ProcessEvent( evt
);
2120 // ----------------------------------------------------------------------------
2121 // this wxWindowBase function is implemented here (in platform-specific file)
2122 // because it is static and so couldn't be made virtual
2123 // ----------------------------------------------------------------------------
2125 wxWindow
*wxWindowBase::DoFindFocus()
2127 // the cast is necessary when we compile in wxUniversal mode
2128 return (wxWindow
*)g_focusWindow
;
2131 //-----------------------------------------------------------------------------
2132 // InsertChild for wxWindowGTK.
2133 //-----------------------------------------------------------------------------
2135 /* Callback for wxWindowGTK. This very strange beast has to be used because
2136 * C++ has no virtual methods in a constructor. We have to emulate a
2137 * virtual function here as wxNotebook requires a different way to insert
2138 * a child in it. I had opted for creating a wxNotebookPage window class
2139 * which would have made this superfluous (such in the MDI window system),
2140 * but no-one was listening to me... */
2142 static void wxInsertChildInWindow( wxWindowGTK
* parent
, wxWindowGTK
* child
)
2144 /* the window might have been scrolled already, do we
2145 have to adapt the position */
2146 GtkPizza
*pizza
= GTK_PIZZA(parent
->m_wxwindow
);
2147 child
->m_x
+= gtk_pizza_get_xoffset( pizza
);
2148 child
->m_y
+= gtk_pizza_get_yoffset( pizza
);
2150 gtk_pizza_put( GTK_PIZZA(parent
->m_wxwindow
),
2158 //-----------------------------------------------------------------------------
2160 //-----------------------------------------------------------------------------
2162 wxWindow
*wxGetActiveWindow()
2164 return wxWindow::FindFocus();
2168 wxMouseState
wxGetMouseState()
2174 GdkModifierType mask
;
2176 gdk_window_get_pointer(NULL
, &x
, &y
, &mask
);
2180 ms
.SetLeftDown(mask
& GDK_BUTTON1_MASK
);
2181 ms
.SetMiddleDown(mask
& GDK_BUTTON2_MASK
);
2182 ms
.SetRightDown(mask
& GDK_BUTTON3_MASK
);
2183 ms
.SetAux1Down(mask
& GDK_BUTTON4_MASK
);
2184 ms
.SetAux2Down(mask
& GDK_BUTTON5_MASK
);
2186 ms
.SetControlDown(mask
& GDK_CONTROL_MASK
);
2187 ms
.SetShiftDown(mask
& GDK_SHIFT_MASK
);
2188 ms
.SetAltDown(mask
& GDK_MOD1_MASK
);
2189 ms
.SetMetaDown(mask
& GDK_MOD2_MASK
);
2194 //-----------------------------------------------------------------------------
2196 //-----------------------------------------------------------------------------
2198 // in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu()
2200 #ifdef __WXUNIVERSAL__
2201 IMPLEMENT_ABSTRACT_CLASS(wxWindowGTK
, wxWindowBase
)
2203 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowBase
)
2204 #endif // __WXUNIVERSAL__/__WXGTK__
2206 void wxWindowGTK::Init()
2209 m_widget
= (GtkWidget
*) NULL
;
2210 m_wxwindow
= (GtkWidget
*) NULL
;
2211 m_focusWidget
= (GtkWidget
*) NULL
;
2220 m_isBeingDeleted
= false;
2222 m_showOnIdle
= false;
2225 m_nativeSizeEvent
= false;
2227 m_hasScrolling
= false;
2228 m_isScrolling
= false;
2229 m_mouseButtonDown
= false;
2231 // initialize scrolling stuff
2232 for ( int dir
= 0; dir
< ScrollDir_Max
; dir
++ )
2234 m_scrollBar
[dir
] = NULL
;
2235 m_scrollPos
[dir
] = 0;
2239 m_oldClientHeight
= 0;
2241 m_insertCallback
= wxInsertChildInWindow
;
2245 m_clipPaintRegion
= false;
2247 m_needsStyleChange
= false;
2249 m_cursor
= *wxSTANDARD_CURSOR
;
2252 m_dirtyTabOrder
= false;
2255 wxWindowGTK::wxWindowGTK()
2260 wxWindowGTK::wxWindowGTK( wxWindow
*parent
,
2265 const wxString
&name
)
2269 Create( parent
, id
, pos
, size
, style
, name
);
2272 bool wxWindowGTK::Create( wxWindow
*parent
,
2277 const wxString
&name
)
2279 if (!PreCreation( parent
, pos
, size
) ||
2280 !CreateBase( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
2282 wxFAIL_MSG( wxT("wxWindowGTK creation failed") );
2286 if (!HasFlag(wxHSCROLL
) && !HasFlag(wxVSCROLL
))
2288 m_wxwindow
= gtk_pizza_new_no_scroll();
2290 #ifndef __WXUNIVERSAL__
2291 if (HasFlag(wxSIMPLE_BORDER
))
2292 gtk_container_set_border_width((GtkContainer
*)m_wxwindow
, 1);
2293 else if (HasFlag(wxRAISED_BORDER
) || HasFlag(wxSUNKEN_BORDER
))
2294 gtk_container_set_border_width((GtkContainer
*)m_wxwindow
, 2);
2295 #endif // __WXUNIVERSAL__
2297 m_widget
= m_wxwindow
;
2301 m_wxwindow
= gtk_pizza_new();
2303 #ifndef __WXUNIVERSAL__
2304 if (HasFlag(wxSIMPLE_BORDER
))
2305 gtk_container_set_border_width((GtkContainer
*)m_wxwindow
, 1);
2306 else if (HasFlag(wxRAISED_BORDER
) || HasFlag(wxSUNKEN_BORDER
))
2307 gtk_container_set_border_width((GtkContainer
*)m_wxwindow
, 2);
2308 #endif // __WXUNIVERSAL__
2310 m_widget
= gtk_scrolled_window_new( (GtkAdjustment
*) NULL
, (GtkAdjustment
*) NULL
);
2312 GtkScrolledWindow
*scrolledWindow
= GTK_SCROLLED_WINDOW(m_widget
);
2314 GtkScrolledWindowClass
*scroll_class
= GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT_GET_CLASS(m_widget
) );
2315 scroll_class
->scrollbar_spacing
= 0;
2317 // There is a conflict with default bindings at GTK+
2318 // level between scrolled windows and notebooks both of which want to use
2319 // Ctrl-PageUp/Down: scrolled windows for scrolling in the horizontal
2320 // direction and notebooks for changing pages -- we decide that if we don't
2321 // have wxHSCROLL style we can safely sacrifice horizontal scrolling if it
2322 // means we can get working keyboard navigation in notebooks
2323 if ( !HasFlag(wxHSCROLL
) )
2326 bindings
= gtk_binding_set_by_class(G_OBJECT_GET_CLASS(m_widget
));
2329 gtk_binding_entry_remove(bindings
, GDK_Page_Up
, GDK_CONTROL_MASK
);
2330 gtk_binding_entry_remove(bindings
, GDK_Page_Down
, GDK_CONTROL_MASK
);
2334 if (HasFlag(wxALWAYS_SHOW_SB
))
2336 gtk_scrolled_window_set_policy( scrolledWindow
, GTK_POLICY_ALWAYS
, GTK_POLICY_ALWAYS
);
2338 scrolledWindow
->hscrollbar_visible
= TRUE
;
2339 scrolledWindow
->vscrollbar_visible
= TRUE
;
2343 gtk_scrolled_window_set_policy( scrolledWindow
, GTK_POLICY_AUTOMATIC
, GTK_POLICY_AUTOMATIC
);
2346 m_scrollBar
[ScrollDir_Horz
] = GTK_RANGE(scrolledWindow
->hscrollbar
);
2347 m_scrollBar
[ScrollDir_Vert
] = GTK_RANGE(scrolledWindow
->vscrollbar
);
2348 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2349 gtk_range_set_inverted( m_scrollBar
[ScrollDir_Horz
], TRUE
);
2351 gtk_container_add( GTK_CONTAINER(m_widget
), m_wxwindow
);
2353 // connect various scroll-related events
2354 for ( int dir
= 0; dir
< ScrollDir_Max
; dir
++ )
2356 // these handlers block mouse events to any window during scrolling
2357 // such as motion events and prevent GTK and wxWidgets from fighting
2358 // over where the slider should be
2359 g_signal_connect(m_scrollBar
[dir
], "button_press_event",
2360 G_CALLBACK(gtk_scrollbar_button_press_event
), this);
2361 g_signal_connect(m_scrollBar
[dir
], "button_release_event",
2362 G_CALLBACK(gtk_scrollbar_button_release_event
), this);
2364 gulong handler_id
= g_signal_connect(m_scrollBar
[dir
], "event_after",
2365 G_CALLBACK(gtk_scrollbar_event_after
), this);
2366 g_signal_handler_block(m_scrollBar
[dir
], handler_id
);
2368 // these handlers get notified when scrollbar slider moves
2369 g_signal_connect_after(m_scrollBar
[dir
], "value_changed",
2370 G_CALLBACK(gtk_scrollbar_value_changed
), this);
2373 gtk_widget_show( m_wxwindow
);
2377 m_parent
->DoAddChild( this );
2379 m_focusWidget
= m_wxwindow
;
2386 wxWindowGTK::~wxWindowGTK()
2390 if (g_focusWindow
== this)
2391 g_focusWindow
= NULL
;
2393 if ( g_delayedFocus
== this )
2394 g_delayedFocus
= NULL
;
2396 m_isBeingDeleted
= true;
2399 // destroy children before destroying this window itself
2402 // unhook focus handlers to prevent stray events being
2403 // propagated to this (soon to be) dead object
2404 if (m_focusWidget
!= NULL
)
2406 g_signal_handlers_disconnect_by_func (m_focusWidget
,
2407 (gpointer
) gtk_window_focus_in_callback
,
2409 g_signal_handlers_disconnect_by_func (m_focusWidget
,
2410 (gpointer
) gtk_window_focus_out_callback
,
2417 // delete before the widgets to avoid a crash on solaris
2420 if (m_wxwindow
&& (m_wxwindow
!= m_widget
))
2422 gtk_widget_destroy( m_wxwindow
);
2423 m_wxwindow
= (GtkWidget
*) NULL
;
2428 gtk_widget_destroy( m_widget
);
2429 m_widget
= (GtkWidget
*) NULL
;
2433 bool wxWindowGTK::PreCreation( wxWindowGTK
*parent
, const wxPoint
&pos
, const wxSize
&size
)
2435 if ( GTKNeedsParent() )
2437 wxCHECK_MSG( parent
, false, wxT("Must have non-NULL parent") );
2440 // Use either the given size, or the default if -1 is given.
2441 // See wxWindowBase for these functions.
2442 m_width
= WidthDefault(size
.x
) ;
2443 m_height
= HeightDefault(size
.y
);
2451 void wxWindowGTK::PostCreation()
2453 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid window") );
2459 // these get reported to wxWidgets -> wxPaintEvent
2461 g_signal_connect (m_wxwindow
, "expose_event",
2462 G_CALLBACK (gtk_window_expose_callback
), this);
2464 if (GetLayoutDirection() == wxLayout_LeftToRight
)
2465 gtk_widget_set_redraw_on_allocate( GTK_WIDGET(m_wxwindow
), HasFlag( wxFULL_REPAINT_ON_RESIZE
) );
2468 // Create input method handler
2469 m_imData
= new wxGtkIMData
;
2471 // Cannot handle drawing preedited text yet
2472 gtk_im_context_set_use_preedit( m_imData
->context
, FALSE
);
2474 g_signal_connect (m_imData
->context
, "commit",
2475 G_CALLBACK (gtk_wxwindow_commit_cb
), this);
2477 // these are called when the "sunken" or "raised" borders are drawn
2478 g_signal_connect (m_widget
, "expose_event",
2479 G_CALLBACK (gtk_window_own_expose_callback
), this);
2484 if (!GTK_IS_WINDOW(m_widget
))
2486 if (m_focusWidget
== NULL
)
2487 m_focusWidget
= m_widget
;
2491 g_signal_connect (m_focusWidget
, "focus_in_event",
2492 G_CALLBACK (gtk_window_focus_in_callback
), this);
2493 g_signal_connect (m_focusWidget
, "focus_out_event",
2494 G_CALLBACK (gtk_window_focus_out_callback
), this);
2498 g_signal_connect_after (m_focusWidget
, "focus_in_event",
2499 G_CALLBACK (gtk_window_focus_in_callback
), this);
2500 g_signal_connect_after (m_focusWidget
, "focus_out_event",
2501 G_CALLBACK (gtk_window_focus_out_callback
), this);
2505 if ( !AcceptsFocusFromKeyboard() )
2509 g_signal_connect(m_widget
, "focus",
2510 G_CALLBACK(wx_window_focus_callback
), this);
2513 // connect to the various key and mouse handlers
2515 GtkWidget
*connect_widget
= GetConnectWidget();
2517 ConnectWidget( connect_widget
);
2519 /* We cannot set colours, fonts and cursors before the widget has
2520 been realized, so we do this directly after realization */
2521 g_signal_connect (connect_widget
, "realize",
2522 G_CALLBACK (gtk_window_realized_callback
), this);
2526 g_signal_connect(m_wxwindow
? m_wxwindow
: m_widget
, "size_allocate",
2527 G_CALLBACK(size_allocate
), this);
2532 #if GTK_CHECK_VERSION(2, 8, 0)
2533 if (!gtk_check_version(2,8,0))
2535 // Make sure we can notify the app when mouse capture is lost
2536 g_signal_connect (m_wxwindow
, "grab_broken_event",
2537 G_CALLBACK (gtk_window_grab_broken
), this);
2542 if ( connect_widget
!= m_wxwindow
)
2544 #if GTK_CHECK_VERSION(2, 8, 0)
2545 if (!gtk_check_version(2,8,0))
2547 // Make sure we can notify app code when mouse capture is lost
2548 g_signal_connect (connect_widget
, "grab_broken_event",
2549 G_CALLBACK (gtk_window_grab_broken
), this);
2555 if (GTK_IS_COMBO(m_widget
))
2557 GtkCombo
*gcombo
= GTK_COMBO(m_widget
);
2559 g_signal_connect (gcombo
->entry
, "size_request",
2560 G_CALLBACK (wxgtk_combo_size_request_callback
),
2563 #endif // wxUSE_COMBOBOX
2564 #ifdef GTK_IS_FILE_CHOOSER_BUTTON
2565 if (!gtk_check_version(2,6,0) && GTK_IS_FILE_CHOOSER_BUTTON(m_widget
))
2567 // If we connect to the "size_request" signal of a GtkFileChooserButton
2568 // then that control won't be sized properly when placed inside sizers
2569 // (this can be tested removing this elseif and running XRC or WIDGETS samples)
2570 // FIXME: what should be done here ?
2573 if ( !IsTopLevel() ) // top level windows use their own callback
2575 // This is needed if we want to add our windows into native
2576 // GTK controls, such as the toolbar. With this callback, the
2577 // toolbar gets to know the correct size (the one set by the
2578 // programmer). Sadly, it misbehaves for wxComboBox.
2579 g_signal_connect (m_widget
, "size_request",
2580 G_CALLBACK (wxgtk_window_size_request_callback
),
2584 InheritAttributes();
2588 SetLayoutDirection(wxLayout_Default
);
2590 // unless the window was created initially hidden (i.e. Hide() had been
2591 // called before Create()), we should show it at GTK+ level as well
2593 gtk_widget_show( m_widget
);
2596 void wxWindowGTK::ConnectWidget( GtkWidget
*widget
)
2598 g_signal_connect (widget
, "key_press_event",
2599 G_CALLBACK (gtk_window_key_press_callback
), this);
2600 g_signal_connect (widget
, "key_release_event",
2601 G_CALLBACK (gtk_window_key_release_callback
), this);
2602 g_signal_connect (widget
, "button_press_event",
2603 G_CALLBACK (gtk_window_button_press_callback
), this);
2604 g_signal_connect (widget
, "button_release_event",
2605 G_CALLBACK (gtk_window_button_release_callback
), this);
2606 g_signal_connect (widget
, "motion_notify_event",
2607 G_CALLBACK (gtk_window_motion_notify_callback
), this);
2608 g_signal_connect (widget
, "scroll_event",
2609 G_CALLBACK (window_scroll_event
), this);
2610 g_signal_connect (widget
, "popup_menu",
2611 G_CALLBACK (wxgtk_window_popup_menu_callback
), this);
2612 g_signal_connect (widget
, "enter_notify_event",
2613 G_CALLBACK (gtk_window_enter_callback
), this);
2614 g_signal_connect (widget
, "leave_notify_event",
2615 G_CALLBACK (gtk_window_leave_callback
), this);
2618 bool wxWindowGTK::Destroy()
2620 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid window") );
2624 return wxWindowBase::Destroy();
2627 void wxWindowGTK::DoMoveWindow(int x
, int y
, int width
, int height
)
2629 // inform the parent to perform the move
2630 gtk_pizza_set_size( GTK_PIZZA(m_parent
->m_wxwindow
), m_widget
, x
, y
, width
, height
);
2634 void wxWindowGTK::ConstrainSize()
2637 // GPE's window manager doesn't like size hints at all, esp. when the user
2638 // has to use the virtual keyboard, so don't constrain size there
2642 const wxSize minSize
= GetMinSize();
2643 const wxSize maxSize
= GetMaxSize();
2644 if (minSize
.x
> 0 && m_width
< minSize
.x
) m_width
= minSize
.x
;
2645 if (minSize
.y
> 0 && m_height
< minSize
.y
) m_height
= minSize
.y
;
2646 if (maxSize
.x
> 0 && m_width
> maxSize
.x
) m_width
= maxSize
.x
;
2647 if (maxSize
.y
> 0 && m_height
> maxSize
.y
) m_height
= maxSize
.y
;
2651 void wxWindowGTK::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
2653 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid window") );
2654 wxASSERT_MSG( (m_parent
!= NULL
), wxT("wxWindowGTK::SetSize requires parent.\n") );
2656 int currentX
, currentY
;
2657 GetPosition(¤tX
, ¤tY
);
2658 if (x
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
2660 if (y
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
2662 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
2664 // calculate the best size if we should auto size the window
2665 if ( ((sizeFlags
& wxSIZE_AUTO_WIDTH
) && width
== -1) ||
2666 ((sizeFlags
& wxSIZE_AUTO_HEIGHT
) && height
== -1) )
2668 const wxSize sizeBest
= GetBestSize();
2669 if ( (sizeFlags
& wxSIZE_AUTO_WIDTH
) && width
== -1 )
2671 if ( (sizeFlags
& wxSIZE_AUTO_HEIGHT
) && height
== -1 )
2672 height
= sizeBest
.y
;
2675 const wxSize
oldSize(m_width
, m_height
);
2683 if (m_parent
->m_wxwindow
)
2685 GtkPizza
*pizza
= GTK_PIZZA(m_parent
->m_wxwindow
);
2686 m_x
= x
+ gtk_pizza_get_xoffset(pizza
);
2687 m_y
= y
+ gtk_pizza_get_yoffset(pizza
);
2689 int left_border
= 0;
2690 int right_border
= 0;
2692 int bottom_border
= 0;
2694 /* the default button has a border around it */
2695 if (GTK_WIDGET_CAN_DEFAULT(m_widget
))
2697 GtkBorder
*default_border
= NULL
;
2698 gtk_widget_style_get( m_widget
, "default_border", &default_border
, NULL
);
2701 left_border
+= default_border
->left
;
2702 right_border
+= default_border
->right
;
2703 top_border
+= default_border
->top
;
2704 bottom_border
+= default_border
->bottom
;
2705 gtk_border_free( default_border
);
2709 DoMoveWindow( m_x
- left_border
,
2711 m_width
+left_border
+right_border
,
2712 m_height
+top_border
+bottom_border
);
2715 if (m_width
!= oldSize
.x
|| m_height
!= oldSize
.y
)
2717 // update these variables to keep size_allocate handler
2718 // from sending another size event for this change
2719 GetClientSize( &m_oldClientWidth
, &m_oldClientHeight
);
2721 gtk_widget_queue_resize(m_widget
);
2722 if (!m_nativeSizeEvent
)
2724 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
2725 event
.SetEventObject( this );
2726 GetEventHandler()->ProcessEvent( event
);
2731 bool wxWindowGTK::GtkShowFromOnIdle()
2733 if (IsShown() && m_showOnIdle
&& !GTK_WIDGET_VISIBLE (m_widget
))
2735 GtkAllocation alloc
;
2738 alloc
.width
= m_width
;
2739 alloc
.height
= m_height
;
2740 gtk_widget_size_allocate( m_widget
, &alloc
);
2741 gtk_widget_show( m_widget
);
2742 wxShowEvent
eventShow(GetId(), true);
2743 eventShow
.SetEventObject(this);
2744 GetEventHandler()->ProcessEvent(eventShow
);
2745 m_showOnIdle
= false;
2752 void wxWindowGTK::OnInternalIdle()
2754 // Check if we have to show window now
2755 if (GtkShowFromOnIdle()) return;
2757 if ( m_dirtyTabOrder
)
2759 m_dirtyTabOrder
= false;
2763 // Update style if the window was not yet realized
2764 // and SetBackgroundStyle(wxBG_STYLE_CUSTOM) was called
2765 if (m_needsStyleChange
)
2767 SetBackgroundStyle(GetBackgroundStyle());
2768 m_needsStyleChange
= false;
2771 wxCursor cursor
= m_cursor
;
2772 if (g_globalCursor
.Ok()) cursor
= g_globalCursor
;
2776 /* I now set the cursor anew in every OnInternalIdle call
2777 as setting the cursor in a parent window also effects the
2778 windows above so that checking for the current cursor is
2781 if (m_wxwindow
&& (m_wxwindow
!= m_widget
))
2783 GdkWindow
*window
= GTK_PIZZA(m_wxwindow
)->bin_window
;
2785 gdk_window_set_cursor( window
, cursor
.GetCursor() );
2787 if (!g_globalCursor
.Ok())
2788 cursor
= *wxSTANDARD_CURSOR
;
2790 window
= m_widget
->window
;
2791 if ((window
) && !(GTK_WIDGET_NO_WINDOW(m_widget
)))
2792 gdk_window_set_cursor( window
, cursor
.GetCursor() );
2795 else if ( m_widget
)
2797 GdkWindow
*window
= m_widget
->window
;
2798 if ( window
&& !GTK_WIDGET_NO_WINDOW(m_widget
) )
2799 gdk_window_set_cursor( window
, cursor
.GetCursor() );
2803 if (wxUpdateUIEvent::CanUpdate(this) && IsShown())
2804 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
2807 void wxWindowGTK::DoGetSize( int *width
, int *height
) const
2809 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2811 if (width
) (*width
) = m_width
;
2812 if (height
) (*height
) = m_height
;
2815 void wxWindowGTK::DoSetClientSize( int width
, int height
)
2817 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2819 const wxSize size
= GetSize();
2820 const wxSize clientSize
= GetClientSize();
2821 SetSize(width
+ (size
.x
- clientSize
.x
), height
+ (size
.y
- clientSize
.y
));
2824 void wxWindowGTK::DoGetClientSize( int *width
, int *height
) const
2826 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2837 GetScrollbarWidth(m_widget
, dw
, dh
);
2839 const int border
= GTK_CONTAINER(m_wxwindow
)->border_width
;
2851 if (width
) *width
= w
;
2852 if (height
) *height
= h
;
2855 void wxWindowGTK::DoGetPosition( int *x
, int *y
) const
2857 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2861 if (!IsTopLevel() && m_parent
&& m_parent
->m_wxwindow
)
2863 GtkPizza
*pizza
= GTK_PIZZA(m_parent
->m_wxwindow
);
2864 dx
= gtk_pizza_get_xoffset( pizza
);
2865 dy
= gtk_pizza_get_yoffset( pizza
);
2868 if (m_x
== -1 && m_y
== -1)
2870 GdkWindow
*source
= (GdkWindow
*) NULL
;
2872 source
= GTK_PIZZA(m_wxwindow
)->bin_window
;
2874 source
= m_widget
->window
;
2880 gdk_window_get_origin( source
, &org_x
, &org_y
);
2883 m_parent
->ScreenToClient(&org_x
, &org_y
);
2885 wx_const_cast(wxWindowGTK
*, this)->m_x
= org_x
;
2886 wx_const_cast(wxWindowGTK
*, this)->m_y
= org_y
;
2890 if (x
) (*x
) = m_x
- dx
;
2891 if (y
) (*y
) = m_y
- dy
;
2894 void wxWindowGTK::DoClientToScreen( int *x
, int *y
) const
2896 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2898 if (!m_widget
->window
) return;
2900 GdkWindow
*source
= (GdkWindow
*) NULL
;
2902 source
= GTK_PIZZA(m_wxwindow
)->bin_window
;
2904 source
= m_widget
->window
;
2908 gdk_window_get_origin( source
, &org_x
, &org_y
);
2912 if (GTK_WIDGET_NO_WINDOW (m_widget
))
2914 org_x
+= m_widget
->allocation
.x
;
2915 org_y
+= m_widget
->allocation
.y
;
2922 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2923 *x
= (GetClientSize().x
- *x
) + org_x
;
2931 void wxWindowGTK::DoScreenToClient( int *x
, int *y
) const
2933 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
2935 if (!m_widget
->window
) return;
2937 GdkWindow
*source
= (GdkWindow
*) NULL
;
2939 source
= GTK_PIZZA(m_wxwindow
)->bin_window
;
2941 source
= m_widget
->window
;
2945 gdk_window_get_origin( source
, &org_x
, &org_y
);
2949 if (GTK_WIDGET_NO_WINDOW (m_widget
))
2951 org_x
+= m_widget
->allocation
.x
;
2952 org_y
+= m_widget
->allocation
.y
;
2958 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2959 *x
= (GetClientSize().x
- *x
) - org_x
;
2966 bool wxWindowGTK::Show( bool show
)
2968 wxCHECK_MSG( (m_widget
!= NULL
), false, wxT("invalid window") );
2970 if (!wxWindowBase::Show(show
))
2980 gtk_widget_show( m_widget
);
2981 wxShowEvent
eventShow(GetId(), show
);
2982 eventShow
.SetEventObject(this);
2983 GetEventHandler()->ProcessEvent(eventShow
);
2988 gtk_widget_hide( m_widget
);
2989 wxShowEvent
eventShow(GetId(), show
);
2990 eventShow
.SetEventObject(this);
2991 GetEventHandler()->ProcessEvent(eventShow
);
2997 void wxWindowGTK::DoEnable( bool enable
)
2999 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
3001 gtk_widget_set_sensitive( m_widget
, enable
);
3002 if (m_wxwindow
&& (m_wxwindow
!= m_widget
))
3003 gtk_widget_set_sensitive( m_wxwindow
, enable
);
3006 int wxWindowGTK::GetCharHeight() const
3008 wxCHECK_MSG( (m_widget
!= NULL
), 12, wxT("invalid window") );
3010 wxFont font
= GetFont();
3011 wxCHECK_MSG( font
.Ok(), 12, wxT("invalid font") );
3013 PangoContext
* context
= gtk_widget_get_pango_context(m_widget
);
3018 PangoFontDescription
*desc
= font
.GetNativeFontInfo()->description
;
3019 PangoLayout
*layout
= pango_layout_new(context
);
3020 pango_layout_set_font_description(layout
, desc
);
3021 pango_layout_set_text(layout
, "H", 1);
3022 PangoLayoutLine
*line
= (PangoLayoutLine
*)pango_layout_get_lines(layout
)->data
;
3024 PangoRectangle rect
;
3025 pango_layout_line_get_extents(line
, NULL
, &rect
);
3027 g_object_unref (layout
);
3029 return (int) PANGO_PIXELS(rect
.height
);
3032 int wxWindowGTK::GetCharWidth() const
3034 wxCHECK_MSG( (m_widget
!= NULL
), 8, wxT("invalid window") );
3036 wxFont font
= GetFont();
3037 wxCHECK_MSG( font
.Ok(), 8, wxT("invalid font") );
3039 PangoContext
* context
= gtk_widget_get_pango_context(m_widget
);
3044 PangoFontDescription
*desc
= font
.GetNativeFontInfo()->description
;
3045 PangoLayout
*layout
= pango_layout_new(context
);
3046 pango_layout_set_font_description(layout
, desc
);
3047 pango_layout_set_text(layout
, "g", 1);
3048 PangoLayoutLine
*line
= (PangoLayoutLine
*)pango_layout_get_lines(layout
)->data
;
3050 PangoRectangle rect
;
3051 pango_layout_line_get_extents(line
, NULL
, &rect
);
3053 g_object_unref (layout
);
3055 return (int) PANGO_PIXELS(rect
.width
);
3058 void wxWindowGTK::GetTextExtent( const wxString
& string
,
3062 int *externalLeading
,
3063 const wxFont
*theFont
) const
3065 wxFont fontToUse
= theFont
? *theFont
: GetFont();
3067 wxCHECK_RET( fontToUse
.Ok(), wxT("invalid font") );
3076 PangoContext
*context
= NULL
;
3078 context
= gtk_widget_get_pango_context( m_widget
);
3087 PangoFontDescription
*desc
= fontToUse
.GetNativeFontInfo()->description
;
3088 PangoLayout
*layout
= pango_layout_new(context
);
3089 pango_layout_set_font_description(layout
, desc
);
3091 const wxCharBuffer data
= wxGTK_CONV( string
);
3093 pango_layout_set_text(layout
, data
, strlen(data
));
3096 PangoRectangle rect
;
3097 pango_layout_get_extents(layout
, NULL
, &rect
);
3099 if (x
) (*x
) = (wxCoord
) PANGO_PIXELS(rect
.width
);
3100 if (y
) (*y
) = (wxCoord
) PANGO_PIXELS(rect
.height
);
3103 PangoLayoutIter
*iter
= pango_layout_get_iter(layout
);
3104 int baseline
= pango_layout_iter_get_baseline(iter
);
3105 pango_layout_iter_free(iter
);
3106 *descent
= *y
- PANGO_PIXELS(baseline
);
3108 if (externalLeading
) (*externalLeading
) = 0; // ??
3110 g_object_unref (layout
);
3113 bool wxWindowGTK::GTKSetDelayedFocusIfNeeded()
3115 if ( g_delayedFocus
== this )
3117 if ( GTK_WIDGET_REALIZED(m_widget
) )
3119 gtk_widget_grab_focus(m_widget
);
3120 g_delayedFocus
= NULL
;
3129 void wxWindowGTK::SetFocus()
3131 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
3134 // don't do anything if we already have focus
3140 // wxWindow::SetFocus() should really set the focus to
3141 // this control, whatever the flags are
3142 if (!GTK_WIDGET_CAN_FOCUS(m_wxwindow
))
3143 GTK_WIDGET_SET_FLAGS(m_wxwindow
, GTK_CAN_FOCUS
);
3145 if (!GTK_WIDGET_HAS_FOCUS (m_wxwindow
))
3147 gtk_widget_grab_focus (m_wxwindow
);
3152 // wxWindow::SetFocus() should really set the focus to
3153 // this control, whatever the flags are
3154 if (!GTK_WIDGET_CAN_FOCUS(m_widget
))
3155 GTK_WIDGET_SET_FLAGS(m_widget
, GTK_CAN_FOCUS
);
3157 if (GTK_IS_CONTAINER(m_widget
))
3159 if (GTK_IS_RADIO_BUTTON(m_widget
))
3161 gtk_widget_grab_focus (m_widget
);
3165 gtk_widget_child_focus( m_widget
, GTK_DIR_TAB_FORWARD
);
3168 if (GTK_WIDGET_CAN_FOCUS(m_widget
) && !GTK_WIDGET_HAS_FOCUS (m_widget
) )
3171 if (!GTK_WIDGET_REALIZED(m_widget
))
3173 // we can't set the focus to the widget now so we remember that
3174 // it should be focused and will do it later, during the idle
3175 // time, as soon as we can
3176 wxLogTrace(TRACE_FOCUS
,
3177 _T("Delaying setting focus to %s(%s)"),
3178 GetClassInfo()->GetClassName(), GetLabel().c_str());
3180 g_delayedFocus
= this;
3184 wxLogTrace(TRACE_FOCUS
,
3185 _T("Setting focus to %s(%s)"),
3186 GetClassInfo()->GetClassName(), GetLabel().c_str());
3188 gtk_widget_grab_focus (m_widget
);
3193 wxLogTrace(TRACE_FOCUS
,
3194 _T("Can't set focus to %s(%s)"),
3195 GetClassInfo()->GetClassName(), GetLabel().c_str());
3200 void wxWindowGTK::SetCanFocus(bool canFocus
)
3203 GTK_WIDGET_SET_FLAGS(m_widget
, GTK_CAN_FOCUS
);
3205 GTK_WIDGET_UNSET_FLAGS(m_widget
, GTK_CAN_FOCUS
);
3207 if ( m_wxwindow
&& (m_widget
!= m_wxwindow
) )
3210 GTK_WIDGET_SET_FLAGS(m_wxwindow
, GTK_CAN_FOCUS
);
3212 GTK_WIDGET_UNSET_FLAGS(m_wxwindow
, GTK_CAN_FOCUS
);
3216 bool wxWindowGTK::Reparent( wxWindowBase
*newParentBase
)
3218 wxCHECK_MSG( (m_widget
!= NULL
), false, wxT("invalid window") );
3220 wxWindowGTK
*oldParent
= m_parent
,
3221 *newParent
= (wxWindowGTK
*)newParentBase
;
3223 wxASSERT( GTK_IS_WIDGET(m_widget
) );
3225 if ( !wxWindowBase::Reparent(newParent
) )
3228 wxASSERT( GTK_IS_WIDGET(m_widget
) );
3230 /* prevent GTK from deleting the widget arbitrarily */
3231 gtk_widget_ref( m_widget
);
3235 gtk_container_remove( GTK_CONTAINER(m_widget
->parent
), m_widget
);
3238 wxASSERT( GTK_IS_WIDGET(m_widget
) );
3242 if (GTK_WIDGET_VISIBLE (newParent
->m_widget
))
3244 m_showOnIdle
= true;
3245 gtk_widget_hide( m_widget
);
3248 /* insert GTK representation */
3249 (*(newParent
->m_insertCallback
))(newParent
, this);
3252 /* reverse: prevent GTK from deleting the widget arbitrarily */
3253 gtk_widget_unref( m_widget
);
3255 SetLayoutDirection(wxLayout_Default
);
3260 void wxWindowGTK::DoAddChild(wxWindowGTK
*child
)
3262 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid window") );
3263 wxASSERT_MSG( (child
!= NULL
), wxT("invalid child window") );
3268 /* insert GTK representation */
3269 (*m_insertCallback
)(this, child
);
3272 void wxWindowGTK::AddChild(wxWindowBase
*child
)
3274 wxWindowBase::AddChild(child
);
3275 m_dirtyTabOrder
= true;
3276 wxTheApp
->WakeUpIdle();
3279 void wxWindowGTK::RemoveChild(wxWindowBase
*child
)
3281 wxWindowBase::RemoveChild(child
);
3282 m_dirtyTabOrder
= true;
3283 wxTheApp
->WakeUpIdle();
3287 wxLayoutDirection
wxWindowGTK::GTKGetLayout(GtkWidget
*widget
)
3289 return gtk_widget_get_direction(widget
) == GTK_TEXT_DIR_RTL
3290 ? wxLayout_RightToLeft
3291 : wxLayout_LeftToRight
;
3295 void wxWindowGTK::GTKSetLayout(GtkWidget
*widget
, wxLayoutDirection dir
)
3297 wxASSERT_MSG( dir
!= wxLayout_Default
, _T("invalid layout direction") );
3299 gtk_widget_set_direction(widget
,
3300 dir
== wxLayout_RightToLeft
? GTK_TEXT_DIR_RTL
3301 : GTK_TEXT_DIR_LTR
);
3304 wxLayoutDirection
wxWindowGTK::GetLayoutDirection() const
3306 return GTKGetLayout(m_widget
);
3309 void wxWindowGTK::SetLayoutDirection(wxLayoutDirection dir
)
3311 if ( dir
== wxLayout_Default
)
3313 const wxWindow
*const parent
= GetParent();
3316 // inherit layout from parent.
3317 dir
= parent
->GetLayoutDirection();
3319 else // no parent, use global default layout
3321 dir
= wxTheApp
->GetLayoutDirection();
3325 if ( dir
== wxLayout_Default
)
3328 GTKSetLayout(m_widget
, dir
);
3330 if (m_wxwindow
&& (m_wxwindow
!= m_widget
))
3331 GTKSetLayout(m_wxwindow
, dir
);
3335 wxWindowGTK::AdjustForLayoutDirection(wxCoord x
,
3336 wxCoord
WXUNUSED(width
),
3337 wxCoord
WXUNUSED(widthTotal
)) const
3339 // We now mirrors the coordinates of RTL windows in GtkPizza
3343 void wxWindowGTK::DoMoveInTabOrder(wxWindow
*win
, MoveKind move
)
3345 wxWindowBase::DoMoveInTabOrder(win
, move
);
3346 m_dirtyTabOrder
= true;
3347 wxTheApp
->WakeUpIdle();
3350 bool wxWindowGTK::DoNavigateIn(int flags
)
3352 if ( flags
& wxNavigationKeyEvent::WinChange
)
3354 wxFAIL_MSG( _T("not implemented") );
3358 else // navigate inside the container
3360 wxWindow
*parent
= wxGetTopLevelParent((wxWindow
*)this);
3361 wxCHECK_MSG( parent
, false, _T("every window must have a TLW parent") );
3363 GtkDirectionType dir
;
3364 dir
= flags
& wxNavigationKeyEvent::IsForward
? GTK_DIR_TAB_FORWARD
3365 : GTK_DIR_TAB_BACKWARD
;
3368 g_signal_emit_by_name(parent
->m_widget
, "focus", dir
, &rc
);
3374 bool wxWindowGTK::GTKWidgetNeedsMnemonic() const
3376 // none needed by default
3380 void wxWindowGTK::GTKWidgetDoSetMnemonic(GtkWidget
* WXUNUSED(w
))
3382 // nothing to do by default since none is needed
3385 void wxWindowGTK::RealizeTabOrder()
3389 if ( !m_children
.empty() )
3391 // we don't only construct the correct focus chain but also use
3392 // this opportunity to update the mnemonic widgets for the widgets
3395 GList
*chain
= NULL
;
3396 wxWindowGTK
* mnemonicWindow
= NULL
;
3398 for ( wxWindowList::const_iterator i
= m_children
.begin();
3399 i
!= m_children
.end();
3402 wxWindowGTK
*win
= *i
;
3404 if ( mnemonicWindow
)
3406 if ( win
->AcceptsFocusFromKeyboard() )
3408 // wxComboBox et al. needs to focus on on a different
3409 // widget than m_widget, so if the main widget isn't
3410 // focusable try the connect widget
3411 GtkWidget
* w
= win
->m_widget
;
3412 if ( !GTK_WIDGET_CAN_FOCUS(w
) )
3414 w
= win
->GetConnectWidget();
3415 if ( !GTK_WIDGET_CAN_FOCUS(w
) )
3421 mnemonicWindow
->GTKWidgetDoSetMnemonic(w
);
3422 mnemonicWindow
= NULL
;
3426 else if ( win
->GTKWidgetNeedsMnemonic() )
3428 mnemonicWindow
= win
;
3431 chain
= g_list_prepend(chain
, win
->m_widget
);
3434 chain
= g_list_reverse(chain
);
3436 gtk_container_set_focus_chain(GTK_CONTAINER(m_wxwindow
), chain
);
3441 gtk_container_unset_focus_chain(GTK_CONTAINER(m_wxwindow
));
3446 void wxWindowGTK::Raise()
3448 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
3450 if (m_wxwindow
&& m_wxwindow
->window
)
3452 gdk_window_raise( m_wxwindow
->window
);
3454 else if (m_widget
->window
)
3456 gdk_window_raise( m_widget
->window
);
3460 void wxWindowGTK::Lower()
3462 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
3464 if (m_wxwindow
&& m_wxwindow
->window
)
3466 gdk_window_lower( m_wxwindow
->window
);
3468 else if (m_widget
->window
)
3470 gdk_window_lower( m_widget
->window
);
3474 bool wxWindowGTK::SetCursor( const wxCursor
&cursor
)
3476 if ( !wxWindowBase::SetCursor(cursor
.Ok() ? cursor
: *wxSTANDARD_CURSOR
) )
3484 void wxWindowGTK::GTKUpdateCursor()
3486 wxCursor
cursor(g_globalCursor
.Ok() ? g_globalCursor
: GetCursor());
3489 wxArrayGdkWindows windowsThis
;
3490 GdkWindow
* const winThis
= GTKGetWindow(windowsThis
);
3493 gdk_window_set_cursor(winThis
, cursor
.GetCursor());
3497 const size_t count
= windowsThis
.size();
3498 for ( size_t n
= 0; n
< count
; n
++ )
3500 GdkWindow
*win
= windowsThis
[n
];
3503 wxFAIL_MSG(_T("NULL window returned by GTKGetWindow()?"));
3507 gdk_window_set_cursor(win
, cursor
.GetCursor());
3513 void wxWindowGTK::WarpPointer( int x
, int y
)
3515 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
3517 // We provide this function ourselves as it is
3518 // missing in GDK (top of this file).
3520 GdkWindow
*window
= (GdkWindow
*) NULL
;
3522 window
= GTK_PIZZA(m_wxwindow
)->bin_window
;
3524 window
= GetConnectWidget()->window
;
3527 gdk_window_warp_pointer( window
, x
, y
);
3530 wxWindowGTK::ScrollDir
wxWindowGTK::ScrollDirFromRange(GtkRange
*range
) const
3532 // find the scrollbar which generated the event
3533 for ( int dir
= 0; dir
< ScrollDir_Max
; dir
++ )
3535 if ( range
== m_scrollBar
[dir
] )
3536 return (ScrollDir
)dir
;
3539 wxFAIL_MSG( _T("event from unknown scrollbar received") );
3541 return ScrollDir_Max
;
3544 bool wxWindowGTK::DoScrollByUnits(ScrollDir dir
, ScrollUnit unit
, int units
)
3546 bool changed
= false;
3547 GtkRange
* range
= m_scrollBar
[dir
];
3548 if ( range
&& units
)
3550 GtkAdjustment
* adj
= range
->adjustment
;
3551 gdouble inc
= unit
== ScrollUnit_Line
? adj
->step_increment
3552 : adj
->page_increment
;
3554 const int posOld
= int(adj
->value
+ 0.5);
3555 gtk_range_set_value(range
, posOld
+ units
*inc
);
3557 changed
= int(adj
->value
+ 0.5) != posOld
;
3563 bool wxWindowGTK::ScrollLines(int lines
)
3565 return DoScrollByUnits(ScrollDir_Vert
, ScrollUnit_Line
, lines
);
3568 bool wxWindowGTK::ScrollPages(int pages
)
3570 return DoScrollByUnits(ScrollDir_Vert
, ScrollUnit_Page
, pages
);
3573 void wxWindowGTK::Refresh(bool WXUNUSED(eraseBackground
),
3578 if (!m_widget
->window
)
3583 if (!GTK_PIZZA(m_wxwindow
)->bin_window
) return;
3585 GdkRectangle gdk_rect
,
3589 gdk_rect
.x
= rect
->x
;
3590 gdk_rect
.y
= rect
->y
;
3591 gdk_rect
.width
= rect
->width
;
3592 gdk_rect
.height
= rect
->height
;
3593 if (GetLayoutDirection() == wxLayout_RightToLeft
)
3594 gdk_rect
.x
= GetClientSize().x
- gdk_rect
.x
- gdk_rect
.width
;
3598 else // invalidate everything
3603 gdk_window_invalidate_rect( GTK_PIZZA(m_wxwindow
)->bin_window
, p
, TRUE
);
3607 void wxWindowGTK::Update()
3611 // when we call Update() we really want to update the window immediately on
3612 // screen, even if it means flushing the entire queue and hence slowing down
3613 // everything -- but it should still be done, it's just that Update() should
3614 // be called very rarely
3618 void wxWindowGTK::GtkUpdate()
3620 if (m_wxwindow
&& GTK_PIZZA(m_wxwindow
)->bin_window
)
3621 gdk_window_process_updates( GTK_PIZZA(m_wxwindow
)->bin_window
, FALSE
);
3622 if (m_widget
&& m_widget
->window
&& (m_wxwindow
!= m_widget
))
3623 gdk_window_process_updates( m_widget
->window
, FALSE
);
3625 // for consistency with other platforms (and also because it's convenient
3626 // to be able to update an entire TLW by calling Update() only once), we
3627 // should also update all our children here
3628 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
3630 node
= node
->GetNext() )
3632 node
->GetData()->GtkUpdate();
3636 bool wxWindowGTK::DoIsExposed( int x
, int y
) const
3638 return m_updateRegion
.Contains(x
, y
) != wxOutRegion
;
3642 bool wxWindowGTK::DoIsExposed( int x
, int y
, int w
, int h
) const
3644 if (GetLayoutDirection() == wxLayout_RightToLeft
)
3645 return m_updateRegion
.Contains(x
-w
, y
, w
, h
) != wxOutRegion
;
3647 return m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
;
3650 void wxWindowGTK::GtkSendPaintEvents()
3654 m_updateRegion
.Clear();
3658 // Clip to paint region in wxClientDC
3659 m_clipPaintRegion
= true;
3661 m_nativeUpdateRegion
= m_updateRegion
;
3663 if (GetLayoutDirection() == wxLayout_RightToLeft
)
3665 // Transform m_updateRegion under RTL
3666 m_updateRegion
.Clear();
3669 gdk_window_get_geometry( GTK_PIZZA(m_wxwindow
)->bin_window
,
3670 NULL
, NULL
, &width
, NULL
, NULL
);
3672 wxRegionIterator
upd( m_nativeUpdateRegion
);
3676 rect
.x
= upd
.GetX();
3677 rect
.y
= upd
.GetY();
3678 rect
.width
= upd
.GetWidth();
3679 rect
.height
= upd
.GetHeight();
3681 rect
.x
= width
- rect
.x
- rect
.width
;
3682 m_updateRegion
.Union( rect
);
3688 // widget to draw on
3689 GtkPizza
*pizza
= GTK_PIZZA (m_wxwindow
);
3691 if (GetThemeEnabled() && (GetBackgroundStyle() == wxBG_STYLE_SYSTEM
))
3693 // find ancestor from which to steal background
3694 wxWindow
*parent
= wxGetTopLevelParent((wxWindow
*)this);
3696 parent
= (wxWindow
*)this;
3698 if (GTK_WIDGET_MAPPED(parent
->m_widget
))
3700 wxRegionIterator
upd( m_nativeUpdateRegion
);
3704 rect
.x
= upd
.GetX();
3705 rect
.y
= upd
.GetY();
3706 rect
.width
= upd
.GetWidth();
3707 rect
.height
= upd
.GetHeight();
3709 gtk_paint_flat_box( parent
->m_widget
->style
,
3711 (GtkStateType
)GTK_WIDGET_STATE(m_wxwindow
),
3724 wxWindowDC
dc( (wxWindow
*)this );
3725 dc
.SetClippingRegion( m_updateRegion
);
3727 wxEraseEvent
erase_event( GetId(), &dc
);
3728 erase_event
.SetEventObject( this );
3730 GetEventHandler()->ProcessEvent(erase_event
);
3733 wxNcPaintEvent
nc_paint_event( GetId() );
3734 nc_paint_event
.SetEventObject( this );
3735 GetEventHandler()->ProcessEvent( nc_paint_event
);
3737 wxPaintEvent
paint_event( GetId() );
3738 paint_event
.SetEventObject( this );
3739 GetEventHandler()->ProcessEvent( paint_event
);
3741 m_clipPaintRegion
= false;
3743 m_updateRegion
.Clear();
3744 m_nativeUpdateRegion
.Clear();
3747 void wxWindowGTK::SetDoubleBuffered( bool on
)
3749 wxCHECK_RET( (m_widget
!= NULL
), wxT("invalid window") );
3752 gtk_widget_set_double_buffered( m_wxwindow
, on
);
3755 bool wxWindowGTK::IsDoubleBuffered() const
3757 return GTK_WIDGET_DOUBLE_BUFFERED( m_wxwindow
);
3760 void wxWindowGTK::ClearBackground()
3762 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
3766 void wxWindowGTK::DoSetToolTip( wxToolTip
*tip
)
3768 wxWindowBase::DoSetToolTip(tip
);
3771 m_tooltip
->Apply( (wxWindow
*)this );
3774 void wxWindowGTK::ApplyToolTip( GtkTooltips
*tips
, const gchar
*tip
)
3776 gtk_tooltips_set_tip(tips
, GetConnectWidget(), tip
, NULL
);
3778 #endif // wxUSE_TOOLTIPS
3780 bool wxWindowGTK::SetBackgroundColour( const wxColour
&colour
)
3782 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid window") );
3784 if (!wxWindowBase::SetBackgroundColour(colour
))
3789 // We need the pixel value e.g. for background clearing.
3790 m_backgroundColour
.CalcPixel(gtk_widget_get_colormap(m_widget
));
3793 // apply style change (forceStyle=true so that new style is applied
3794 // even if the bg colour changed from valid to wxNullColour)
3795 if (GetBackgroundStyle() != wxBG_STYLE_CUSTOM
)
3796 ApplyWidgetStyle(true);
3801 bool wxWindowGTK::SetForegroundColour( const wxColour
&colour
)
3803 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid window") );
3805 if (!wxWindowBase::SetForegroundColour(colour
))
3812 // We need the pixel value e.g. for background clearing.
3813 m_foregroundColour
.CalcPixel(gtk_widget_get_colormap(m_widget
));
3816 // apply style change (forceStyle=true so that new style is applied
3817 // even if the bg colour changed from valid to wxNullColour):
3818 ApplyWidgetStyle(true);
3823 PangoContext
*wxWindowGTK::GtkGetPangoDefaultContext()
3825 return gtk_widget_get_pango_context( m_widget
);
3828 GtkRcStyle
*wxWindowGTK::CreateWidgetStyle(bool forceStyle
)
3830 // do we need to apply any changes at all?
3833 !m_foregroundColour
.Ok() && !m_backgroundColour
.Ok() )
3838 GtkRcStyle
*style
= gtk_rc_style_new();
3843 pango_font_description_copy( m_font
.GetNativeFontInfo()->description
);
3846 int flagsNormal
= 0,
3849 flagsInsensitive
= 0;
3851 if ( m_foregroundColour
.Ok() )
3853 const GdkColor
*fg
= m_foregroundColour
.GetColor();
3855 style
->fg
[GTK_STATE_NORMAL
] =
3856 style
->text
[GTK_STATE_NORMAL
] = *fg
;
3857 flagsNormal
|= GTK_RC_FG
| GTK_RC_TEXT
;
3859 style
->fg
[GTK_STATE_PRELIGHT
] =
3860 style
->text
[GTK_STATE_PRELIGHT
] = *fg
;
3861 flagsPrelight
|= GTK_RC_FG
| GTK_RC_TEXT
;
3863 style
->fg
[GTK_STATE_ACTIVE
] =
3864 style
->text
[GTK_STATE_ACTIVE
] = *fg
;
3865 flagsActive
|= GTK_RC_FG
| GTK_RC_TEXT
;
3868 if ( m_backgroundColour
.Ok() )
3870 const GdkColor
*bg
= m_backgroundColour
.GetColor();
3872 style
->bg
[GTK_STATE_NORMAL
] =
3873 style
->base
[GTK_STATE_NORMAL
] = *bg
;
3874 flagsNormal
|= GTK_RC_BG
| GTK_RC_BASE
;
3876 style
->bg
[GTK_STATE_PRELIGHT
] =
3877 style
->base
[GTK_STATE_PRELIGHT
] = *bg
;
3878 flagsPrelight
|= GTK_RC_BG
| GTK_RC_BASE
;
3880 style
->bg
[GTK_STATE_ACTIVE
] =
3881 style
->base
[GTK_STATE_ACTIVE
] = *bg
;
3882 flagsActive
|= GTK_RC_BG
| GTK_RC_BASE
;
3884 style
->bg
[GTK_STATE_INSENSITIVE
] =
3885 style
->base
[GTK_STATE_INSENSITIVE
] = *bg
;
3886 flagsInsensitive
|= GTK_RC_BG
| GTK_RC_BASE
;
3889 style
->color_flags
[GTK_STATE_NORMAL
] = (GtkRcFlags
)flagsNormal
;
3890 style
->color_flags
[GTK_STATE_PRELIGHT
] = (GtkRcFlags
)flagsPrelight
;
3891 style
->color_flags
[GTK_STATE_ACTIVE
] = (GtkRcFlags
)flagsActive
;
3892 style
->color_flags
[GTK_STATE_INSENSITIVE
] = (GtkRcFlags
)flagsInsensitive
;
3897 void wxWindowGTK::ApplyWidgetStyle(bool forceStyle
)
3899 GtkRcStyle
*style
= CreateWidgetStyle(forceStyle
);
3902 DoApplyWidgetStyle(style
);
3903 gtk_rc_style_unref(style
);
3906 // Style change may affect GTK+'s size calculation:
3907 InvalidateBestSize();
3910 void wxWindowGTK::DoApplyWidgetStyle(GtkRcStyle
*style
)
3913 gtk_widget_modify_style(m_wxwindow
, style
);
3915 gtk_widget_modify_style(m_widget
, style
);
3918 bool wxWindowGTK::SetBackgroundStyle(wxBackgroundStyle style
)
3920 wxWindowBase::SetBackgroundStyle(style
);
3922 if (style
== wxBG_STYLE_CUSTOM
)
3927 window
= GTK_PIZZA(m_wxwindow
)->bin_window
;
3931 GtkWidget
* const w
= GetConnectWidget();
3932 window
= w
? w
->window
: NULL
;
3937 // Make sure GDK/X11 doesn't refresh the window
3939 gdk_window_set_back_pixmap( window
, None
, False
);
3941 Display
* display
= GDK_WINDOW_DISPLAY(window
);
3944 m_needsStyleChange
= false;
3946 else // window not realized yet
3948 // Do in OnIdle, because the window is not yet available
3949 m_needsStyleChange
= true;
3952 // Don't apply widget style, or we get a grey background
3956 // apply style change (forceStyle=true so that new style is applied
3957 // even if the bg colour changed from valid to wxNullColour):
3958 ApplyWidgetStyle(true);
3963 #if wxUSE_DRAG_AND_DROP
3965 void wxWindowGTK::SetDropTarget( wxDropTarget
*dropTarget
)
3967 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
3969 GtkWidget
*dnd_widget
= GetConnectWidget();
3971 if (m_dropTarget
) m_dropTarget
->UnregisterWidget( dnd_widget
);
3973 if (m_dropTarget
) delete m_dropTarget
;
3974 m_dropTarget
= dropTarget
;
3976 if (m_dropTarget
) m_dropTarget
->RegisterWidget( dnd_widget
);
3979 #endif // wxUSE_DRAG_AND_DROP
3981 GtkWidget
* wxWindowGTK::GetConnectWidget()
3983 GtkWidget
*connect_widget
= m_widget
;
3984 if (m_wxwindow
) connect_widget
= m_wxwindow
;
3986 return connect_widget
;
3989 bool wxWindowGTK::GTKIsOwnWindow(GdkWindow
*window
) const
3991 wxArrayGdkWindows windowsThis
;
3992 GdkWindow
* const winThis
= GTKGetWindow(windowsThis
);
3994 return winThis
? window
== winThis
3995 : windowsThis
.Index(window
) != wxNOT_FOUND
;
3998 GdkWindow
*wxWindowGTK::GTKGetWindow(wxArrayGdkWindows
& WXUNUSED(windows
)) const
4000 return m_wxwindow
? GTK_PIZZA(m_wxwindow
)->bin_window
: m_widget
->window
;
4003 bool wxWindowGTK::SetFont( const wxFont
&font
)
4005 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid window") );
4007 if (!wxWindowBase::SetFont(font
))
4010 // apply style change (forceStyle=true so that new style is applied
4011 // even if the font changed from valid to wxNullFont):
4012 ApplyWidgetStyle(true);
4017 void wxWindowGTK::DoCaptureMouse()
4019 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
4021 GdkWindow
*window
= (GdkWindow
*) NULL
;
4023 window
= GTK_PIZZA(m_wxwindow
)->bin_window
;
4025 window
= GetConnectWidget()->window
;
4027 wxCHECK_RET( window
, _T("CaptureMouse() failed") );
4029 const wxCursor
* cursor
= &m_cursor
;
4031 cursor
= wxSTANDARD_CURSOR
;
4033 gdk_pointer_grab( window
, FALSE
,
4035 (GDK_BUTTON_PRESS_MASK
|
4036 GDK_BUTTON_RELEASE_MASK
|
4037 GDK_POINTER_MOTION_HINT_MASK
|
4038 GDK_POINTER_MOTION_MASK
),
4040 cursor
->GetCursor(),
4041 (guint32
)GDK_CURRENT_TIME
);
4042 g_captureWindow
= this;
4043 g_captureWindowHasMouse
= true;
4046 void wxWindowGTK::DoReleaseMouse()
4048 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
4050 wxCHECK_RET( g_captureWindow
, wxT("can't release mouse - not captured") );
4052 g_captureWindow
= (wxWindowGTK
*) NULL
;
4054 GdkWindow
*window
= (GdkWindow
*) NULL
;
4056 window
= GTK_PIZZA(m_wxwindow
)->bin_window
;
4058 window
= GetConnectWidget()->window
;
4063 gdk_pointer_ungrab ( (guint32
)GDK_CURRENT_TIME
);
4066 void wxWindowGTK::GTKReleaseMouseAndNotify()
4069 wxMouseCaptureLostEvent
evt(GetId());
4070 evt
.SetEventObject( this );
4071 GetEventHandler()->ProcessEvent( evt
);
4075 wxWindow
*wxWindowBase::GetCapture()
4077 return (wxWindow
*)g_captureWindow
;
4080 bool wxWindowGTK::IsRetained() const
4085 void wxWindowGTK::SetScrollbar(int orient
,
4089 bool WXUNUSED(update
))
4091 const int dir
= ScrollDirFromOrient(orient
);
4092 GtkRange
* const sb
= m_scrollBar
[dir
];
4093 wxCHECK_RET( sb
, _T("this window is not scrollable") );
4097 m_hasScrolling
= true;
4101 // GtkRange requires upper > lower
4106 GtkAdjustment
* const adj
= sb
->adjustment
;
4107 adj
->step_increment
= 1;
4108 adj
->page_increment
=
4109 adj
->page_size
= thumbVisible
;
4112 g_signal_handlers_block_by_func(
4113 sb
, (void*)gtk_scrollbar_value_changed
, this);
4115 gtk_range_set_range(sb
, 0, range
);
4116 m_scrollPos
[dir
] = sb
->adjustment
->value
;
4118 g_signal_handlers_unblock_by_func(
4119 sb
, (void*)gtk_scrollbar_value_changed
, this);
4122 void wxWindowGTK::SetScrollPos(int orient
, int pos
, bool WXUNUSED(refresh
))
4124 const int dir
= ScrollDirFromOrient(orient
);
4125 GtkRange
* const sb
= m_scrollBar
[dir
];
4126 wxCHECK_RET( sb
, _T("this window is not scrollable") );
4128 // This check is more than an optimization. Without it, the slider
4129 // will not move smoothly while tracking when using wxScrollHelper.
4130 if (GetScrollPos(orient
) != pos
)
4132 g_signal_handlers_block_by_func(
4133 sb
, (void*)gtk_scrollbar_value_changed
, this);
4135 gtk_range_set_value(sb
, pos
);
4136 m_scrollPos
[dir
] = sb
->adjustment
->value
;
4138 g_signal_handlers_unblock_by_func(
4139 sb
, (void*)gtk_scrollbar_value_changed
, this);
4143 int wxWindowGTK::GetScrollThumb(int orient
) const
4145 GtkRange
* const sb
= m_scrollBar
[ScrollDirFromOrient(orient
)];
4146 wxCHECK_MSG( sb
, 0, _T("this window is not scrollable") );
4148 return int(sb
->adjustment
->page_size
);
4151 int wxWindowGTK::GetScrollPos( int orient
) const
4153 GtkRange
* const sb
= m_scrollBar
[ScrollDirFromOrient(orient
)];
4154 wxCHECK_MSG( sb
, 0, _T("this window is not scrollable") );
4156 return int(sb
->adjustment
->value
+ 0.5);
4159 int wxWindowGTK::GetScrollRange( int orient
) const
4161 GtkRange
* const sb
= m_scrollBar
[ScrollDirFromOrient(orient
)];
4162 wxCHECK_MSG( sb
, 0, _T("this window is not scrollable") );
4164 return int(sb
->adjustment
->upper
);
4167 // Determine if increment is the same as +/-x, allowing for some small
4168 // difference due to possible inexactness in floating point arithmetic
4169 static inline bool IsScrollIncrement(double increment
, double x
)
4171 wxASSERT(increment
> 0);
4172 const double tolerance
= 1.0 / 1024;
4173 return fabs(increment
- fabs(x
)) < tolerance
;
4176 wxEventType
wxWindowGTK::GetScrollEventType(GtkRange
* range
)
4180 wxASSERT(range
== m_scrollBar
[0] || range
== m_scrollBar
[1]);
4182 const int barIndex
= range
== m_scrollBar
[1];
4183 GtkAdjustment
* adj
= range
->adjustment
;
4185 const int value
= int(adj
->value
+ 0.5);
4187 // save previous position
4188 const double oldPos
= m_scrollPos
[barIndex
];
4189 // update current position
4190 m_scrollPos
[barIndex
] = adj
->value
;
4191 // If event should be ignored, or integral position has not changed
4192 if (!m_hasVMT
|| g_blockEventsOnDrag
|| value
== int(oldPos
+ 0.5))
4197 wxEventType eventType
= wxEVT_SCROLL_THUMBTRACK
;
4200 // Difference from last change event
4201 const double diff
= adj
->value
- oldPos
;
4202 const bool isDown
= diff
> 0;
4204 if (IsScrollIncrement(adj
->step_increment
, diff
))
4206 eventType
= isDown
? wxEVT_SCROLL_LINEDOWN
: wxEVT_SCROLL_LINEUP
;
4208 else if (IsScrollIncrement(adj
->page_increment
, diff
))
4210 eventType
= isDown
? wxEVT_SCROLL_PAGEDOWN
: wxEVT_SCROLL_PAGEUP
;
4212 else if (m_mouseButtonDown
)
4214 // Assume track event
4215 m_isScrolling
= true;
4221 void wxWindowGTK::ScrollWindow( int dx
, int dy
, const wxRect
* WXUNUSED(rect
) )
4223 wxCHECK_RET( m_widget
!= NULL
, wxT("invalid window") );
4225 wxCHECK_RET( m_wxwindow
!= NULL
, wxT("window needs client area for scrolling") );
4227 // No scrolling requested.
4228 if ((dx
== 0) && (dy
== 0)) return;
4230 m_clipPaintRegion
= true;
4232 if (GetLayoutDirection() == wxLayout_RightToLeft
)
4233 gtk_pizza_scroll( GTK_PIZZA(m_wxwindow
), dx
, -dy
);
4235 gtk_pizza_scroll( GTK_PIZZA(m_wxwindow
), -dx
, -dy
);
4237 m_clipPaintRegion
= false;
4240 bool restoreCaret
= (GetCaret() != NULL
&& GetCaret()->IsVisible());
4243 wxRect
caretRect(GetCaret()->GetPosition(), GetCaret()->GetSize());
4245 caretRect
.width
+= dx
;
4248 caretRect
.x
+= dx
; caretRect
.width
-= dx
;
4251 caretRect
.height
+= dy
;
4254 caretRect
.y
+= dy
; caretRect
.height
-= dy
;
4257 RefreshRect(caretRect
);
4259 #endif // wxUSE_CARET
4262 void wxWindowGTK::GtkScrolledWindowSetBorder(GtkWidget
* w
, int wxstyle
)
4264 //RN: Note that static controls usually have no border on gtk, so maybe
4265 //it makes sense to treat that as simply no border at the wx level
4267 if (!(wxstyle
& wxNO_BORDER
) && !(wxstyle
& wxBORDER_STATIC
))
4269 GtkShadowType gtkstyle
;
4271 if(wxstyle
& wxBORDER_RAISED
)
4272 gtkstyle
= GTK_SHADOW_OUT
;
4273 else if (wxstyle
& wxBORDER_SUNKEN
)
4274 gtkstyle
= GTK_SHADOW_IN
;
4277 else if (wxstyle
& wxBORDER_DOUBLE
)
4278 gtkstyle
= GTK_SHADOW_ETCHED_IN
;
4281 gtkstyle
= GTK_SHADOW_IN
;
4283 gtk_scrolled_window_set_shadow_type( GTK_SCROLLED_WINDOW(w
),
4288 void wxWindowGTK::SetWindowStyleFlag( long style
)
4290 // Updates the internal variable. NB: Now m_windowStyle bits carry the _new_ style values already
4291 wxWindowBase::SetWindowStyleFlag(style
);
4294 // Find the wxWindow at the current mouse position, also returning the mouse
4296 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
4298 pt
= wxGetMousePosition();
4299 wxWindow
* found
= wxFindWindowAtPoint(pt
);
4303 // Get the current mouse position.
4304 wxPoint
wxGetMousePosition()
4306 /* This crashes when used within wxHelpContext,
4307 so we have to use the X-specific implementation below.
4309 GdkModifierType *mask;
4310 (void) gdk_window_get_pointer(NULL, &x, &y, mask);
4312 return wxPoint(x, y);
4316 GdkWindow
* windowAtPtr
= gdk_window_at_pointer(& x
, & y
);
4318 Display
*display
= windowAtPtr
? GDK_WINDOW_XDISPLAY(windowAtPtr
) : GDK_DISPLAY();
4319 Window rootWindow
= RootWindowOfScreen (DefaultScreenOfDisplay(display
));
4320 Window rootReturn
, childReturn
;
4321 int rootX
, rootY
, winX
, winY
;
4322 unsigned int maskReturn
;
4324 XQueryPointer (display
,
4328 &rootX
, &rootY
, &winX
, &winY
, &maskReturn
);
4329 return wxPoint(rootX
, rootY
);
4333 // Needed for implementing e.g. combobox on wxGTK within a modal dialog.
4334 void wxAddGrab(wxWindow
* window
)
4336 gtk_grab_add( (GtkWidget
*) window
->GetHandle() );
4339 void wxRemoveGrab(wxWindow
* window
)
4341 gtk_grab_remove( (GtkWidget
*) window
->GetHandle() );