]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
f6bcfd97 | 2 | // Name: gtk/window.cpp |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
c67d8618 | 5 | // Id: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling, Julian Smart |
5e0aa05a | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | ||
11 | #ifdef __GNUG__ | |
bfc6fde4 | 12 | #pragma implementation "window.h" |
c801d85f KB |
13 | #endif |
14 | ||
d02af7bb JJ |
15 | #ifdef __VMS |
16 | #define XWarpPointer XWARPPOINTER | |
17 | #endif | |
18 | ||
c801d85f KB |
19 | #include "wx/defs.h" |
20 | #include "wx/window.h" | |
33611ebb | 21 | #include "wx/dcclient.h" |
c801d85f KB |
22 | #include "wx/frame.h" |
23 | #include "wx/app.h" | |
24 | #include "wx/layout.h" | |
25 | #include "wx/utils.h" | |
26 | #include "wx/dialog.h" | |
27 | #include "wx/msgdlg.h" | |
0fc5dbf5 | 28 | #include "wx/module.h" |
bfc6fde4 | 29 | |
06cfab17 | 30 | #if wxUSE_DRAG_AND_DROP |
bfc6fde4 | 31 | #include "wx/dnd.h" |
ac57418f | 32 | #endif |
bfc6fde4 | 33 | |
cad880f5 | 34 | #if wxUSE_TOOLTIPS |
bfc6fde4 | 35 | #include "wx/tooltip.h" |
cad880f5 | 36 | #endif |
bfc6fde4 | 37 | |
f6bcfd97 BP |
38 | #if wxUSE_CARET |
39 | #include "wx/caret.h" | |
40 | #endif // wxUSE_CARET | |
41 | ||
ab93a576 | 42 | #if wxUSE_TEXTCTRL |
0fc5dbf5 | 43 | #include "wx/textctrl.h" |
ab93a576 RD |
44 | #endif |
45 | ||
30dea054 | 46 | #include "wx/menu.h" |
d4c99d6f | 47 | #include "wx/statusbr.h" |
b4071e91 | 48 | #include "wx/intl.h" |
3bc755fc | 49 | #include "wx/settings.h" |
3069ac4e | 50 | #include "wx/log.h" |
48d011c8 | 51 | #include "wx/fontutil.h" |
b4071e91 | 52 | |
3ac8d3bc RR |
53 | #ifdef __WXDEBUG__ |
54 | #include "wx/thread.h" | |
55 | #endif | |
56 | ||
b4071e91 | 57 | #include <math.h> |
fab591c5 | 58 | #include <ctype.h> |
c801d85f | 59 | |
9e691f46 | 60 | #include "wx/gtk/private.h" |
3ac8d3bc RR |
61 | #include <gdk/gdkprivate.h> |
62 | #include <gdk/gdkkeysyms.h> | |
3ac8d3bc | 63 | #include <gdk/gdkx.h> |
6bc8a1c8 | 64 | |
8cb9f0d0 RR |
65 | #include <gtk/gtk.h> |
66 | #include <gtk/gtkprivate.h> | |
67 | ||
68 | #include "wx/gtk/win_gtk.h" | |
69 | ||
9e691f46 VZ |
70 | #ifdef __WXGTK20__ |
71 | #define SET_CONTAINER_FOCUS(w, d) gtk_widget_child_focus((w), (d)) | |
72 | #else | |
73 | #define SET_CONTAINER_FOCUS(w, d) gtk_container_focus(GTK_CONTAINER(w), (d)) | |
74 | #endif | |
75 | ||
4e5a4c69 RR |
76 | #ifdef __WXGTK20__ |
77 | #ifdef HAVE_XIM | |
78 | #undef HAVE_XIM | |
79 | #endif | |
80 | #endif | |
81 | ||
af1d24da RR |
82 | #ifdef __WXGTK20__ |
83 | extern GtkContainerClass *pizza_parent_class; | |
84 | #endif | |
85 | ||
868a2826 RR |
86 | //----------------------------------------------------------------------------- |
87 | // documentation on internals | |
88 | //----------------------------------------------------------------------------- | |
89 | ||
90 | /* | |
91 | I have been asked several times about writing some documentation about | |
92 | the GTK port of wxWindows, especially its internal structures. Obviously, | |
93 | you cannot understand wxGTK without knowing a little about the GTK, but | |
47d67540 | 94 | some more information about what the wxWindow, which is the base class |
868a2826 | 95 | for all other window classes, does seems required as well. |
47d67540 | 96 | |
30760ce7 RR |
97 | I) |
98 | ||
868a2826 | 99 | What does wxWindow do? It contains the common interface for the following |
e380f72b | 100 | jobs of its descendants: |
47d67540 | 101 | |
868a2826 | 102 | 1) Define the rudimentary behaviour common to all window classes, such as |
e380f72b RR |
103 | resizing, intercepting user input (so as to make it possible to use these |
104 | events for special purposes in a derived class), window names etc. | |
868a2826 RR |
105 | |
106 | 2) Provide the possibility to contain and manage children, if the derived | |
107 | class is allowed to contain children, which holds true for those window | |
e380f72b | 108 | classes which do not display a native GTK widget. To name them, these |
868a2826 | 109 | classes are wxPanel, wxScrolledWindow, wxDialog, wxFrame. The MDI frame- |
47d67540 | 110 | work classes are a special case and are handled a bit differently from |
e380f72b | 111 | the rest. The same holds true for the wxNotebook class. |
47d67540 | 112 | |
868a2826 RR |
113 | 3) Provide the possibility to draw into a client area of a window. This, |
114 | too, only holds true for classes that do not display a native GTK widget | |
115 | as above. | |
47d67540 | 116 | |
e380f72b RR |
117 | 4) Provide the entire mechanism for scrolling widgets. This actual inter- |
118 | face for this is usually in wxScrolledWindow, but the GTK implementation | |
868a2826 | 119 | is in this class. |
47d67540 | 120 | |
868a2826 RR |
121 | 5) A multitude of helper or extra methods for special purposes, such as |
122 | Drag'n'Drop, managing validators etc. | |
47d67540 | 123 | |
30760ce7 RR |
124 | 6) Display a border (sunken, raised, simple or none). |
125 | ||
e380f72b RR |
126 | Normally one might expect, that one wxWindows window would always correspond |
127 | to one GTK widget. Under GTK, there is no such allround widget that has all | |
868a2826 RR |
128 | the functionality. Moreover, the GTK defines a client area as a different |
129 | widget from the actual widget you are handling. Last but not least some | |
130 | special classes (e.g. wxFrame) handle different categories of widgets and | |
131 | still have the possibility to draw something in the client area. | |
132 | It was therefore required to write a special purpose GTK widget, that would | |
133 | represent a client area in the sense of wxWindows capable to do the jobs | |
134 | 2), 3) and 4). I have written this class and it resides in win_gtk.c of | |
135 | this directory. | |
47d67540 | 136 | |
868a2826 | 137 | All windows must have a widget, with which they interact with other under- |
e380f72b | 138 | lying GTK widgets. It is this widget, e.g. that has to be resized etc and |
868a2826 | 139 | thw wxWindow class has a member variable called m_widget which holds a |
e380f72b RR |
140 | pointer to this widget. When the window class represents a GTK native widget, |
141 | this is (in most cases) the only GTK widget the class manages. E.g. the | |
142 | wxStatitText class handles only a GtkLabel widget a pointer to which you | |
143 | can find in m_widget (defined in wxWindow) | |
8bbe427f | 144 | |
e380f72b | 145 | When the class has a client area for drawing into and for containing children |
da048e3d | 146 | it has to handle the client area widget (of the type GtkPizza, defined in |
8bbe427f VZ |
147 | win_gtk.c), but there could be any number of widgets, handled by a class |
148 | The common rule for all windows is only, that the widget that interacts with | |
149 | the rest of GTK must be referenced in m_widget and all other widgets must be | |
150 | children of this widget on the GTK level. The top-most widget, which also | |
151 | represents the client area, must be in the m_wxwindow field and must be of | |
da048e3d | 152 | the type GtkPizza. |
47d67540 | 153 | |
868a2826 RR |
154 | As I said, the window classes that display a GTK native widget only have |
155 | one widget, so in the case of e.g. the wxButton class m_widget holds a | |
156 | pointer to a GtkButton widget. But windows with client areas (for drawing | |
157 | and children) have a m_widget field that is a pointer to a GtkScrolled- | |
da048e3d | 158 | Window and a m_wxwindow field that is pointer to a GtkPizza and this |
868a2826 | 159 | one is (in the GTK sense) a child of the GtkScrolledWindow. |
47d67540 | 160 | |
868a2826 RR |
161 | If the m_wxwindow field is set, then all input to this widget is inter- |
162 | cepted and sent to the wxWindows class. If not, all input to the widget | |
163 | that gets pointed to by m_widget gets intercepted and sent to the class. | |
148cd9b6 | 164 | |
30760ce7 | 165 | II) |
148cd9b6 | 166 | |
30760ce7 RR |
167 | The design of scrolling in wxWindows is markedly different from that offered |
168 | by the GTK itself and therefore we cannot simply take it as it is. In GTK, | |
169 | clicking on a scrollbar belonging to scrolled window will inevitably move | |
170 | the window. In wxWindows, the scrollbar will only emit an event, send this | |
171 | to (normally) a wxScrolledWindow and that class will call ScrollWindow() | |
da048e3d | 172 | which actually moves the window and its subchildren. Note that GtkPizza |
30760ce7 RR |
173 | memorizes how much it has been scrolled but that wxWindows forgets this |
174 | so that the two coordinates systems have to be kept in synch. This is done | |
da048e3d | 175 | in various places using the pizza->xoffset and pizza->yoffset values. |
148cd9b6 VZ |
176 | |
177 | III) | |
178 | ||
30760ce7 RR |
179 | Singularily the most broken code in GTK is the code that is supposes to |
180 | inform subwindows (child windows) about new positions. Very often, duplicate | |
181 | events are sent without changes in size or position, equally often no | |
182 | events are sent at all (All this is due to a bug in the GtkContainer code | |
183 | which got fixed in GTK 1.2.6). For that reason, wxGTK completely ignores | |
184 | GTK's own system and it simply waits for size events for toplevel windows | |
185 | and then iterates down the respective size events to all window. This has | |
186 | the disadvantage, that windows might get size events before the GTK widget | |
187 | actually has the reported size. This doesn't normally pose any problem, but | |
3017f78d | 188 | the OpenGl drawing routines rely on correct behaviour. Therefore, I have |
30760ce7 RR |
189 | added the m_nativeSizeEvents flag, which is true only for the OpenGL canvas, |
190 | i.e. the wxGLCanvas will emit a size event, when (and not before) the X11 | |
191 | window that is used for OpenGl output really has that size (as reported by | |
192 | GTK). | |
193 | ||
194 | IV) | |
148cd9b6 | 195 | |
30760ce7 RR |
196 | If someone at some point of time feels the immense desire to have a look at, |
197 | change or attempt to optimse the Refresh() logic, this person will need an | |
198 | intimate understanding of what a "draw" and what an "expose" events are and | |
199 | what there are used for, in particular when used in connection with GTK's | |
200 | own windowless widgets. Beware. | |
148cd9b6 | 201 | |
30760ce7 | 202 | V) |
148cd9b6 | 203 | |
30760ce7 RR |
204 | Cursors, too, have been a constant source of pleasure. The main difficulty |
205 | is that a GdkWindow inherits a cursor if the programmer sets a new cursor | |
206 | for the parent. To prevent this from doing too much harm, I use idle time | |
207 | to set the cursor over and over again, starting from the toplevel windows | |
208 | and ending with the youngest generation (speaking of parent and child windows). | |
209 | Also don't forget that cursors (like much else) are connected to GdkWindows, | |
210 | not GtkWidgets and that the "window" field of a GtkWidget might very well | |
148cd9b6 | 211 | point to the GdkWindow of the parent widget (-> "window less widget") and |
30760ce7 | 212 | that the two obviously have very different meanings. |
868a2826 RR |
213 | |
214 | */ | |
215 | ||
f03fc89f VZ |
216 | //----------------------------------------------------------------------------- |
217 | // data | |
218 | //----------------------------------------------------------------------------- | |
219 | ||
220 | extern wxList wxPendingDelete; | |
221 | extern bool g_blockEventsOnDrag; | |
222 | extern bool g_blockEventsOnScroll; | |
238d735d | 223 | extern wxCursor g_globalCursor; |
f68586e5 | 224 | |
4e5a4c69 RR |
225 | static GdkGC *g_eraseGC = NULL; |
226 | ||
1e6feb95 VZ |
227 | // mouse capture state: the window which has it and if the mouse is currently |
228 | // inside it | |
229 | static wxWindowGTK *g_captureWindow = (wxWindowGTK*) NULL; | |
230 | static bool g_captureWindowHasMouse = FALSE; | |
231 | ||
232 | /* extern */ wxWindowGTK *g_focusWindow = (wxWindowGTK*) NULL; | |
233 | ||
234 | // the last window which had the focus - this is normally never NULL (except | |
235 | // if we never had focus at all) as even when g_focusWindow is NULL it still | |
236 | // keeps its previous value | |
d7fa7eaa | 237 | static wxWindowGTK *g_focusWindowLast = (wxWindowGTK*) NULL; |
148cd9b6 | 238 | |
e8c12a53 VS |
239 | // the frame that is currently active (i.e. its child has focus). It is |
240 | // used to generate wxActivateEvents | |
d7fa7eaa | 241 | static wxWindowGTK *g_activeFrame = (wxWindowGTK*) NULL; |
e8c12a53 VS |
242 | static bool g_activeFrameLostFocus = FALSE; |
243 | ||
d7fa7eaa RR |
244 | // If a window get the focus set but has not been realized |
245 | // yet, defer setting the focus to idle time. | |
246 | wxWindowGTK *g_delayedFocus = (wxWindowGTK*) NULL; | |
247 | ||
148cd9b6 VZ |
248 | // if we detect that the app has got/lost the focus, we set this variable to |
249 | // either TRUE or FALSE and an activate event will be sent during the next | |
250 | // OnIdle() call and it is reset to -1: this value means that we shouldn't | |
251 | // send any activate events at all | |
252 | static int g_sendActivateEvent = -1; | |
f03fc89f VZ |
253 | |
254 | /* hack: we need something to pass to gtk_menu_popup, so we store the time of | |
255 | the last click here */ | |
256 | static guint32 gs_timeLastClick = 0; | |
257 | ||
3ac8d3bc RR |
258 | extern bool g_mainThreadLocked; |
259 | ||
2e563988 RR |
260 | //----------------------------------------------------------------------------- |
261 | // debug | |
262 | //----------------------------------------------------------------------------- | |
263 | ||
d52e91c9 | 264 | #ifndef __WXGTK20__ |
a56fcaaf | 265 | #define DISABLE_STYLE_IF_BROKEN_THEME 1 |
d52e91c9 | 266 | #endif |
a56fcaaf | 267 | |
2e563988 RR |
268 | #ifdef __WXDEBUG__ |
269 | ||
c6e62f74 KB |
270 | #if wxUSE_THREADS |
271 | # define DEBUG_MAIN_THREAD if (wxThread::IsMain() && g_mainThreadLocked) printf("gui reentrance"); | |
272 | #else | |
273 | # define DEBUG_MAIN_THREAD | |
274 | #endif | |
559d79aa BJ |
275 | #else |
276 | #define DEBUG_MAIN_THREAD | |
f03fc89f | 277 | #endif // Debug |
ff8bfdbb | 278 | |
6cad4f1b VZ |
279 | // the trace mask used for the focus debugging messages |
280 | #define TRACE_FOCUS _T("focus") | |
281 | ||
85eb36c2 RR |
282 | //----------------------------------------------------------------------------- |
283 | // missing gdk functions | |
284 | //----------------------------------------------------------------------------- | |
285 | ||
286 | void | |
287 | gdk_window_warp_pointer (GdkWindow *window, | |
c50f1fb9 VZ |
288 | gint x, |
289 | gint y) | |
85eb36c2 | 290 | { |
dd00f3f6 | 291 | #ifndef __WXGTK20__ |
85eb36c2 | 292 | GdkWindowPrivate *priv; |
dd00f3f6 | 293 | #endif |
c50f1fb9 | 294 | |
85eb36c2 | 295 | if (!window) |
27df579a | 296 | window = GDK_ROOT_PARENT(); |
c50f1fb9 | 297 | |
dd00f3f6 OK |
298 | #ifdef __WXGTK20__ |
299 | if (!GDK_WINDOW_DESTROYED(window)) | |
300 | { | |
301 | XWarpPointer (GDK_WINDOW_XDISPLAY(window), | |
302 | None, /* not source window -> move from anywhere */ | |
303 | GDK_WINDOW_XID(window), /* dest window */ | |
304 | 0, 0, 0, 0, /* not source window -> move from anywhere */ | |
305 | x, y ); | |
306 | } | |
307 | #else | |
85eb36c2 | 308 | priv = (GdkWindowPrivate*) window; |
c50f1fb9 | 309 | |
85eb36c2 RR |
310 | if (!priv->destroyed) |
311 | { | |
c50f1fb9 | 312 | XWarpPointer (priv->xdisplay, |
85eb36c2 | 313 | None, /* not source window -> move from anywhere */ |
c50f1fb9 | 314 | priv->xwindow, /* dest window */ |
85eb36c2 | 315 | 0, 0, 0, 0, /* not source window -> move from anywhere */ |
c50f1fb9 | 316 | x, y ); |
85eb36c2 | 317 | } |
dd00f3f6 | 318 | #endif |
85eb36c2 RR |
319 | } |
320 | ||
acfd422a | 321 | //----------------------------------------------------------------------------- |
a2053b27 | 322 | // idle system |
acfd422a RR |
323 | //----------------------------------------------------------------------------- |
324 | ||
a2053b27 RR |
325 | extern void wxapp_install_idle_handler(); |
326 | extern bool g_isIdle; | |
327 | ||
ed673c6a RR |
328 | //----------------------------------------------------------------------------- |
329 | // local code (see below) | |
330 | //----------------------------------------------------------------------------- | |
331 | ||
f6bcfd97 | 332 | // returns the child of win which currently has focus or NULL if not found |
1e6feb95 | 333 | // |
fc71ef6e | 334 | // Note: can't be static, needed by textctrl.cpp. |
3379ed37 | 335 | wxWindow *wxFindFocusedChild(wxWindowGTK *win) |
f6bcfd97 | 336 | { |
3379ed37 | 337 | wxWindow *winFocus = wxWindowGTK::FindFocus(); |
f6bcfd97 | 338 | if ( !winFocus ) |
3379ed37 | 339 | return (wxWindow *)NULL; |
f6bcfd97 BP |
340 | |
341 | if ( winFocus == win ) | |
3379ed37 | 342 | return (wxWindow *)win; |
f6bcfd97 BP |
343 | |
344 | for ( wxWindowList::Node *node = win->GetChildren().GetFirst(); | |
345 | node; | |
346 | node = node->GetNext() ) | |
347 | { | |
3379ed37 | 348 | wxWindow *child = wxFindFocusedChild(node->GetData()); |
f6bcfd97 BP |
349 | if ( child ) |
350 | return child; | |
351 | } | |
352 | ||
3379ed37 | 353 | return (wxWindow *)NULL; |
f6bcfd97 BP |
354 | } |
355 | ||
1e6feb95 | 356 | static void draw_frame( GtkWidget *widget, wxWindowGTK *win ) |
ed673c6a | 357 | { |
1e6feb95 VZ |
358 | // wxUniversal widgets draw the borders and scrollbars themselves |
359 | #ifndef __WXUNIVERSAL__ | |
ed673c6a RR |
360 | if (!win->m_hasVMT) |
361 | return; | |
362 | ||
363 | int dw = 0; | |
364 | int dh = 0; | |
365 | ||
5b8a521e | 366 | if (win->m_hasScrolling) |
ed673c6a | 367 | { |
beab25bd | 368 | GtkScrolledWindow *scroll_window = GTK_SCROLLED_WINDOW(widget); |
2daa0ce9 | 369 | |
beab25bd RR |
370 | GtkRequisition vscroll_req; |
371 | vscroll_req.width = 2; | |
372 | vscroll_req.height = 2; | |
373 | (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(scroll_window->vscrollbar) )->size_request ) | |
374 | (scroll_window->vscrollbar, &vscroll_req ); | |
2daa0ce9 | 375 | |
beab25bd RR |
376 | GtkRequisition hscroll_req; |
377 | hscroll_req.width = 2; | |
378 | hscroll_req.height = 2; | |
379 | (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(scroll_window->hscrollbar) )->size_request ) | |
380 | (scroll_window->hscrollbar, &hscroll_req ); | |
9000c624 | 381 | |
beab25bd | 382 | GtkScrolledWindowClass *scroll_class = GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT_GET_CLASS(widget) ); |
ed673c6a | 383 | |
beab25bd RR |
384 | if (scroll_window->vscrollbar_visible) |
385 | { | |
386 | dw += vscroll_req.width; | |
387 | dw += scroll_class->scrollbar_spacing; | |
388 | } | |
ed673c6a | 389 | |
beab25bd RR |
390 | if (scroll_window->hscrollbar_visible) |
391 | { | |
392 | dh += hscroll_req.height; | |
393 | dh += scroll_class->scrollbar_spacing; | |
394 | } | |
395 | } | |
ed673c6a RR |
396 | |
397 | int dx = 0; | |
398 | int dy = 0; | |
399 | if (GTK_WIDGET_NO_WINDOW (widget)) | |
400 | { | |
401 | dx += widget->allocation.x; | |
402 | dy += widget->allocation.y; | |
403 | } | |
404 | ||
405 | if (win->HasFlag(wxRAISED_BORDER)) | |
406 | { | |
407 | gtk_draw_shadow( widget->style, | |
408 | widget->window, | |
409 | GTK_STATE_NORMAL, | |
410 | GTK_SHADOW_OUT, | |
411 | dx, dy, | |
07f5b19a | 412 | widget->allocation.width-dw, widget->allocation.height-dh ); |
ed673c6a RR |
413 | return; |
414 | } | |
415 | ||
416 | if (win->HasFlag(wxSUNKEN_BORDER)) | |
417 | { | |
418 | gtk_draw_shadow( widget->style, | |
419 | widget->window, | |
420 | GTK_STATE_NORMAL, | |
421 | GTK_SHADOW_IN, | |
422 | dx, dy, | |
07f5b19a | 423 | widget->allocation.width-dw, widget->allocation.height-dh ); |
ed673c6a RR |
424 | return; |
425 | } | |
148cd9b6 | 426 | |
ed673c6a RR |
427 | if (win->HasFlag(wxSIMPLE_BORDER)) |
428 | { | |
429 | GdkGC *gc; | |
b02da6b1 | 430 | gc = gdk_gc_new( widget->window ); |
ed673c6a | 431 | gdk_gc_set_foreground( gc, &widget->style->black ); |
148cd9b6 | 432 | gdk_draw_rectangle( widget->window, gc, FALSE, |
ed673c6a | 433 | dx, dy, |
07f5b19a | 434 | widget->allocation.width-dw-1, widget->allocation.height-dh-1 ); |
ed673c6a RR |
435 | gdk_gc_unref( gc ); |
436 | return; | |
437 | } | |
1e6feb95 | 438 | #endif // __WXUNIVERSAL__ |
ed673c6a RR |
439 | } |
440 | ||
441 | //----------------------------------------------------------------------------- | |
442 | // "expose_event" of m_widget | |
443 | //----------------------------------------------------------------------------- | |
444 | ||
1e6feb95 | 445 | gint gtk_window_own_expose_callback( GtkWidget *widget, GdkEventExpose *gdk_event, wxWindowGTK *win ) |
ed673c6a | 446 | { |
b6fa52db | 447 | if (gdk_event->count > 0) return FALSE; |
1e6feb95 | 448 | |
ed673c6a | 449 | draw_frame( widget, win ); |
1e6feb95 | 450 | |
af1d24da RR |
451 | #ifdef __WXGTK20__ |
452 | ||
453 | (* GTK_WIDGET_CLASS (pizza_parent_class)->expose_event) (widget, gdk_event); | |
0fc5dbf5 VZ |
454 | |
455 | #endif | |
b6fa52db | 456 | return TRUE; |
ed673c6a RR |
457 | } |
458 | ||
459 | //----------------------------------------------------------------------------- | |
147bc491 | 460 | // "draw" of m_widget |
ed673c6a RR |
461 | //----------------------------------------------------------------------------- |
462 | ||
67d78217 RR |
463 | #ifndef __WXGTK20__ |
464 | ||
1e6feb95 | 465 | static void gtk_window_own_draw_callback( GtkWidget *widget, GdkRectangle *WXUNUSED(rect), wxWindowGTK *win ) |
ed673c6a RR |
466 | { |
467 | draw_frame( widget, win ); | |
468 | } | |
469 | ||
1c6896d7 | 470 | #endif // GTK+ < 2.0 |
c5b42c87 | 471 | |
47c93b63 RR |
472 | //----------------------------------------------------------------------------- |
473 | // "size_request" of m_widget | |
474 | //----------------------------------------------------------------------------- | |
475 | ||
476 | static void gtk_window_size_request_callback( GtkWidget *widget, GtkRequisition *requisition, wxWindow *win ) | |
477 | { | |
478 | int w,h; | |
479 | win->GetSize( &w, &h ); | |
480 | if (w < 2) w = 2; | |
481 | if (h < 2) h = 2; | |
1e6feb95 | 482 | |
47c93b63 RR |
483 | requisition->height = h; |
484 | requisition->width = w; | |
485 | } | |
486 | ||
c801d85f | 487 | //----------------------------------------------------------------------------- |
034be888 | 488 | // "expose_event" of m_wxwindow |
c801d85f KB |
489 | //----------------------------------------------------------------------------- |
490 | ||
1e6feb95 VZ |
491 | static int gtk_window_expose_callback( GtkWidget *widget, |
492 | GdkEventExpose *gdk_event, | |
493 | wxWindow *win ) | |
47d67540 | 494 | { |
3ac8d3bc RR |
495 | DEBUG_MAIN_THREAD |
496 | ||
b6fa52db RR |
497 | if (g_isIdle) |
498 | wxapp_install_idle_handler(); | |
1e6feb95 | 499 | |
3fc6e5fa RR |
500 | #ifdef __WXGTK20__ |
501 | // This callback gets called in drawing-idle time under | |
502 | // GTK 2.0, so we don't need to defer anything to idle | |
503 | // time anymore. | |
504 | ||
505 | GtkPizza *pizza = GTK_PIZZA( widget ); | |
506 | if (gdk_event->window != pizza->bin_window) return FALSE; | |
507 | ||
d7fa7eaa RR |
508 | #if 0 |
509 | if (win->GetName()) | |
3d2d8da1 RR |
510 | { |
511 | wxPrintf( wxT("OnExpose from ") ); | |
512 | if (win->GetClassInfo() && win->GetClassInfo()->GetClassName()) | |
513 | wxPrintf( win->GetClassInfo()->GetClassName() ); | |
514 | wxPrintf( wxT(" %d %d %d %d\n"), (int)gdk_event->area.x, | |
515 | (int)gdk_event->area.y, | |
516 | (int)gdk_event->area.width, | |
517 | (int)gdk_event->area.height ); | |
518 | } | |
d7fa7eaa | 519 | #endif |
1e6feb95 | 520 | |
b15ed747 RR |
521 | win->GetUpdateRegion() = wxRegion( gdk_event->region ); |
522 | ||
523 | win->GtkSendPaintEvents(); | |
524 | ||
3fc6e5fa | 525 | // Let parent window draw window less widgets |
b15ed747 RR |
526 | (* GTK_WIDGET_CLASS (pizza_parent_class)->expose_event) (widget, gdk_event); |
527 | #else | |
528 | // This gets called immediately after an expose event | |
529 | // under GTK 1.2 so we collect the calls and wait for | |
530 | // the idle handler to pick things up. | |
531 | ||
2bc6945a RR |
532 | win->GetUpdateRegion().Union( gdk_event->area.x, |
533 | gdk_event->area.y, | |
534 | gdk_event->area.width, | |
535 | gdk_event->area.height ); | |
d665f50b JS |
536 | win->m_clearRegion.Union( gdk_event->area.x, |
537 | gdk_event->area.y, | |
538 | gdk_event->area.width, | |
539 | gdk_event->area.height ); | |
0e09f76e | 540 | |
8f3e7ecc | 541 | // Actual redrawing takes place in idle time. |
62cb3cd8 | 542 | // win->GtkUpdate(); |
0fc5dbf5 | 543 | #endif |
f7a11f8c | 544 | |
3fc6e5fa | 545 | return FALSE; |
b6fa52db RR |
546 | } |
547 | ||
548 | //----------------------------------------------------------------------------- | |
549 | // "event" of m_wxwindow | |
550 | //----------------------------------------------------------------------------- | |
551 | ||
beab25bd RR |
552 | // GTK thinks it is clever and filters out a certain amount of "unneeded" |
553 | // expose events. We need them, of course, so we override the main event | |
554 | // procedure in GtkWidget by giving our own handler for all system events. | |
555 | // There, we look for expose events ourselves whereas all other events are | |
556 | // handled normally. | |
b6fa52db | 557 | |
1e6feb95 VZ |
558 | gint gtk_window_event_event_callback( GtkWidget *widget, |
559 | GdkEventExpose *event, | |
560 | wxWindow *win ) | |
b6fa52db RR |
561 | { |
562 | if (event->type == GDK_EXPOSE) | |
563 | { | |
564 | gint ret = gtk_window_expose_callback( widget, event, win ); | |
565 | return ret; | |
566 | } | |
567 | ||
b6fa52db | 568 | return FALSE; |
362c6693 | 569 | } |
c801d85f KB |
570 | |
571 | //----------------------------------------------------------------------------- | |
034be888 | 572 | // "draw" of m_wxwindow |
2f2aa628 | 573 | //----------------------------------------------------------------------------- |
c801d85f | 574 | |
67d78217 RR |
575 | #ifndef __WXGTK20__ |
576 | ||
beab25bd | 577 | // This callback is a complete replacement of the gtk_pizza_draw() function, |
67d78217 | 578 | // which is disabled. |
b6fa52db | 579 | |
1e6feb95 VZ |
580 | static void gtk_window_draw_callback( GtkWidget *widget, |
581 | GdkRectangle *rect, | |
582 | wxWindow *win ) | |
47d67540 | 583 | { |
3ac8d3bc RR |
584 | DEBUG_MAIN_THREAD |
585 | ||
c50f1fb9 | 586 | if (g_isIdle) |
a2053b27 | 587 | wxapp_install_idle_handler(); |
2d19ad25 | 588 | |
beab25bd RR |
589 | // The wxNO_FULL_REPAINT_ON_RESIZE flag only works if |
590 | // there are no child windows. | |
e22454be RR |
591 | if ((win->HasFlag(wxNO_FULL_REPAINT_ON_RESIZE)) && |
592 | (win->GetChildren().GetCount() == 0)) | |
593 | { | |
594 | return; | |
595 | } | |
2d19ad25 | 596 | |
d7fa7eaa RR |
597 | #if 0 |
598 | if (win->GetName()) | |
3d2d8da1 RR |
599 | { |
600 | wxPrintf( wxT("OnDraw from ") ); | |
601 | if (win->GetClassInfo() && win->GetClassInfo()->GetClassName()) | |
602 | wxPrintf( win->GetClassInfo()->GetClassName() ); | |
603 | wxPrintf( wxT(" %d %d %d %d\n"), (int)rect->x, | |
604 | (int)rect->y, | |
605 | (int)rect->width, | |
606 | (int)rect->height ); | |
607 | } | |
d7fa7eaa | 608 | #endif |
1e6feb95 | 609 | |
2e09dc2d | 610 | #ifndef __WXUNIVERSAL__ |
b420fb6a | 611 | GtkPizza *pizza = GTK_PIZZA (widget); |
2bc6945a | 612 | |
9cc7121f | 613 | if (win->GetThemeEnabled()) |
789dbcd4 | 614 | { |
9cc7121f RR |
615 | wxWindow *parent = win->GetParent(); |
616 | while (parent && !parent->IsTopLevel()) | |
789dbcd4 | 617 | parent = parent->GetParent(); |
9cc7121f RR |
618 | if (!parent) |
619 | parent = win; | |
620 | ||
90350682 VZ |
621 | gtk_paint_flat_box (parent->m_widget->style, |
622 | pizza->bin_window, | |
623 | GTK_STATE_NORMAL, | |
624 | GTK_SHADOW_NONE, | |
625 | rect, | |
626 | parent->m_widget, | |
627 | (char *)"base", | |
628 | 0, 0, -1, -1); | |
789dbcd4 | 629 | } |
2e09dc2d | 630 | #endif |
1e6feb95 | 631 | |
62cb3cd8 | 632 | win->m_clearRegion.Union( rect->x, rect->y, rect->width, rect->height ); |
9cc7121f | 633 | win->GetUpdateRegion().Union( rect->x, rect->y, rect->width, rect->height ); |
148cd9b6 | 634 | |
62cb3cd8 | 635 | // Update immediately, not in idle time. |
010afced | 636 | win->GtkUpdate(); |
1e6feb95 | 637 | |
8f3e7ecc | 638 | #ifndef __WXUNIVERSAL__ |
beab25bd | 639 | // Redraw child widgets |
e22454be RR |
640 | GList *children = pizza->children; |
641 | while (children) | |
642 | { | |
beab25bd RR |
643 | GtkPizzaChild *child = (GtkPizzaChild*) children->data; |
644 | children = children->next; | |
b420fb6a | 645 | |
beab25bd RR |
646 | GdkRectangle child_area; |
647 | if (gtk_widget_intersect (child->widget, rect, &child_area)) | |
648 | { | |
649 | gtk_widget_draw (child->widget, &child_area /* (GdkRectangle*) NULL*/ ); | |
650 | } | |
e22454be | 651 | } |
8f3e7ecc | 652 | #endif |
362c6693 | 653 | } |
c801d85f | 654 | |
67d78217 RR |
655 | #endif |
656 | ||
c801d85f | 657 | //----------------------------------------------------------------------------- |
b292e2f5 | 658 | // "key_press_event" from any window |
c801d85f | 659 | //----------------------------------------------------------------------------- |
c801d85f | 660 | |
74710601 VZ |
661 | // set WXTRACE to this to see the key event codes on the console |
662 | #define TRACE_KEYS _T("keyevent") | |
f17393f1 | 663 | |
1c6896d7 VZ |
664 | // translates an X key symbol to WXK_XXX value |
665 | // | |
666 | // if isChar is true it means that the value returned will be used for EVT_CHAR | |
667 | // event and then we choose the logical WXK_XXX, i.e. '/' for GDK_KP_Divide, | |
668 | // for example, while if it is false it means that the value is going to be | |
669 | // used for KEY_DOWN/UP events and then we translate GDK_KP_Divide to | |
670 | // WXK_NUMPAD_DIVIDE | |
671 | static long wxTranslateKeySymToWXKey(KeySym keysym, bool isChar) | |
672 | { | |
673 | long key_code; | |
674 | ||
675 | switch ( keysym ) | |
676 | { | |
677 | // Shift, Control and Alt don't generate the CHAR events at all | |
678 | case GDK_Shift_L: | |
679 | case GDK_Shift_R: | |
680 | key_code = isChar ? 0 : WXK_SHIFT; | |
681 | break; | |
682 | case GDK_Control_L: | |
683 | case GDK_Control_R: | |
684 | key_code = isChar ? 0 : WXK_CONTROL; | |
685 | break; | |
686 | case GDK_Meta_L: | |
687 | case GDK_Meta_R: | |
688 | case GDK_Alt_L: | |
689 | case GDK_Alt_R: | |
690 | case GDK_Super_L: | |
691 | case GDK_Super_R: | |
692 | key_code = isChar ? 0 : WXK_ALT; | |
693 | break; | |
694 | ||
695 | // neither do the toggle modifies | |
696 | case GDK_Scroll_Lock: | |
697 | key_code = isChar ? 0 : WXK_SCROLL; | |
698 | break; | |
699 | ||
700 | case GDK_Caps_Lock: | |
701 | key_code = isChar ? 0 : WXK_CAPITAL; | |
702 | break; | |
703 | ||
704 | case GDK_Num_Lock: | |
705 | key_code = isChar ? 0 : WXK_NUMLOCK; | |
706 | break; | |
707 | ||
708 | ||
709 | // various other special keys | |
710 | case GDK_Menu: | |
711 | key_code = WXK_MENU; | |
712 | break; | |
713 | ||
714 | case GDK_Help: | |
715 | key_code = WXK_HELP; | |
716 | break; | |
717 | ||
718 | case GDK_BackSpace: | |
719 | key_code = WXK_BACK; | |
720 | break; | |
721 | ||
722 | case GDK_ISO_Left_Tab: | |
723 | case GDK_Tab: | |
724 | key_code = WXK_TAB; | |
725 | break; | |
726 | ||
727 | case GDK_Linefeed: | |
728 | case GDK_Return: | |
729 | key_code = WXK_RETURN; | |
730 | break; | |
731 | ||
732 | case GDK_Clear: | |
733 | key_code = WXK_CLEAR; | |
734 | break; | |
735 | ||
736 | case GDK_Pause: | |
737 | key_code = WXK_PAUSE; | |
738 | break; | |
739 | ||
740 | case GDK_Select: | |
741 | key_code = WXK_SELECT; | |
742 | break; | |
743 | ||
744 | case GDK_Print: | |
745 | key_code = WXK_PRINT; | |
746 | break; | |
747 | ||
748 | case GDK_Execute: | |
749 | key_code = WXK_EXECUTE; | |
750 | break; | |
751 | ||
752 | case GDK_Escape: | |
753 | key_code = WXK_ESCAPE; | |
754 | break; | |
755 | ||
756 | // cursor and other extended keyboard keys | |
757 | case GDK_Delete: | |
758 | key_code = WXK_DELETE; | |
759 | break; | |
760 | ||
761 | case GDK_Home: | |
762 | key_code = WXK_HOME; | |
763 | break; | |
764 | ||
765 | case GDK_Left: | |
766 | key_code = WXK_LEFT; | |
767 | break; | |
768 | ||
769 | case GDK_Up: | |
770 | key_code = WXK_UP; | |
771 | break; | |
772 | ||
773 | case GDK_Right: | |
774 | key_code = WXK_RIGHT; | |
775 | break; | |
776 | ||
777 | case GDK_Down: | |
778 | key_code = WXK_DOWN; | |
779 | break; | |
780 | ||
781 | case GDK_Prior: // == GDK_Page_Up | |
782 | key_code = WXK_PRIOR; | |
783 | break; | |
784 | ||
785 | case GDK_Next: // == GDK_Page_Down | |
786 | key_code = WXK_NEXT; | |
787 | break; | |
788 | ||
789 | case GDK_End: | |
790 | key_code = WXK_END; | |
791 | break; | |
792 | ||
793 | case GDK_Begin: | |
794 | key_code = WXK_HOME; | |
795 | break; | |
796 | ||
797 | case GDK_Insert: | |
798 | key_code = WXK_INSERT; | |
799 | break; | |
800 | ||
801 | ||
802 | // numpad keys | |
803 | case GDK_KP_0: | |
804 | case GDK_KP_1: | |
805 | case GDK_KP_2: | |
806 | case GDK_KP_3: | |
807 | case GDK_KP_4: | |
808 | case GDK_KP_5: | |
809 | case GDK_KP_6: | |
810 | case GDK_KP_7: | |
811 | case GDK_KP_8: | |
812 | case GDK_KP_9: | |
813 | key_code = (isChar ? '0' : WXK_NUMPAD0) + keysym - GDK_KP_0; | |
814 | break; | |
815 | ||
816 | case GDK_KP_Space: | |
817 | key_code = isChar ? ' ' : WXK_NUMPAD_SPACE; | |
818 | break; | |
819 | ||
820 | case GDK_KP_Tab: | |
821 | key_code = isChar ? WXK_TAB : WXK_NUMPAD_TAB; | |
822 | break; | |
823 | ||
824 | case GDK_KP_Enter: | |
825 | key_code = isChar ? WXK_RETURN : WXK_NUMPAD_ENTER; | |
826 | break; | |
827 | ||
828 | case GDK_KP_F1: | |
829 | key_code = isChar ? WXK_F1 : WXK_NUMPAD_F1; | |
830 | break; | |
831 | ||
832 | case GDK_KP_F2: | |
833 | key_code = isChar ? WXK_F2 : WXK_NUMPAD_F2; | |
834 | break; | |
835 | ||
836 | case GDK_KP_F3: | |
837 | key_code = isChar ? WXK_F3 : WXK_NUMPAD_F3; | |
838 | break; | |
839 | ||
840 | case GDK_KP_F4: | |
841 | key_code = isChar ? WXK_F4 : WXK_NUMPAD_F4; | |
842 | break; | |
843 | ||
844 | case GDK_KP_Home: | |
845 | key_code = isChar ? WXK_HOME : WXK_NUMPAD_HOME; | |
846 | break; | |
847 | ||
848 | case GDK_KP_Left: | |
849 | key_code = isChar ? WXK_LEFT : WXK_NUMPAD_LEFT; | |
850 | break; | |
851 | ||
852 | case GDK_KP_Up: | |
853 | key_code = isChar ? WXK_UP : WXK_NUMPAD_UP; | |
854 | break; | |
855 | ||
856 | case GDK_KP_Right: | |
857 | key_code = isChar ? WXK_RIGHT : WXK_NUMPAD_RIGHT; | |
858 | break; | |
859 | ||
860 | case GDK_KP_Down: | |
861 | key_code = isChar ? WXK_DOWN : WXK_NUMPAD_DOWN; | |
862 | break; | |
863 | ||
864 | case GDK_KP_Prior: // == GDK_KP_Page_Up | |
865 | key_code = isChar ? WXK_PRIOR : WXK_NUMPAD_PRIOR; | |
866 | break; | |
867 | ||
868 | case GDK_KP_Next: // == GDK_KP_Page_Down | |
869 | key_code = isChar ? WXK_NEXT : WXK_NUMPAD_NEXT; | |
870 | break; | |
871 | ||
872 | case GDK_KP_End: | |
873 | key_code = isChar ? WXK_END : WXK_NUMPAD_END; | |
874 | break; | |
875 | ||
876 | case GDK_KP_Begin: | |
877 | key_code = isChar ? WXK_HOME : WXK_NUMPAD_BEGIN; | |
878 | break; | |
879 | ||
880 | case GDK_KP_Insert: | |
881 | key_code = isChar ? WXK_INSERT : WXK_NUMPAD_INSERT; | |
882 | break; | |
883 | ||
884 | case GDK_KP_Delete: | |
885 | key_code = isChar ? WXK_DELETE : WXK_NUMPAD_DELETE; | |
886 | break; | |
887 | ||
888 | case GDK_KP_Equal: | |
889 | key_code = isChar ? '=' : WXK_NUMPAD_EQUAL; | |
890 | break; | |
891 | ||
892 | case GDK_KP_Multiply: | |
893 | key_code = isChar ? '*' : WXK_NUMPAD_MULTIPLY; | |
894 | break; | |
895 | ||
896 | case GDK_KP_Add: | |
897 | key_code = isChar ? '+' : WXK_NUMPAD_ADD; | |
898 | break; | |
899 | ||
900 | case GDK_KP_Separator: | |
901 | // FIXME: what is this? | |
902 | key_code = isChar ? '.' : WXK_NUMPAD_SEPARATOR; | |
903 | break; | |
904 | ||
905 | case GDK_KP_Subtract: | |
906 | key_code = isChar ? '-' : WXK_NUMPAD_SUBTRACT; | |
907 | break; | |
908 | ||
909 | case GDK_KP_Decimal: | |
910 | key_code = isChar ? '.' : WXK_NUMPAD_DECIMAL; | |
911 | break; | |
912 | ||
913 | case GDK_KP_Divide: | |
914 | key_code = isChar ? '/' : WXK_NUMPAD_DIVIDE; | |
915 | break; | |
916 | ||
917 | ||
918 | // function keys | |
919 | case GDK_F1: | |
920 | case GDK_F2: | |
921 | case GDK_F3: | |
922 | case GDK_F4: | |
923 | case GDK_F5: | |
924 | case GDK_F6: | |
925 | case GDK_F7: | |
926 | case GDK_F8: | |
927 | case GDK_F9: | |
928 | case GDK_F10: | |
929 | case GDK_F11: | |
930 | case GDK_F12: | |
931 | key_code = WXK_F1 + keysym - GDK_F1; | |
932 | break; | |
933 | ||
934 | default: | |
935 | key_code = 0; | |
936 | } | |
937 | ||
938 | return key_code; | |
939 | } | |
940 | ||
941 | static inline bool wxIsAsciiKeysym(KeySym ks) | |
942 | { | |
943 | return ks < 256; | |
944 | } | |
945 | ||
74710601 VZ |
946 | static bool |
947 | wxTranslateGTKKeyEventToWx(wxKeyEvent& event, | |
948 | wxWindowGTK *win, | |
949 | GdkEventKey *gdk_event) | |
47d67540 | 950 | { |
1c6896d7 VZ |
951 | // VZ: it seems that GDK_KEY_RELEASE event doesn't set event->string |
952 | // but only event->keyval which is quite useless to us, so remember | |
953 | // the last character from GDK_KEY_PRESS and reuse it as last resort | |
954 | // | |
955 | // NB: should be MT-safe as we're always called from the main thread only | |
956 | static struct | |
957 | { | |
958 | KeySym keysym; | |
959 | long keycode; | |
960 | } s_lastKeyPress = { 0, 0 }; | |
961 | ||
962 | KeySym keysym = gdk_event->keyval; | |
0a62b197 | 963 | |
ada7d2c0 | 964 | wxLogTrace(TRACE_KEYS, _T("Key %s event: keysym = %ld"), |
0a62b197 VZ |
965 | event.GetEventType() == wxEVT_KEY_UP ? _T("release") |
966 | : _T("press"), | |
967 | keysym); | |
968 | ||
1c6896d7 VZ |
969 | long key_code = wxTranslateKeySymToWXKey(keysym, FALSE /* !isChar */); |
970 | ||
971 | if ( !key_code ) | |
972 | { | |
973 | // do we have the translation or is it a plain ASCII character? | |
974 | if ( (gdk_event->length == 1) || wxIsAsciiKeysym(keysym) ) | |
975 | { | |
976 | // we should use keysym if it is ASCII as X does some translations | |
977 | // like "I pressed while Control is down" => "Ctrl-I" == "TAB" | |
978 | // which we don't want here (but which we do use for OnChar()) | |
979 | if ( !wxIsAsciiKeysym(keysym) ) | |
980 | { | |
981 | keysym = (KeySym)gdk_event->string[0]; | |
982 | } | |
a2053b27 | 983 | |
1c6896d7 VZ |
984 | // we want to always get the same key code when the same key is |
985 | // pressed regardless of the state of the modifies, i.e. on a | |
986 | // standard US keyboard pressing '5' or '%' ('5' key with | |
987 | // Shift) should result in the same key code in OnKeyDown(): | |
988 | // '5' (although OnChar() will get either '5' or '%'). | |
989 | // | |
990 | // to do it we first translate keysym to keycode (== scan code) | |
991 | // and then back but always using the lower register | |
992 | Display *dpy = (Display *)wxGetDisplay(); | |
993 | KeyCode keycode = XKeysymToKeycode(dpy, keysym); | |
0a62b197 VZ |
994 | |
995 | wxLogTrace(TRACE_KEYS, _T("\t-> keycode %d"), keycode); | |
996 | ||
1c6896d7 VZ |
997 | KeySym keysymNormalized = XKeycodeToKeysym(dpy, keycode, 0); |
998 | ||
999 | // use the normalized, i.e. lower register, keysym if we've | |
1000 | // got one | |
1001 | key_code = keysymNormalized ? keysymNormalized : keysym; | |
1002 | ||
1003 | // as explained above, we want to have lower register key codes | |
1004 | // normally but for the letter keys we want to have the upper ones | |
1005 | // | |
1006 | // NB: don't use XConvertCase() here, we want to do it for letters | |
1007 | // only | |
1008 | key_code = toupper(key_code); | |
1009 | } | |
1010 | else // non ASCII key, what to do? | |
1011 | { | |
1012 | // by default, ignore it | |
1013 | key_code = 0; | |
1014 | ||
1015 | // but if we have cached information from the last KEY_PRESS | |
1016 | if ( gdk_event->type == GDK_KEY_RELEASE ) | |
1017 | { | |
1018 | // then reuse it | |
1019 | if ( keysym == s_lastKeyPress.keysym ) | |
1020 | { | |
1021 | key_code = s_lastKeyPress.keycode; | |
1022 | } | |
1023 | } | |
1024 | } | |
1025 | ||
1026 | if ( gdk_event->type == GDK_KEY_PRESS ) | |
1027 | { | |
1028 | // remember it to be reused for KEY_UP event later | |
1029 | s_lastKeyPress.keysym = keysym; | |
1030 | s_lastKeyPress.keycode = key_code; | |
1031 | } | |
1032 | } | |
1033 | ||
ada7d2c0 | 1034 | wxLogTrace(TRACE_KEYS, _T("\t-> wxKeyCode %ld"), key_code); |
c801d85f | 1035 | |
74710601 | 1036 | // sending unknown key events doesn't really make sense |
1c6896d7 | 1037 | if ( !key_code ) |
74710601 | 1038 | return FALSE; |
3d6f7261 | 1039 | |
1c6896d7 | 1040 | // now fill all the other fields |
b0e813a0 RR |
1041 | int x = 0; |
1042 | int y = 0; | |
1043 | GdkModifierType state; | |
f17393f1 VZ |
1044 | if (gdk_event->window) |
1045 | gdk_window_get_pointer(gdk_event->window, &x, &y, &state); | |
47d67540 | 1046 | |
d1367c3d | 1047 | event.SetTimestamp( gdk_event->time ); |
74710601 VZ |
1048 | event.m_shiftDown = (gdk_event->state & GDK_SHIFT_MASK) != 0; |
1049 | event.m_controlDown = (gdk_event->state & GDK_CONTROL_MASK) != 0; | |
1050 | event.m_altDown = (gdk_event->state & GDK_MOD1_MASK) != 0; | |
1051 | event.m_metaDown = (gdk_event->state & GDK_MOD2_MASK) != 0; | |
f5e27805 | 1052 | event.m_keyCode = key_code; |
b0e813a0 | 1053 | event.m_scanCode = gdk_event->keyval; |
9c7df356 VZ |
1054 | event.m_rawCode = (wxUint32) gdk_event->keyval; |
1055 | event.m_rawFlags = 0; | |
b0e813a0 RR |
1056 | event.m_x = x; |
1057 | event.m_y = y; | |
f5e27805 | 1058 | event.SetEventObject( win ); |
74710601 VZ |
1059 | |
1060 | return TRUE; | |
1061 | } | |
1062 | ||
1063 | static gint gtk_window_key_press_callback( GtkWidget *widget, | |
1064 | GdkEventKey *gdk_event, | |
1065 | wxWindow *win ) | |
1066 | { | |
1067 | DEBUG_MAIN_THREAD | |
1068 | ||
1069 | if (g_isIdle) | |
1070 | wxapp_install_idle_handler(); | |
1071 | ||
1c6896d7 VZ |
1072 | if (!win->m_hasVMT) |
1073 | return FALSE; | |
1074 | if (g_blockEventsOnDrag) | |
1075 | return FALSE; | |
74710601 | 1076 | |
1ec3a984 RR |
1077 | |
1078 | wxKeyEvent event( wxEVT_KEY_DOWN ); | |
74710601 VZ |
1079 | if ( !wxTranslateGTKKeyEventToWx(event, win, gdk_event) ) |
1080 | { | |
1c6896d7 | 1081 | // unknown key pressed, ignore (the event would be useless anyhow) |
74710601 VZ |
1082 | return FALSE; |
1083 | } | |
1084 | ||
1ec3a984 RR |
1085 | // Emit KEY_DOWN event |
1086 | bool ret = win->GetEventHandler()->ProcessEvent( event ); | |
c50f1fb9 | 1087 | |
88ac883a | 1088 | #if wxUSE_ACCEL |
f5e27805 | 1089 | if (!ret) |
47d67540 | 1090 | { |
1e6feb95 | 1091 | wxWindowGTK *ancestor = win; |
f5e27805 RR |
1092 | while (ancestor) |
1093 | { | |
1094 | int command = ancestor->GetAcceleratorTable()->GetCommand( event ); | |
1095 | if (command != -1) | |
1096 | { | |
1097 | wxCommandEvent command_event( wxEVT_COMMAND_MENU_SELECTED, command ); | |
1098 | ret = ancestor->GetEventHandler()->ProcessEvent( command_event ); | |
1099 | break; | |
1100 | } | |
f6bcfd97 | 1101 | if (ancestor->IsTopLevel()) |
b02da6b1 | 1102 | break; |
f5e27805 RR |
1103 | ancestor = ancestor->GetParent(); |
1104 | } | |
bcf1fa6b | 1105 | } |
88ac883a | 1106 | #endif // wxUSE_ACCEL |
3017f78d | 1107 | |
1ec3a984 RR |
1108 | // Only send wxEVT_CHAR event if not processed yet. Thus, ALT-x |
1109 | // will only be sent if it is not in an accelerator table. | |
2dde25b9 | 1110 | if (!ret) |
d728dd40 | 1111 | { |
1ec3a984 | 1112 | // Find key code for EVT_CHAR and EVT_CHAR_HOOK events |
1c6896d7 VZ |
1113 | KeySym keysym = gdk_event->keyval; |
1114 | long key_code = wxTranslateKeySymToWXKey(keysym, TRUE /* isChar */); | |
1115 | if ( !key_code ) | |
1116 | { | |
1117 | if ( gdk_event->length == 1 ) | |
1118 | { | |
486ac244 | 1119 | key_code = (unsigned char)gdk_event->string[0]; |
1c6896d7 | 1120 | } |
486ac244 | 1121 | else if ( wxIsAsciiKeysym(keysym) ) |
1c6896d7 VZ |
1122 | { |
1123 | // ASCII key | |
486ac244 | 1124 | key_code = (unsigned char)keysym; |
1c6896d7 VZ |
1125 | } |
1126 | } | |
f17393f1 VZ |
1127 | |
1128 | if ( key_code ) | |
1129 | { | |
74710601 | 1130 | wxLogTrace(TRACE_KEYS, _T("Char event: %ld"), key_code); |
f17393f1 | 1131 | |
f17393f1 | 1132 | event.m_keyCode = key_code; |
1ec3a984 RR |
1133 | |
1134 | // Implement OnCharHook by checking ancesteror top level windows | |
1135 | wxWindow *parent = win; | |
1136 | while (parent && !parent->IsTopLevel()) | |
1137 | parent = parent->GetParent(); | |
1138 | if (parent) | |
1139 | { | |
1140 | event.SetEventType( wxEVT_CHAR_HOOK ); | |
1141 | ret = parent->GetEventHandler()->ProcessEvent( event ); | |
1142 | } | |
f17393f1 | 1143 | |
1ec3a984 RR |
1144 | if (!ret) |
1145 | { | |
1146 | event.SetEventType(wxEVT_CHAR); | |
1147 | ret = win->GetEventHandler()->ProcessEvent( event ); | |
1148 | } | |
f17393f1 | 1149 | } |
d728dd40 KB |
1150 | } |
1151 | ||
1ec3a984 | 1152 | // win is a control: tab can be propagated up |
f17393f1 | 1153 | if ( !ret && |
5664fc32 | 1154 | ((gdk_event->keyval == GDK_Tab) || (gdk_event->keyval == GDK_ISO_Left_Tab)) && |
f6bcfd97 BP |
1155 | // VZ: testing for wxTE_PROCESS_TAB shouldn't be done here the control may |
1156 | // have this style, yet choose not to process this particular TAB in which | |
1157 | // case TAB must still work as a navigational character | |
1158 | #if 0 | |
f17393f1 | 1159 | !win->HasFlag(wxTE_PROCESS_TAB) && |
f6bcfd97 | 1160 | #endif // 0 |
f17393f1 | 1161 | win->GetParent() && (win->GetParent()->HasFlag( wxTAB_TRAVERSAL)) ) |
b292e2f5 RR |
1162 | { |
1163 | wxNavigationKeyEvent new_event; | |
8253c7fd | 1164 | new_event.SetEventObject( win->GetParent() ); |
1ec3a984 | 1165 | // GDK reports GDK_ISO_Left_Tab for SHIFT-TAB |
5664fc32 | 1166 | new_event.SetDirection( (gdk_event->keyval == GDK_Tab) ); |
1ec3a984 | 1167 | // CTRL-TAB changes the (parent) window, i.e. switch notebook page |
b98d804b | 1168 | new_event.SetWindowChange( (gdk_event->state & GDK_CONTROL_MASK) ); |
b292e2f5 | 1169 | new_event.SetCurrentFocus( win ); |
8253c7fd | 1170 | ret = win->GetParent()->GetEventHandler()->ProcessEvent( new_event ); |
b292e2f5 | 1171 | } |
ff8bfdbb | 1172 | |
1ec3a984 | 1173 | // generate wxID_CANCEL if <esc> has been pressed (typically in dialogs) |
f17393f1 | 1174 | if ( !ret && |
b98d804b RR |
1175 | (gdk_event->keyval == GDK_Escape) ) |
1176 | { | |
1177 | wxCommandEvent new_event(wxEVT_COMMAND_BUTTON_CLICKED,wxID_CANCEL); | |
1178 | new_event.SetEventObject( win ); | |
1179 | ret = win->GetEventHandler()->ProcessEvent( new_event ); | |
1180 | } | |
c50f1fb9 | 1181 | |
1ec3a984 RR |
1182 | // Doesn't work. |
1183 | #if 0 | |
1184 | // Pressing F10 will activate the menu bar of the top frame | |
801aa178 RR |
1185 | if ( (!ret) && |
1186 | (gdk_event->keyval == GDK_F10) ) | |
1187 | { | |
1e6feb95 | 1188 | wxWindowGTK *ancestor = win; |
801aa178 RR |
1189 | while (ancestor) |
1190 | { | |
1191 | if (wxIsKindOf(ancestor,wxFrame)) | |
c50f1fb9 VZ |
1192 | { |
1193 | wxFrame *frame = (wxFrame*) ancestor; | |
801aa178 | 1194 | wxMenuBar *menubar = frame->GetMenuBar(); |
c50f1fb9 VZ |
1195 | if (menubar) |
1196 | { | |
801aa178 | 1197 | wxNode *node = menubar->GetMenus().First(); |
c50f1fb9 VZ |
1198 | if (node) |
1199 | { | |
3017f78d RR |
1200 | wxMenu *firstMenu = (wxMenu*) node->Data(); |
1201 | gtk_menu_item_select( GTK_MENU_ITEM(firstMenu->m_owner) ); | |
1202 | ret = TRUE; | |
c50f1fb9 VZ |
1203 | break; |
1204 | } | |
1205 | } | |
1206 | } | |
801aa178 RR |
1207 | ancestor = ancestor->GetParent(); |
1208 | } | |
1209 | } | |
f17393f1 | 1210 | #endif // 0 |
ca298c88 | 1211 | |
f5e27805 RR |
1212 | if (ret) |
1213 | { | |
b292e2f5 | 1214 | gtk_signal_emit_stop_by_name( GTK_OBJECT(widget), "key_press_event" ); |
f03fc89f | 1215 | return TRUE; |
f5e27805 | 1216 | } |
1ec3a984 | 1217 | |
034be888 | 1218 | return FALSE; |
362c6693 | 1219 | } |
c801d85f | 1220 | |
b666df2c RR |
1221 | //----------------------------------------------------------------------------- |
1222 | // "key_release_event" from any window | |
1223 | //----------------------------------------------------------------------------- | |
1224 | ||
74710601 VZ |
1225 | static gint gtk_window_key_release_callback( GtkWidget *widget, |
1226 | GdkEventKey *gdk_event, | |
1227 | wxWindowGTK *win ) | |
b666df2c | 1228 | { |
3ac8d3bc RR |
1229 | DEBUG_MAIN_THREAD |
1230 | ||
c50f1fb9 | 1231 | if (g_isIdle) |
a2053b27 RR |
1232 | wxapp_install_idle_handler(); |
1233 | ||
74710601 VZ |
1234 | if (!win->m_hasVMT) |
1235 | return FALSE; | |
b666df2c | 1236 | |
74710601 VZ |
1237 | if (g_blockEventsOnDrag) |
1238 | return FALSE; | |
b666df2c RR |
1239 | |
1240 | wxKeyEvent event( wxEVT_KEY_UP ); | |
74710601 | 1241 | if ( !wxTranslateGTKKeyEventToWx(event, win, gdk_event) ) |
b666df2c | 1242 | { |
74710601 VZ |
1243 | // unknown key pressed, ignore (the event would be useless anyhow |
1244 | return FALSE; | |
b666df2c RR |
1245 | } |
1246 | ||
74710601 VZ |
1247 | if ( !win->GetEventHandler()->ProcessEvent( event ) ) |
1248 | return FALSE; | |
1249 | ||
1250 | gtk_signal_emit_stop_by_name( GTK_OBJECT(widget), "key_release_event" ); | |
1251 | return TRUE; | |
b666df2c RR |
1252 | } |
1253 | ||
c5f9d156 VS |
1254 | // ============================================================================ |
1255 | // the mouse events | |
1256 | // ============================================================================ | |
1257 | ||
d1f2ac45 VZ |
1258 | // ---------------------------------------------------------------------------- |
1259 | // mouse event processing helpers | |
1260 | // ---------------------------------------------------------------------------- | |
1261 | ||
c5f9d156 | 1262 | // init wxMouseEvent with the info from gdk_event |
edc1d330 VZ |
1263 | // |
1264 | // NB: this has to be a macro as gdk_event type is different for different | |
1265 | // events we're used with | |
1266 | #define InitMouseEvent(/* wxWindowGTK * */ win, \ | |
1267 | /* wxMouseEvent& */ event, \ | |
1268 | /* GdkEventXXX * */ gdk_event) \ | |
1269 | { \ | |
1270 | event.SetTimestamp( gdk_event->time ); \ | |
1271 | event.m_shiftDown = (gdk_event->state & GDK_SHIFT_MASK); \ | |
1272 | event.m_controlDown = (gdk_event->state & GDK_CONTROL_MASK); \ | |
1273 | event.m_altDown = (gdk_event->state & GDK_MOD1_MASK); \ | |
1274 | event.m_metaDown = (gdk_event->state & GDK_MOD2_MASK); \ | |
1275 | event.m_leftDown = (gdk_event->state & GDK_BUTTON1_MASK); \ | |
1276 | event.m_middleDown = (gdk_event->state & GDK_BUTTON2_MASK); \ | |
1277 | event.m_rightDown = (gdk_event->state & GDK_BUTTON3_MASK); \ | |
1278 | \ | |
1279 | wxPoint pt = win->GetClientAreaOrigin(); \ | |
1280 | event.m_x = (wxCoord)gdk_event->x - pt.x; \ | |
1281 | event.m_y = (wxCoord)gdk_event->y - pt.y; \ | |
1282 | \ | |
1283 | event.SetEventObject( win ); \ | |
1284 | event.SetId( win->GetId() ); \ | |
1285 | event.SetTimestamp( gdk_event->time ); \ | |
1286 | } \ | |
c5f9d156 | 1287 | |
2daa0ce9 VZ |
1288 | static void AdjustEventButtonState(wxMouseEvent& event) |
1289 | { | |
1290 | // GDK reports the old state of the button for a button press event, but | |
1291 | // for compatibility with MSW and common sense we want m_leftDown be TRUE | |
1292 | // for a LEFT_DOWN event, not FALSE, so we will invert | |
1293 | // left/right/middleDown for the corresponding click events | |
1e6feb95 | 1294 | |
1a8caf94 RR |
1295 | if ((event.GetEventType() == wxEVT_LEFT_DOWN) || |
1296 | (event.GetEventType() == wxEVT_LEFT_DCLICK) || | |
1297 | (event.GetEventType() == wxEVT_LEFT_UP)) | |
1298 | { | |
1299 | event.m_leftDown = !event.m_leftDown; | |
1300 | return; | |
1301 | } | |
1302 | ||
1303 | if ((event.GetEventType() == wxEVT_MIDDLE_DOWN) || | |
1304 | (event.GetEventType() == wxEVT_MIDDLE_DCLICK) || | |
1305 | (event.GetEventType() == wxEVT_MIDDLE_UP)) | |
2daa0ce9 | 1306 | { |
1a8caf94 RR |
1307 | event.m_middleDown = !event.m_middleDown; |
1308 | return; | |
1309 | } | |
1310 | ||
1311 | if ((event.GetEventType() == wxEVT_RIGHT_DOWN) || | |
1312 | (event.GetEventType() == wxEVT_RIGHT_DCLICK) || | |
1313 | (event.GetEventType() == wxEVT_RIGHT_UP)) | |
1314 | { | |
1315 | event.m_rightDown = !event.m_rightDown; | |
1316 | return; | |
2daa0ce9 VZ |
1317 | } |
1318 | } | |
1319 | ||
d1f2ac45 VZ |
1320 | // find the window to send the mouse event too |
1321 | static | |
1322 | wxWindowGTK *FindWindowForMouseEvent(wxWindowGTK *win, wxCoord& x, wxCoord& y) | |
1323 | { | |
7d4909b2 RR |
1324 | wxCoord xx = x; |
1325 | wxCoord yy = y; | |
1326 | ||
d1f2ac45 VZ |
1327 | if (win->m_wxwindow) |
1328 | { | |
1329 | GtkPizza *pizza = GTK_PIZZA(win->m_wxwindow); | |
7d4909b2 RR |
1330 | xx += pizza->xoffset; |
1331 | yy += pizza->yoffset; | |
d1f2ac45 VZ |
1332 | } |
1333 | ||
1334 | wxNode *node = win->GetChildren().First(); | |
1335 | while (node) | |
1336 | { | |
1337 | wxWindowGTK *child = (wxWindowGTK*)node->Data(); | |
1338 | ||
1339 | node = node->Next(); | |
1340 | if (!child->IsShown()) | |
1341 | continue; | |
1342 | ||
1343 | if (child->IsTransparentForMouse()) | |
1344 | { | |
1345 | // wxStaticBox is transparent in the box itself | |
1346 | int xx1 = child->m_x; | |
1347 | int yy1 = child->m_y; | |
1348 | int xx2 = child->m_x + child->m_width; | |
1349 | int yy2 = child->m_x + child->m_height; | |
1350 | ||
1351 | // left | |
7d4909b2 | 1352 | if (((xx >= xx1) && (xx <= xx1+10) && (yy >= yy1) && (yy <= yy2)) || |
d1f2ac45 | 1353 | // right |
7d4909b2 | 1354 | ((xx >= xx2-10) && (xx <= xx2) && (yy >= yy1) && (yy <= yy2)) || |
d1f2ac45 | 1355 | // top |
7d4909b2 | 1356 | ((xx >= xx1) && (xx <= xx2) && (yy >= yy1) && (yy <= yy1+10)) || |
d1f2ac45 | 1357 | // bottom |
7d4909b2 | 1358 | ((xx >= xx1) && (xx <= xx2) && (yy >= yy2-1) && (yy <= yy2))) |
d1f2ac45 VZ |
1359 | { |
1360 | win = child; | |
1361 | x -= child->m_x; | |
1362 | y -= child->m_y; | |
1363 | break; | |
1364 | } | |
1365 | ||
1366 | } | |
1367 | else | |
1368 | { | |
1369 | if ((child->m_wxwindow == (GtkWidget*) NULL) && | |
7d4909b2 RR |
1370 | (child->m_x <= xx) && |
1371 | (child->m_y <= yy) && | |
af3653dd RR |
1372 | (child->m_x+child->m_width >= xx) && |
1373 | (child->m_y+child->m_height >= yy)) | |
d1f2ac45 VZ |
1374 | { |
1375 | win = child; | |
1376 | x -= child->m_x; | |
1377 | y -= child->m_y; | |
1378 | break; | |
1379 | } | |
1380 | } | |
1381 | } | |
1382 | ||
1383 | return win; | |
1384 | } | |
1385 | ||
c801d85f | 1386 | //----------------------------------------------------------------------------- |
2f2aa628 RR |
1387 | // "button_press_event" |
1388 | //----------------------------------------------------------------------------- | |
c801d85f | 1389 | |
d1f2ac45 VZ |
1390 | static gint gtk_window_button_press_callback( GtkWidget *widget, |
1391 | GdkEventButton *gdk_event, | |
1392 | wxWindowGTK *win ) | |
903f689b | 1393 | { |
3ac8d3bc RR |
1394 | DEBUG_MAIN_THREAD |
1395 | ||
c50f1fb9 | 1396 | if (g_isIdle) |
a2053b27 RR |
1397 | wxapp_install_idle_handler(); |
1398 | ||
1399 | /* | |
223d09f6 | 1400 | wxPrintf( wxT("1) OnButtonPress from ") ); |
a2053b27 RR |
1401 | if (win->GetClassInfo() && win->GetClassInfo()->GetClassName()) |
1402 | wxPrintf( win->GetClassInfo()->GetClassName() ); | |
223d09f6 | 1403 | wxPrintf( wxT(".\n") ); |
a2053b27 | 1404 | */ |
a2053b27 | 1405 | if (!win->m_hasVMT) return FALSE; |
f5e27805 | 1406 | if (g_blockEventsOnDrag) return TRUE; |
76ed8f8d | 1407 | if (g_blockEventsOnScroll) return TRUE; |
c801d85f | 1408 | |
034be888 RR |
1409 | if (!win->IsOwnGtkWindow( gdk_event->window )) return FALSE; |
1410 | ||
afbe906a | 1411 | if (win->m_wxwindow && (g_focusWindow != win) && win->AcceptsFocus()) |
c801d85f | 1412 | { |
afbe906a | 1413 | gtk_widget_grab_focus( win->m_wxwindow ); |
c801d85f | 1414 | /* |
afbe906a RR |
1415 | wxPrintf( wxT("GrabFocus from ") ); |
1416 | if (win->GetClassInfo() && win->GetClassInfo()->GetClassName()) | |
1417 | wxPrintf( win->GetClassInfo()->GetClassName() ); | |
1418 | wxPrintf( wxT(".\n") ); | |
c801d85f | 1419 | */ |
362c6693 | 1420 | } |
47d67540 | 1421 | |
2daa0ce9 | 1422 | wxEventType event_type = wxEVT_NULL; |
47d67540 | 1423 | |
f5e27805 | 1424 | if (gdk_event->button == 1) |
c801d85f | 1425 | { |
f5e27805 RR |
1426 | switch (gdk_event->type) |
1427 | { | |
1428 | case GDK_BUTTON_PRESS: event_type = wxEVT_LEFT_DOWN; break; | |
1429 | case GDK_2BUTTON_PRESS: event_type = wxEVT_LEFT_DCLICK; break; | |
1430 | default: break; | |
1431 | } | |
362c6693 | 1432 | } |
f5e27805 | 1433 | else if (gdk_event->button == 2) |
c801d85f | 1434 | { |
f5e27805 RR |
1435 | switch (gdk_event->type) |
1436 | { | |
1437 | case GDK_BUTTON_PRESS: event_type = wxEVT_MIDDLE_DOWN; break; | |
1438 | case GDK_2BUTTON_PRESS: event_type = wxEVT_MIDDLE_DCLICK; break; | |
1439 | default: break; | |
1440 | } | |
362c6693 | 1441 | } |
f5e27805 | 1442 | else if (gdk_event->button == 3) |
c801d85f | 1443 | { |
f5e27805 RR |
1444 | switch (gdk_event->type) |
1445 | { | |
1446 | case GDK_BUTTON_PRESS: event_type = wxEVT_RIGHT_DOWN; break; | |
1447 | case GDK_2BUTTON_PRESS: event_type = wxEVT_RIGHT_DCLICK; break; | |
1448 | default: break; | |
1449 | } | |
362c6693 | 1450 | } |
47d67540 | 1451 | |
2daa0ce9 VZ |
1452 | if ( event_type == wxEVT_NULL ) |
1453 | { | |
1454 | // unknown mouse button or click type | |
1455 | return FALSE; | |
1456 | } | |
1457 | ||
f5e27805 | 1458 | wxMouseEvent event( event_type ); |
c5f9d156 | 1459 | InitMouseEvent( win, event, gdk_event ); |
47d67540 | 1460 | |
2daa0ce9 | 1461 | AdjustEventButtonState(event); |
94633ad9 | 1462 | |
3ae4c570 VZ |
1463 | // wxListBox actually get mouse events from the item, so we need to give it |
1464 | // a chance to correct this | |
1465 | win->FixUpMouseEvent(widget, event.m_x, event.m_y); | |
2daa0ce9 | 1466 | |
d1f2ac45 VZ |
1467 | // find the correct window to send the event too: it may be a different one |
1468 | // from the one which got it at GTK+ level because some control don't have | |
1469 | // their own X window and thus cannot get any events. | |
1470 | if ( !g_captureWindow ) | |
1471 | win = FindWindowForMouseEvent(win, event.m_x, event.m_y); | |
ff8bfdbb | 1472 | |
f5e27805 | 1473 | gs_timeLastClick = gdk_event->time; |
47d67540 | 1474 | |
2f073eb2 RR |
1475 | /* |
1476 | wxPrintf( wxT("2) OnButtonPress from ") ); | |
1477 | if (win->GetClassInfo() && win->GetClassInfo()->GetClassName()) | |
1478 | wxPrintf( win->GetClassInfo()->GetClassName() ); | |
1479 | wxPrintf( wxT(".\n") ); | |
1480 | */ | |
1481 | ||
f5e27805 | 1482 | if (win->GetEventHandler()->ProcessEvent( event )) |
034be888 | 1483 | { |
f5e27805 | 1484 | gtk_signal_emit_stop_by_name( GTK_OBJECT(widget), "button_press_event" ); |
f03fc89f | 1485 | return TRUE; |
034be888 | 1486 | } |
47d67540 | 1487 | |
034be888 | 1488 | return FALSE; |
362c6693 | 1489 | } |
c801d85f KB |
1490 | |
1491 | //----------------------------------------------------------------------------- | |
97b3455a | 1492 | // "button_release_event" |
2f2aa628 | 1493 | //----------------------------------------------------------------------------- |
c801d85f | 1494 | |
1e6feb95 | 1495 | static gint gtk_window_button_release_callback( GtkWidget *widget, GdkEventButton *gdk_event, wxWindowGTK *win ) |
47d67540 | 1496 | { |
3ac8d3bc RR |
1497 | DEBUG_MAIN_THREAD |
1498 | ||
c50f1fb9 | 1499 | if (g_isIdle) |
a2053b27 RR |
1500 | wxapp_install_idle_handler(); |
1501 | ||
1502 | if (!win->m_hasVMT) return FALSE; | |
034be888 RR |
1503 | if (g_blockEventsOnDrag) return FALSE; |
1504 | if (g_blockEventsOnScroll) return FALSE; | |
c801d85f | 1505 | |
034be888 | 1506 | if (!win->IsOwnGtkWindow( gdk_event->window )) return FALSE; |
47d67540 | 1507 | |
c801d85f | 1508 | /* |
f5e27805 RR |
1509 | printf( "OnButtonRelease from " ); |
1510 | if (win->GetClassInfo() && win->GetClassInfo()->GetClassName()) | |
1511 | printf( win->GetClassInfo()->GetClassName() ); | |
1512 | printf( ".\n" ); | |
c801d85f | 1513 | */ |
47d67540 | 1514 | |
f5e27805 | 1515 | wxEventType event_type = wxEVT_NULL; |
47d67540 | 1516 | |
f5e27805 RR |
1517 | switch (gdk_event->button) |
1518 | { | |
1519 | case 1: event_type = wxEVT_LEFT_UP; break; | |
1520 | case 2: event_type = wxEVT_MIDDLE_UP; break; | |
1521 | case 3: event_type = wxEVT_RIGHT_UP; break; | |
2daa0ce9 | 1522 | default: return FALSE; |
f5e27805 | 1523 | } |
47d67540 | 1524 | |
f5e27805 | 1525 | wxMouseEvent event( event_type ); |
c5f9d156 | 1526 | InitMouseEvent( win, event, gdk_event ); |
f5e27805 | 1527 | |
2daa0ce9 VZ |
1528 | AdjustEventButtonState(event); |
1529 | ||
3ae4c570 VZ |
1530 | // same wxListBox hack as above |
1531 | win->FixUpMouseEvent(widget, event.m_x, event.m_y); | |
e2762ff0 | 1532 | |
d1f2ac45 VZ |
1533 | if ( !g_captureWindow ) |
1534 | win = FindWindowForMouseEvent(win, event.m_x, event.m_y); | |
47d67540 | 1535 | |
f5e27805 | 1536 | if (win->GetEventHandler()->ProcessEvent( event )) |
034be888 | 1537 | { |
f5e27805 | 1538 | gtk_signal_emit_stop_by_name( GTK_OBJECT(widget), "button_release_event" ); |
f03fc89f | 1539 | return TRUE; |
034be888 | 1540 | } |
47d67540 | 1541 | |
034be888 | 1542 | return FALSE; |
362c6693 | 1543 | } |
c801d85f KB |
1544 | |
1545 | //----------------------------------------------------------------------------- | |
2f2aa628 RR |
1546 | // "motion_notify_event" |
1547 | //----------------------------------------------------------------------------- | |
c801d85f | 1548 | |
1e6feb95 VZ |
1549 | static gint gtk_window_motion_notify_callback( GtkWidget *widget, |
1550 | GdkEventMotion *gdk_event, | |
1551 | wxWindowGTK *win ) | |
47d67540 | 1552 | { |
3ac8d3bc RR |
1553 | DEBUG_MAIN_THREAD |
1554 | ||
c50f1fb9 | 1555 | if (g_isIdle) |
a2053b27 RR |
1556 | wxapp_install_idle_handler(); |
1557 | ||
1558 | if (!win->m_hasVMT) return FALSE; | |
034be888 RR |
1559 | if (g_blockEventsOnDrag) return FALSE; |
1560 | if (g_blockEventsOnScroll) return FALSE; | |
148cd9b6 | 1561 | |
034be888 RR |
1562 | if (!win->IsOwnGtkWindow( gdk_event->window )) return FALSE; |
1563 | ||
ff8bfdbb | 1564 | if (gdk_event->is_hint) |
aae24d21 | 1565 | { |
f7a11f8c RR |
1566 | int x = 0; |
1567 | int y = 0; | |
1568 | GdkModifierType state; | |
1569 | gdk_window_get_pointer(gdk_event->window, &x, &y, &state); | |
1570 | gdk_event->x = x; | |
1571 | gdk_event->y = y; | |
aae24d21 | 1572 | } |
ff8bfdbb | 1573 | |
c801d85f | 1574 | /* |
e380f72b RR |
1575 | printf( "OnMotion from " ); |
1576 | if (win->GetClassInfo() && win->GetClassInfo()->GetClassName()) | |
1577 | printf( win->GetClassInfo()->GetClassName() ); | |
1578 | printf( ".\n" ); | |
aae24d21 | 1579 | */ |
47d67540 | 1580 | |
e380f72b | 1581 | wxMouseEvent event( wxEVT_MOTION ); |
c5f9d156 | 1582 | InitMouseEvent(win, event, gdk_event); |
e380f72b | 1583 | |
1e6feb95 | 1584 | if ( g_captureWindow ) |
2f2aa628 | 1585 | { |
1e6feb95 VZ |
1586 | // synthetize a mouse enter or leave event if needed |
1587 | GdkWindow *winUnderMouse = gdk_window_at_pointer(NULL, NULL); | |
1588 | bool hasMouse = winUnderMouse == gdk_event->window; | |
1589 | if ( hasMouse != g_captureWindowHasMouse ) | |
1590 | { | |
1591 | // the mouse changed window | |
1592 | g_captureWindowHasMouse = hasMouse; | |
1593 | ||
1594 | wxMouseEvent event(g_captureWindowHasMouse ? wxEVT_ENTER_WINDOW | |
1595 | : wxEVT_LEAVE_WINDOW); | |
c5f9d156 | 1596 | InitMouseEvent(win, event, gdk_event); |
1e6feb95 VZ |
1597 | event.SetEventObject(win); |
1598 | win->GetEventHandler()->ProcessEvent(event); | |
1599 | } | |
1600 | } | |
1601 | else // no capture | |
1602 | { | |
d1f2ac45 | 1603 | win = FindWindowForMouseEvent(win, event.m_x, event.m_y); |
2f2aa628 | 1604 | } |
47d67540 | 1605 | |
e380f72b | 1606 | if (win->GetEventHandler()->ProcessEvent( event )) |
034be888 | 1607 | { |
e380f72b | 1608 | gtk_signal_emit_stop_by_name( GTK_OBJECT(widget), "motion_notify_event" ); |
f03fc89f | 1609 | return TRUE; |
034be888 | 1610 | } |
47d67540 | 1611 | |
034be888 | 1612 | return FALSE; |
362c6693 | 1613 | } |
c801d85f KB |
1614 | |
1615 | //----------------------------------------------------------------------------- | |
2f2aa628 RR |
1616 | // "focus_in_event" |
1617 | //----------------------------------------------------------------------------- | |
c801d85f | 1618 | |
6aeb6f2a VZ |
1619 | // send the wxChildFocusEvent and wxFocusEvent, common code of |
1620 | // gtk_window_focus_in_callback() and SetFocus() | |
1621 | static bool DoSendFocusEvents(wxWindow *win) | |
1622 | { | |
1623 | // Notify the parent keeping track of focus for the kbd navigation | |
1624 | // purposes that we got it. | |
1625 | wxChildFocusEvent eventChildFocus(win); | |
1626 | (void)win->GetEventHandler()->ProcessEvent(eventChildFocus); | |
1627 | ||
1628 | wxFocusEvent eventFocus(wxEVT_SET_FOCUS, win->GetId()); | |
1629 | eventFocus.SetEventObject(win); | |
1630 | ||
1631 | return win->GetEventHandler()->ProcessEvent(eventFocus); | |
1632 | } | |
1633 | ||
1e6feb95 VZ |
1634 | static gint gtk_window_focus_in_callback( GtkWidget *widget, |
1635 | GdkEvent *WXUNUSED(event), | |
1636 | wxWindow *win ) | |
c801d85f | 1637 | { |
3ac8d3bc RR |
1638 | DEBUG_MAIN_THREAD |
1639 | ||
c50f1fb9 | 1640 | if (g_isIdle) |
a2053b27 RR |
1641 | wxapp_install_idle_handler(); |
1642 | ||
1643 | if (!win->m_hasVMT) return FALSE; | |
034be888 | 1644 | if (g_blockEventsOnDrag) return FALSE; |
ff8bfdbb | 1645 | |
148cd9b6 VZ |
1646 | switch ( g_sendActivateEvent ) |
1647 | { | |
1648 | case -1: | |
76fcf0f2 | 1649 | // we've got focus from outside, synthetize wxActivateEvent |
148cd9b6 VZ |
1650 | g_sendActivateEvent = 1; |
1651 | break; | |
1652 | ||
1653 | case 0: | |
1654 | // another our window just lost focus, it was already ours before | |
1655 | // - don't send any wxActivateEvent | |
1656 | g_sendActivateEvent = -1; | |
1657 | break; | |
1658 | } | |
1659 | ||
1e6feb95 | 1660 | g_focusWindowLast = |
b292e2f5 | 1661 | g_focusWindow = win; |
ff8bfdbb | 1662 | |
6cad4f1b VZ |
1663 | wxLogTrace(TRACE_FOCUS, |
1664 | _T("%s: focus in"), win->GetName().c_str()); | |
47d67540 | 1665 | |
b79395c5 RR |
1666 | #ifdef HAVE_XIM |
1667 | if (win->m_ic) | |
1668 | gdk_im_begin(win->m_ic, win->m_wxwindow->window); | |
1669 | #endif | |
1670 | ||
1e6feb95 | 1671 | #if wxUSE_CARET |
f6bcfd97 BP |
1672 | // caret needs to be informed about focus change |
1673 | wxCaret *caret = win->GetCaret(); | |
1674 | if ( caret ) | |
1675 | { | |
1676 | caret->OnSetFocus(); | |
1677 | } | |
1678 | #endif // wxUSE_CARET | |
1679 | ||
d7fa7eaa RR |
1680 | g_activeFrameLostFocus = FALSE; |
1681 | ||
e8c12a53 VS |
1682 | wxWindowGTK *active = wxGetTopLevelParent(win); |
1683 | if ( active != g_activeFrame ) | |
942bef71 | 1684 | { |
e8c12a53 VS |
1685 | if ( g_activeFrame ) |
1686 | { | |
45eb5249 | 1687 | wxLogTrace(wxT("activate"), wxT("Deactivating frame %p (from focus_in)"), g_activeFrame); |
e8c12a53 VS |
1688 | wxActivateEvent event(wxEVT_ACTIVATE, FALSE, g_activeFrame->GetId()); |
1689 | event.SetEventObject(g_activeFrame); | |
1690 | g_activeFrame->GetEventHandler()->ProcessEvent(event); | |
1691 | } | |
47d67540 | 1692 | |
45eb5249 | 1693 | wxLogTrace(wxT("activate"), wxT("Activating frame %p (from focus_in)"), active); |
e8c12a53 VS |
1694 | g_activeFrame = active; |
1695 | wxActivateEvent event(wxEVT_ACTIVATE, TRUE, g_activeFrame->GetId()); | |
1696 | event.SetEventObject(g_activeFrame); | |
1697 | g_activeFrame->GetEventHandler()->ProcessEvent(event); | |
d7fa7eaa RR |
1698 | |
1699 | // Don't send focus events in addition to activate | |
1700 | // if (win == g_activeFrame) | |
1701 | // return TRUE; | |
942bef71 | 1702 | } |
e8c12a53 | 1703 | |
6cad4f1b VZ |
1704 | // does the window itself think that it has the focus? |
1705 | if ( !win->m_hasFocus ) | |
5cd09f0b | 1706 | { |
6cad4f1b VZ |
1707 | // not yet, notify it |
1708 | win->m_hasFocus = TRUE; | |
1709 | ||
1710 | if ( DoSendFocusEvents(win) ) | |
1711 | { | |
1712 | gtk_signal_emit_stop_by_name( GTK_OBJECT(widget), "focus_in_event" ); | |
1713 | return TRUE; | |
1714 | } | |
034be888 | 1715 | } |
ca298c88 | 1716 | |
034be888 | 1717 | return FALSE; |
362c6693 | 1718 | } |
c801d85f KB |
1719 | |
1720 | //----------------------------------------------------------------------------- | |
2f2aa628 RR |
1721 | // "focus_out_event" |
1722 | //----------------------------------------------------------------------------- | |
c801d85f | 1723 | |
afbe906a | 1724 | static gint gtk_window_focus_out_callback( GtkWidget *widget, GdkEventFocus *gdk_event, wxWindowGTK *win ) |
c801d85f | 1725 | { |
3ac8d3bc RR |
1726 | DEBUG_MAIN_THREAD |
1727 | ||
c50f1fb9 | 1728 | if (g_isIdle) |
a2053b27 RR |
1729 | wxapp_install_idle_handler(); |
1730 | ||
1731 | if (!win->m_hasVMT) return FALSE; | |
034be888 | 1732 | if (g_blockEventsOnDrag) return FALSE; |
ca298c88 | 1733 | |
6cad4f1b VZ |
1734 | wxLogTrace( TRACE_FOCUS, |
1735 | _T("%s: focus out"), win->GetName().c_str() ); | |
b231914f | 1736 | |
45eb5249 VS |
1737 | if ( !g_activeFrameLostFocus && g_activeFrame ) |
1738 | { | |
c0ad3d42 VZ |
1739 | // VZ: commenting this out because it does happen (although not easy |
1740 | // to reproduce, I only see it when using wxMiniFrame and not | |
1741 | // always) and makes using Mahogany quite annoying | |
1742 | #if 0 | |
1743 | wxASSERT_MSG( wxGetTopLevelParent(win) == g_activeFrame, | |
63fd5f0b | 1744 | wxT("unfocusing window that hasn't gained focus properly") ); |
c0ad3d42 VZ |
1745 | #endif // 0 |
1746 | ||
45eb5249 VS |
1747 | g_activeFrameLostFocus = TRUE; |
1748 | } | |
1749 | ||
148cd9b6 VZ |
1750 | // if the focus goes out of our app alltogether, OnIdle() will send |
1751 | // wxActivateEvent, otherwise gtk_window_focus_in_callback() will reset | |
1752 | // g_sendActivateEvent to -1 | |
1753 | g_sendActivateEvent = 0; | |
1754 | ||
3379ed37 | 1755 | wxWindowGTK *winFocus = wxFindFocusedChild(win); |
f6bcfd97 BP |
1756 | if ( winFocus ) |
1757 | win = winFocus; | |
1758 | ||
1e6feb95 | 1759 | g_focusWindow = (wxWindowGTK *)NULL; |
148cd9b6 | 1760 | |
b79395c5 RR |
1761 | #ifdef HAVE_XIM |
1762 | if (win->m_ic) | |
1763 | gdk_im_end(); | |
1764 | #endif | |
1765 | ||
1e6feb95 | 1766 | #if wxUSE_CARET |
f6bcfd97 BP |
1767 | // caret needs to be informed about focus change |
1768 | wxCaret *caret = win->GetCaret(); | |
1769 | if ( caret ) | |
1770 | { | |
1771 | caret->OnKillFocus(); | |
1772 | } | |
1773 | #endif // wxUSE_CARET | |
1774 | ||
6cad4f1b VZ |
1775 | // don't send the window a kill focus event if it thinks that it doesn't |
1776 | // have focus already | |
1777 | if ( win->m_hasFocus ) | |
5cd09f0b | 1778 | { |
6cad4f1b VZ |
1779 | win->m_hasFocus = FALSE; |
1780 | ||
1781 | wxFocusEvent event( wxEVT_KILL_FOCUS, win->GetId() ); | |
1782 | event.SetEventObject( win ); | |
1783 | ||
1784 | if (win->GetEventHandler()->ProcessEvent( event )) | |
1785 | { | |
1786 | gtk_signal_emit_stop_by_name( GTK_OBJECT(widget), "focus_out_event" ); | |
1787 | return TRUE; | |
1788 | } | |
034be888 | 1789 | } |
ca298c88 | 1790 | |
034be888 | 1791 | return FALSE; |
362c6693 | 1792 | } |
c801d85f | 1793 | |
b4071e91 RR |
1794 | //----------------------------------------------------------------------------- |
1795 | // "enter_notify_event" | |
1796 | //----------------------------------------------------------------------------- | |
1797 | ||
edc1d330 VZ |
1798 | static |
1799 | gint gtk_window_enter_callback( GtkWidget *widget, | |
1800 | GdkEventCrossing *gdk_event, | |
1801 | wxWindowGTK *win ) | |
b4071e91 | 1802 | { |
3ac8d3bc RR |
1803 | DEBUG_MAIN_THREAD |
1804 | ||
c50f1fb9 | 1805 | if (g_isIdle) |
a2053b27 | 1806 | wxapp_install_idle_handler(); |
ca298c88 | 1807 | |
a2053b27 RR |
1808 | if (!win->m_hasVMT) return FALSE; |
1809 | if (g_blockEventsOnDrag) return FALSE; | |
47d67540 | 1810 | |
a2053b27 | 1811 | if (!win->IsOwnGtkWindow( gdk_event->window )) return FALSE; |
b292e2f5 | 1812 | |
4a33eba6 RR |
1813 | int x = 0; |
1814 | int y = 0; | |
1815 | GdkModifierType state = (GdkModifierType)0; | |
ff8bfdbb | 1816 | |
a2053b27 | 1817 | gdk_window_get_pointer( widget->window, &x, &y, &state ); |
ff8bfdbb | 1818 | |
edc1d330 | 1819 | wxMouseEvent event( wxEVT_ENTER_WINDOW ); |
c5f9d156 VS |
1820 | InitMouseEvent(win, event, gdk_event); |
1821 | wxPoint pt = win->GetClientAreaOrigin(); | |
1822 | event.m_x = x + pt.x; | |
1823 | event.m_y = y + pt.y; | |
ff8bfdbb | 1824 | |
e380f72b | 1825 | if (win->GetEventHandler()->ProcessEvent( event )) |
034be888 | 1826 | { |
e380f72b | 1827 | gtk_signal_emit_stop_by_name( GTK_OBJECT(widget), "enter_notify_event" ); |
034be888 RR |
1828 | return TRUE; |
1829 | } | |
ca298c88 | 1830 | |
034be888 | 1831 | return FALSE; |
b4071e91 | 1832 | } |
47d67540 | 1833 | |
b4071e91 RR |
1834 | //----------------------------------------------------------------------------- |
1835 | // "leave_notify_event" | |
1836 | //----------------------------------------------------------------------------- | |
1837 | ||
1e6feb95 | 1838 | static gint gtk_window_leave_callback( GtkWidget *widget, GdkEventCrossing *gdk_event, wxWindowGTK *win ) |
b4071e91 | 1839 | { |
3ac8d3bc RR |
1840 | DEBUG_MAIN_THREAD |
1841 | ||
c50f1fb9 | 1842 | if (g_isIdle) |
a2053b27 | 1843 | wxapp_install_idle_handler(); |
acfd422a | 1844 | |
a2053b27 RR |
1845 | if (!win->m_hasVMT) return FALSE; |
1846 | if (g_blockEventsOnDrag) return FALSE; | |
b292e2f5 | 1847 | |
a2053b27 | 1848 | if (!win->IsOwnGtkWindow( gdk_event->window )) return FALSE; |
c50f1fb9 | 1849 | |
e380f72b | 1850 | wxMouseEvent event( wxEVT_LEAVE_WINDOW ); |
d1367c3d | 1851 | event.SetTimestamp( gdk_event->time ); |
e380f72b | 1852 | event.SetEventObject( win ); |
47d67540 | 1853 | |
4a33eba6 RR |
1854 | int x = 0; |
1855 | int y = 0; | |
1856 | GdkModifierType state = (GdkModifierType)0; | |
ff8bfdbb | 1857 | |
4a33eba6 | 1858 | gdk_window_get_pointer( widget->window, &x, &y, &state ); |
ff8bfdbb | 1859 | |
74710601 VZ |
1860 | event.m_shiftDown = (state & GDK_SHIFT_MASK) != 0; |
1861 | event.m_controlDown = (state & GDK_CONTROL_MASK) != 0; | |
1862 | event.m_altDown = (state & GDK_MOD1_MASK) != 0; | |
1863 | event.m_metaDown = (state & GDK_MOD2_MASK) != 0; | |
1864 | event.m_leftDown = (state & GDK_BUTTON1_MASK) != 0; | |
1865 | event.m_middleDown = (state & GDK_BUTTON2_MASK) != 0; | |
1866 | event.m_rightDown = (state & GDK_BUTTON3_MASK) != 0; | |
4a33eba6 | 1867 | |
c5f9d156 VS |
1868 | wxPoint pt = win->GetClientAreaOrigin(); |
1869 | event.m_x = x + pt.x; | |
1870 | event.m_y = y + pt.y; | |
ff8bfdbb | 1871 | |
e380f72b | 1872 | if (win->GetEventHandler()->ProcessEvent( event )) |
034be888 | 1873 | { |
e380f72b | 1874 | gtk_signal_emit_stop_by_name( GTK_OBJECT(widget), "leave_notify_event" ); |
034be888 RR |
1875 | return TRUE; |
1876 | } | |
ca298c88 | 1877 | |
034be888 | 1878 | return FALSE; |
b4071e91 | 1879 | } |
47d67540 | 1880 | |
c801d85f | 1881 | //----------------------------------------------------------------------------- |
2f2aa628 RR |
1882 | // "value_changed" from m_vAdjust |
1883 | //----------------------------------------------------------------------------- | |
c801d85f | 1884 | |
9e691f46 VZ |
1885 | static void gtk_window_vscroll_callback( GtkAdjustment *adjust, |
1886 | SCROLLBAR_CBACK_ARG | |
1887 | wxWindowGTK *win ) | |
c801d85f | 1888 | { |
3ac8d3bc RR |
1889 | DEBUG_MAIN_THREAD |
1890 | ||
c50f1fb9 | 1891 | if (g_isIdle) |
a2053b27 | 1892 | wxapp_install_idle_handler(); |
c801d85f | 1893 | |
a2053b27 | 1894 | if (g_blockEventsOnDrag) return; |
47d67540 | 1895 | |
a2053b27 | 1896 | if (!win->m_hasVMT) return; |
148cd9b6 | 1897 | |
5e014a0c | 1898 | float diff = adjust->value - win->m_oldVerticalPos; |
e380f72b | 1899 | if (fabs(diff) < 0.2) return; |
148cd9b6 | 1900 | |
5e014a0c | 1901 | win->m_oldVerticalPos = adjust->value; |
47d67540 | 1902 | |
6728fb61 RL |
1903 | GtkScrolledWindow *sw = GTK_SCROLLED_WINDOW(win->m_widget); |
1904 | wxEventType command = GtkScrollWinTypeToWx(GET_SCROLL_TYPE(sw->vscrollbar)); | |
148cd9b6 | 1905 | |
5e014a0c | 1906 | int value = (int)(adjust->value+0.5); |
c801d85f | 1907 | |
c5b42c87 | 1908 | wxScrollWinEvent event( command, value, wxVERTICAL ); |
e380f72b RR |
1909 | event.SetEventObject( win ); |
1910 | win->GetEventHandler()->ProcessEvent( event ); | |
362c6693 | 1911 | } |
c801d85f KB |
1912 | |
1913 | //----------------------------------------------------------------------------- | |
2f2aa628 RR |
1914 | // "value_changed" from m_hAdjust |
1915 | //----------------------------------------------------------------------------- | |
c801d85f | 1916 | |
9e691f46 VZ |
1917 | static void gtk_window_hscroll_callback( GtkAdjustment *adjust, |
1918 | SCROLLBAR_CBACK_ARG | |
1919 | wxWindowGTK *win ) | |
47d67540 | 1920 | { |
3ac8d3bc RR |
1921 | DEBUG_MAIN_THREAD |
1922 | ||
c50f1fb9 | 1923 | if (g_isIdle) |
a2053b27 | 1924 | wxapp_install_idle_handler(); |
47d67540 | 1925 | |
a2053b27 RR |
1926 | if (g_blockEventsOnDrag) return; |
1927 | if (!win->m_hasVMT) return; | |
47d67540 | 1928 | |
5e014a0c | 1929 | float diff = adjust->value - win->m_oldHorizontalPos; |
e380f72b | 1930 | if (fabs(diff) < 0.2) return; |
148cd9b6 | 1931 | |
6728fb61 RL |
1932 | GtkScrolledWindow *sw = GTK_SCROLLED_WINDOW(win->m_widget); |
1933 | wxEventType command = GtkScrollWinTypeToWx(GET_SCROLL_TYPE(sw->hscrollbar)); | |
148cd9b6 | 1934 | |
9e691f46 | 1935 | win->m_oldHorizontalPos = adjust->value; |
148cd9b6 | 1936 | |
5e014a0c | 1937 | int value = (int)(adjust->value+0.5); |
47d67540 | 1938 | |
c5b42c87 | 1939 | wxScrollWinEvent event( command, value, wxHORIZONTAL ); |
e380f72b RR |
1940 | event.SetEventObject( win ); |
1941 | win->GetEventHandler()->ProcessEvent( event ); | |
362c6693 | 1942 | } |
c801d85f | 1943 | |
cb43b372 RR |
1944 | //----------------------------------------------------------------------------- |
1945 | // "button_press_event" from scrollbar | |
1946 | //----------------------------------------------------------------------------- | |
1947 | ||
2a23d363 RR |
1948 | static gint gtk_scrollbar_button_press_callback( GtkRange *widget, |
1949 | GdkEventButton *gdk_event, | |
1e6feb95 | 1950 | wxWindowGTK *win) |
cb43b372 | 1951 | { |
3ac8d3bc RR |
1952 | DEBUG_MAIN_THREAD |
1953 | ||
c50f1fb9 | 1954 | if (g_isIdle) |
a2053b27 RR |
1955 | wxapp_install_idle_handler(); |
1956 | ||
d6d26e04 | 1957 | |
5b8a521e | 1958 | g_blockEventsOnScroll = TRUE; |
9e691f46 VZ |
1959 | |
1960 | // FIXME: there is no 'slider' field in GTK+ 2.0 any more | |
1961 | #ifndef __WXGTK20__ | |
2a23d363 | 1962 | win->m_isScrolling = (gdk_event->window == widget->slider); |
9e691f46 | 1963 | #endif |
47d67540 | 1964 | |
e380f72b | 1965 | return FALSE; |
cb43b372 RR |
1966 | } |
1967 | ||
1968 | //----------------------------------------------------------------------------- | |
1969 | // "button_release_event" from scrollbar | |
1970 | //----------------------------------------------------------------------------- | |
1971 | ||
88413fec | 1972 | static gint gtk_scrollbar_button_release_callback( GtkRange *widget, |
8bbe427f | 1973 | GdkEventButton *WXUNUSED(gdk_event), |
1e6feb95 | 1974 | wxWindowGTK *win) |
cb43b372 | 1975 | { |
3ac8d3bc RR |
1976 | DEBUG_MAIN_THREAD |
1977 | ||
1ecc4d80 | 1978 | // don't test here as we can release the mouse while being over |
5e014a0c | 1979 | // a different window than the slider |
76ed8f8d RR |
1980 | // |
1981 | // if (gdk_event->window != widget->slider) return FALSE; | |
cb43b372 | 1982 | |
5b8a521e | 1983 | g_blockEventsOnScroll = FALSE; |
47d67540 | 1984 | |
2a23d363 | 1985 | if (win->m_isScrolling) |
88413fec | 1986 | { |
d6d26e04 | 1987 | wxEventType command = wxEVT_SCROLLWIN_THUMBRELEASE; |
2a23d363 RR |
1988 | int value = -1; |
1989 | int dir = -1; | |
2daa0ce9 | 1990 | |
2a23d363 RR |
1991 | GtkScrolledWindow *scrolledWindow = GTK_SCROLLED_WINDOW(win->m_widget); |
1992 | if (widget == GTK_RANGE(scrolledWindow->hscrollbar)) | |
1993 | { | |
1994 | value = (int)(win->m_hAdjust->value+0.5); | |
1995 | dir = wxHORIZONTAL; | |
1996 | } | |
1997 | if (widget == GTK_RANGE(scrolledWindow->vscrollbar)) | |
1998 | { | |
1999 | value = (int)(win->m_vAdjust->value+0.5); | |
2000 | dir = wxVERTICAL; | |
2001 | } | |
2daa0ce9 | 2002 | |
2a23d363 | 2003 | wxScrollWinEvent event( command, value, dir ); |
2a23d363 RR |
2004 | event.SetEventObject( win ); |
2005 | win->GetEventHandler()->ProcessEvent( event ); | |
88413fec RR |
2006 | } |
2007 | ||
2a23d363 | 2008 | win->m_isScrolling = FALSE; |
2daa0ce9 | 2009 | |
e380f72b | 2010 | return FALSE; |
cb43b372 RR |
2011 | } |
2012 | ||
f03fc89f VZ |
2013 | // ---------------------------------------------------------------------------- |
2014 | // this wxWindowBase function is implemented here (in platform-specific file) | |
2015 | // because it is static and so couldn't be made virtual | |
2016 | // ---------------------------------------------------------------------------- | |
2b07d713 | 2017 | |
f03fc89f | 2018 | wxWindow *wxWindowBase::FindFocus() |
2b07d713 | 2019 | { |
1e6feb95 VZ |
2020 | // the cast is necessary when we compile in wxUniversal mode |
2021 | return (wxWindow *)g_focusWindow; | |
2b07d713 | 2022 | } |
ca298c88 | 2023 | |
2dde25b9 RR |
2024 | //----------------------------------------------------------------------------- |
2025 | // "destroy" event | |
2026 | //----------------------------------------------------------------------------- | |
2027 | ||
1a685a59 VZ |
2028 | // VZ: Robert commented the code using out so it generates warnings: should |
2029 | // be either fixed or removed completely | |
2030 | #if 0 | |
2031 | ||
2dde25b9 RR |
2032 | static void gtk_window_destroy_callback( GtkWidget* widget, wxWindow *win ) |
2033 | { | |
2034 | wxWindowDestroyEvent event(win); | |
2035 | win->GetEventHandler()->ProcessEvent(event); | |
2036 | } | |
2037 | ||
1a685a59 VZ |
2038 | #endif // 0 |
2039 | ||
a2053b27 RR |
2040 | //----------------------------------------------------------------------------- |
2041 | // "realize" from m_widget | |
2042 | //----------------------------------------------------------------------------- | |
2043 | ||
b79395c5 RR |
2044 | /* We cannot set colours and fonts before the widget has |
2045 | been realized, so we do this directly after realization. */ | |
a2053b27 RR |
2046 | |
2047 | static gint | |
63081513 | 2048 | gtk_window_realized_callback( GtkWidget *WXUNUSED(m_widget), wxWindow *win ) |
a2053b27 | 2049 | { |
3ac8d3bc RR |
2050 | DEBUG_MAIN_THREAD |
2051 | ||
c50f1fb9 | 2052 | if (g_isIdle) |
a2053b27 RR |
2053 | wxapp_install_idle_handler(); |
2054 | ||
739730ca | 2055 | if (win->m_delayedBackgroundColour) |
ea323db3 | 2056 | win->GtkSetBackgroundColour( win->GetBackgroundColour() ); |
a2053b27 | 2057 | |
739730ca | 2058 | if (win->m_delayedForegroundColour) |
ea323db3 | 2059 | win->GtkSetForegroundColour( win->GetForegroundColour() ); |
a2053b27 | 2060 | |
3c679789 RR |
2061 | wxWindowCreateEvent event( win ); |
2062 | event.SetEventObject( win ); | |
2063 | win->GetEventHandler()->ProcessEvent( event ); | |
1e6feb95 | 2064 | |
a2053b27 RR |
2065 | return FALSE; |
2066 | } | |
2067 | ||
b79395c5 RR |
2068 | //----------------------------------------------------------------------------- |
2069 | // "size_allocate" | |
2070 | //----------------------------------------------------------------------------- | |
2071 | ||
8f75cb6c | 2072 | static |
adc1999b RR |
2073 | void gtk_window_size_callback( GtkWidget *WXUNUSED(widget), |
2074 | GtkAllocation *WXUNUSED(alloc), | |
8f75cb6c RR |
2075 | wxWindow *win ) |
2076 | { | |
2077 | if (g_isIdle) | |
2078 | wxapp_install_idle_handler(); | |
2daa0ce9 | 2079 | |
5b8a521e | 2080 | if (!win->m_hasScrolling) return; |
2daa0ce9 | 2081 | |
5b8a521e RR |
2082 | int client_width = 0; |
2083 | int client_height = 0; | |
2084 | win->GetClientSize( &client_width, &client_height ); | |
2085 | if ((client_width == win->m_oldClientWidth) && (client_height == win->m_oldClientHeight)) | |
2086 | return; | |
2daa0ce9 | 2087 | |
5b8a521e RR |
2088 | win->m_oldClientWidth = client_width; |
2089 | win->m_oldClientHeight = client_height; | |
2daa0ce9 | 2090 | |
5b8a521e RR |
2091 | if (!win->m_nativeSizeEvent) |
2092 | { | |
2093 | wxSizeEvent event( win->GetSize(), win->GetId() ); | |
2094 | event.SetEventObject( win ); | |
2095 | win->GetEventHandler()->ProcessEvent( event ); | |
2096 | } | |
8f75cb6c RR |
2097 | } |
2098 | ||
2099 | ||
3ed2e7ce VZ |
2100 | #ifdef HAVE_XIM |
2101 | #define WXUNUSED_UNLESS_XIM(param) param | |
2102 | #else | |
2103 | #define WXUNUSED_UNLESS_XIM(param) WXUNUSED(param) | |
2104 | #endif | |
2105 | ||
b79395c5 RR |
2106 | /* Resize XIM window */ |
2107 | ||
3ed2e7ce | 2108 | static |
8f75cb6c RR |
2109 | void gtk_wxwindow_size_callback( GtkWidget* WXUNUSED_UNLESS_XIM(widget), |
2110 | GtkAllocation* WXUNUSED_UNLESS_XIM(alloc), | |
1e6feb95 | 2111 | wxWindowGTK* WXUNUSED_UNLESS_XIM(win) ) |
b79395c5 RR |
2112 | { |
2113 | if (g_isIdle) | |
2114 | wxapp_install_idle_handler(); | |
2daa0ce9 | 2115 | |
9a8c7620 | 2116 | #ifdef HAVE_XIM |
b79395c5 RR |
2117 | if (!win->m_ic) |
2118 | return; | |
2119 | ||
b79395c5 RR |
2120 | if (gdk_ic_get_style (win->m_ic) & GDK_IM_PREEDIT_POSITION) |
2121 | { | |
2122 | gint width, height; | |
2123 | ||
3ed2e7ce | 2124 | gdk_window_get_size (widget->window, &width, &height); |
b79395c5 RR |
2125 | win->m_icattr->preedit_area.width = width; |
2126 | win->m_icattr->preedit_area.height = height; | |
2127 | gdk_ic_set_attr (win->m_ic, win->m_icattr, GDK_IC_PREEDIT_AREA); | |
2128 | } | |
9a8c7620 | 2129 | #endif // HAVE_XIM |
b79395c5 RR |
2130 | } |
2131 | ||
63081513 RR |
2132 | //----------------------------------------------------------------------------- |
2133 | // "realize" from m_wxwindow | |
2134 | //----------------------------------------------------------------------------- | |
2135 | ||
2136 | /* Initialize XIM support */ | |
2137 | ||
2138 | static gint | |
3ed2e7ce | 2139 | gtk_wxwindow_realized_callback( GtkWidget * WXUNUSED_UNLESS_XIM(widget), |
1e6feb95 | 2140 | wxWindowGTK * WXUNUSED_UNLESS_XIM(win) ) |
63081513 RR |
2141 | { |
2142 | if (g_isIdle) | |
2143 | wxapp_install_idle_handler(); | |
2144 | ||
d06800f1 | 2145 | #ifdef HAVE_XIM |
63081513 RR |
2146 | if (win->m_ic) return FALSE; |
2147 | if (!widget) return FALSE; | |
2148 | if (!gdk_im_ready()) return FALSE; | |
2149 | ||
2150 | win->m_icattr = gdk_ic_attr_new(); | |
2151 | if (!win->m_icattr) return FALSE; | |
2daa0ce9 | 2152 | |
63081513 RR |
2153 | gint width, height; |
2154 | GdkEventMask mask; | |
2155 | GdkColormap *colormap; | |
2156 | GdkICAttr *attr = win->m_icattr; | |
b58b1dfc | 2157 | unsigned attrmask = GDK_IC_ALL_REQ; |
63081513 | 2158 | GdkIMStyle style; |
b79395c5 RR |
2159 | GdkIMStyle supported_style = (GdkIMStyle) |
2160 | (GDK_IM_PREEDIT_NONE | | |
1e6feb95 VZ |
2161 | GDK_IM_PREEDIT_NOTHING | |
2162 | GDK_IM_PREEDIT_POSITION | | |
2163 | GDK_IM_STATUS_NONE | | |
2164 | GDK_IM_STATUS_NOTHING); | |
63081513 RR |
2165 | |
2166 | if (widget->style && widget->style->font->type != GDK_FONT_FONTSET) | |
1e6feb95 | 2167 | supported_style = (GdkIMStyle)(supported_style & ~GDK_IM_PREEDIT_POSITION); |
63081513 RR |
2168 | |
2169 | attr->style = style = gdk_im_decide_style (supported_style); | |
2170 | attr->client_window = widget->window; | |
2171 | ||
2172 | if ((colormap = gtk_widget_get_colormap (widget)) != | |
1e6feb95 | 2173 | gtk_widget_get_default_colormap ()) |
63081513 | 2174 | { |
5cd09f0b RR |
2175 | attrmask |= GDK_IC_PREEDIT_COLORMAP; |
2176 | attr->preedit_colormap = colormap; | |
63081513 | 2177 | } |
2daa0ce9 | 2178 | |
63081513 RR |
2179 | attrmask |= GDK_IC_PREEDIT_FOREGROUND; |
2180 | attrmask |= GDK_IC_PREEDIT_BACKGROUND; | |
2181 | attr->preedit_foreground = widget->style->fg[GTK_STATE_NORMAL]; | |
2182 | attr->preedit_background = widget->style->base[GTK_STATE_NORMAL]; | |
2183 | ||
2184 | switch (style & GDK_IM_PREEDIT_MASK) | |
2185 | { | |
1e6feb95 VZ |
2186 | case GDK_IM_PREEDIT_POSITION: |
2187 | if (widget->style && widget->style->font->type != GDK_FONT_FONTSET) | |
2188 | { | |
2189 | g_warning ("over-the-spot style requires fontset"); | |
2190 | break; | |
2191 | } | |
63081513 | 2192 | |
1e6feb95 | 2193 | gdk_window_get_size (widget->window, &width, &height); |
63081513 | 2194 | |
1e6feb95 VZ |
2195 | attrmask |= GDK_IC_PREEDIT_POSITION_REQ; |
2196 | attr->spot_location.x = 0; | |
2197 | attr->spot_location.y = height; | |
2198 | attr->preedit_area.x = 0; | |
2199 | attr->preedit_area.y = 0; | |
2200 | attr->preedit_area.width = width; | |
2201 | attr->preedit_area.height = height; | |
2202 | attr->preedit_fontset = widget->style->font; | |
63081513 | 2203 | |
1e6feb95 | 2204 | break; |
b79395c5 | 2205 | } |
2daa0ce9 | 2206 | |
b58b1dfc | 2207 | win->m_ic = gdk_ic_new (attr, (GdkICAttributesType)attrmask); |
2daa0ce9 | 2208 | |
63081513 | 2209 | if (win->m_ic == NULL) |
1e6feb95 | 2210 | g_warning ("Can't create input context."); |
63081513 | 2211 | else |
1e6feb95 VZ |
2212 | { |
2213 | mask = gdk_window_get_events (widget->window); | |
2214 | mask = (GdkEventMask)(mask | gdk_ic_get_events (win->m_ic)); | |
2215 | gdk_window_set_events (widget->window, mask); | |
2216 | ||
2217 | if (GTK_WIDGET_HAS_FOCUS(widget)) | |
2218 | gdk_im_begin (win->m_ic, widget->window); | |
2219 | } | |
2220 | #endif // HAVE_XIM | |
63081513 RR |
2221 | |
2222 | return FALSE; | |
2223 | } | |
2224 | ||
6ca41e57 | 2225 | //----------------------------------------------------------------------------- |
1e6feb95 | 2226 | // InsertChild for wxWindowGTK. |
6ca41e57 RR |
2227 | //----------------------------------------------------------------------------- |
2228 | ||
1e6feb95 | 2229 | /* Callback for wxWindowGTK. This very strange beast has to be used because |
b1170810 RR |
2230 | * C++ has no virtual methods in a constructor. We have to emulate a |
2231 | * virtual function here as wxNotebook requires a different way to insert | |
2232 | * a child in it. I had opted for creating a wxNotebookPage window class | |
2233 | * which would have made this superfluous (such in the MDI window system), | |
2234 | * but no-one was listening to me... */ | |
6ca41e57 | 2235 | |
1e6feb95 | 2236 | static void wxInsertChildInWindow( wxWindowGTK* parent, wxWindowGTK* child ) |
6ca41e57 | 2237 | { |
bf0c00c6 RR |
2238 | /* the window might have been scrolled already, do we |
2239 | have to adapt the position */ | |
da048e3d RR |
2240 | GtkPizza *pizza = GTK_PIZZA(parent->m_wxwindow); |
2241 | child->m_x += pizza->xoffset; | |
2242 | child->m_y += pizza->yoffset; | |
148cd9b6 | 2243 | |
da048e3d | 2244 | gtk_pizza_put( GTK_PIZZA(parent->m_wxwindow), |
a2053b27 RR |
2245 | GTK_WIDGET(child->m_widget), |
2246 | child->m_x, | |
2247 | child->m_y, | |
2248 | child->m_width, | |
2249 | child->m_height ); | |
6ca41e57 RR |
2250 | } |
2251 | ||
bbe0af5b RR |
2252 | //----------------------------------------------------------------------------- |
2253 | // global functions | |
2254 | //----------------------------------------------------------------------------- | |
2255 | ||
1e6feb95 | 2256 | wxWindow *wxGetActiveWindow() |
bbe0af5b | 2257 | { |
6cad4f1b | 2258 | return wxWindow::FindFocus(); |
bbe0af5b RR |
2259 | } |
2260 | ||
c801d85f | 2261 | //----------------------------------------------------------------------------- |
1e6feb95 | 2262 | // wxWindowGTK |
c801d85f KB |
2263 | //----------------------------------------------------------------------------- |
2264 | ||
6522713c VZ |
2265 | // in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu() |
2266 | // method | |
1e6feb95 | 2267 | #ifdef __WXUNIVERSAL__ |
6522713c VZ |
2268 | IMPLEMENT_ABSTRACT_CLASS(wxWindowGTK, wxWindowBase) |
2269 | #else // __WXGTK__ | |
1e6feb95 | 2270 | IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase) |
6522713c | 2271 | #endif // __WXUNIVERSAL__/__WXGTK__ |
c801d85f | 2272 | |
1e6feb95 | 2273 | void wxWindowGTK::Init() |
c801d85f | 2274 | { |
f03fc89f VZ |
2275 | // common init |
2276 | InitBase(); | |
68995f26 | 2277 | |
f03fc89f | 2278 | // GTK specific |
a2053b27 | 2279 | m_widget = (GtkWidget *) NULL; |
e380f72b | 2280 | m_wxwindow = (GtkWidget *) NULL; |
76fcf0f2 | 2281 | m_focusWidget = (GtkWidget *) NULL; |
8bbe427f | 2282 | |
f03fc89f | 2283 | // position/size |
a2053b27 RR |
2284 | m_x = 0; |
2285 | m_y = 0; | |
2286 | m_width = 0; | |
e380f72b | 2287 | m_height = 0; |
8bbe427f | 2288 | |
e380f72b RR |
2289 | m_sizeSet = FALSE; |
2290 | m_hasVMT = FALSE; | |
2291 | m_needParent = TRUE; | |
31c6b4fc | 2292 | m_isBeingDeleted = FALSE; |
148cd9b6 | 2293 | |
147bc491 | 2294 | m_noExpose = FALSE; |
30760ce7 | 2295 | m_nativeSizeEvent = FALSE; |
94633ad9 | 2296 | |
a2053b27 | 2297 | m_hasScrolling = FALSE; |
846e1424 | 2298 | m_isScrolling = FALSE; |
f03fc89f | 2299 | |
a2053b27 | 2300 | m_hAdjust = (GtkAdjustment*) NULL; |
e380f72b | 2301 | m_vAdjust = (GtkAdjustment*) NULL; |
a2053b27 | 2302 | m_oldHorizontalPos = 0.0; |
e380f72b | 2303 | m_oldVerticalPos = 0.0; |
8bbe427f | 2304 | |
e380f72b | 2305 | m_resizing = FALSE; |
e380f72b | 2306 | m_widgetStyle = (GtkStyle*) NULL; |
8bbe427f | 2307 | |
ddb6bc71 | 2308 | m_insertCallback = (wxInsertChildFunction) NULL; |
8bbe427f | 2309 | |
b292e2f5 | 2310 | m_acceptsFocus = FALSE; |
6cad4f1b | 2311 | m_hasFocus = FALSE; |
148cd9b6 | 2312 | |
b6fa52db | 2313 | m_clipPaintRegion = FALSE; |
b6fa52db | 2314 | |
5e014a0c | 2315 | m_cursor = *wxSTANDARD_CURSOR; |
2daa0ce9 | 2316 | |
f6bcfd97 BP |
2317 | m_delayedForegroundColour = FALSE; |
2318 | m_delayedBackgroundColour = FALSE; | |
1e6feb95 | 2319 | |
63081513 RR |
2320 | #ifdef HAVE_XIM |
2321 | m_ic = (GdkIC*) NULL; | |
2322 | m_icattr = (GdkICAttr*) NULL; | |
2323 | #endif | |
362c6693 | 2324 | } |
c801d85f | 2325 | |
1e6feb95 | 2326 | wxWindowGTK::wxWindowGTK() |
68995f26 VZ |
2327 | { |
2328 | Init(); | |
2329 | } | |
2330 | ||
1e6feb95 VZ |
2331 | wxWindowGTK::wxWindowGTK( wxWindow *parent, |
2332 | wxWindowID id, | |
2333 | const wxPoint &pos, | |
2334 | const wxSize &size, | |
2335 | long style, | |
2336 | const wxString &name ) | |
6ca41e57 | 2337 | { |
68995f26 VZ |
2338 | Init(); |
2339 | ||
e380f72b | 2340 | Create( parent, id, pos, size, style, name ); |
6ca41e57 | 2341 | } |
8bbe427f | 2342 | |
1e6feb95 VZ |
2343 | bool wxWindowGTK::Create( wxWindow *parent, |
2344 | wxWindowID id, | |
2345 | const wxPoint &pos, | |
2346 | const wxSize &size, | |
2347 | long style, | |
2348 | const wxString &name ) | |
c801d85f | 2349 | { |
4dcaf11a RR |
2350 | if (!PreCreation( parent, pos, size ) || |
2351 | !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name )) | |
2352 | { | |
1e6feb95 | 2353 | wxFAIL_MSG( wxT("wxWindowGTK creation failed") ); |
b02da6b1 | 2354 | return FALSE; |
4dcaf11a | 2355 | } |
47d67540 | 2356 | |
ddb6bc71 | 2357 | m_insertCallback = wxInsertChildInWindow; |
994bc575 RR |
2358 | |
2359 | // always needed for background clearing | |
2360 | m_delayedBackgroundColour = TRUE; | |
1e6feb95 | 2361 | |
e380f72b | 2362 | m_widget = gtk_scrolled_window_new( (GtkAdjustment *) NULL, (GtkAdjustment *) NULL ); |
38c7b3d3 | 2363 | GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS ); |
ff8bfdbb | 2364 | |
f03fc89f | 2365 | GtkScrolledWindow *scrolledWindow = GTK_SCROLLED_WINDOW(m_widget); |
47d67540 | 2366 | |
dd00f3f6 | 2367 | GtkScrolledWindowClass *scroll_class = GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT_GET_CLASS(m_widget) ); |
e380f72b | 2368 | scroll_class->scrollbar_spacing = 0; |
47d67540 | 2369 | |
f03fc89f | 2370 | gtk_scrolled_window_set_policy( scrolledWindow, GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC ); |
47d67540 | 2371 | |
f03fc89f VZ |
2372 | m_hAdjust = gtk_range_get_adjustment( GTK_RANGE(scrolledWindow->hscrollbar) ); |
2373 | m_vAdjust = gtk_range_get_adjustment( GTK_RANGE(scrolledWindow->vscrollbar) ); | |
47d67540 | 2374 | |
da048e3d | 2375 | m_wxwindow = gtk_pizza_new(); |
0fc5dbf5 | 2376 | |
1e6feb95 | 2377 | #ifndef __WXUNIVERSAL__ |
da048e3d | 2378 | GtkPizza *pizza = GTK_PIZZA(m_wxwindow); |
b292e2f5 | 2379 | |
f03fc89f | 2380 | if (HasFlag(wxRAISED_BORDER)) |
034be888 | 2381 | { |
da048e3d | 2382 | gtk_pizza_set_shadow_type( pizza, GTK_MYSHADOW_OUT ); |
034be888 | 2383 | } |
f03fc89f | 2384 | else if (HasFlag(wxSUNKEN_BORDER)) |
034be888 | 2385 | { |
da048e3d | 2386 | gtk_pizza_set_shadow_type( pizza, GTK_MYSHADOW_IN ); |
5e014a0c RR |
2387 | } |
2388 | else if (HasFlag(wxSIMPLE_BORDER)) | |
2389 | { | |
da048e3d | 2390 | gtk_pizza_set_shadow_type( pizza, GTK_MYSHADOW_THIN ); |
034be888 RR |
2391 | } |
2392 | else | |
2393 | { | |
da048e3d | 2394 | gtk_pizza_set_shadow_type( pizza, GTK_MYSHADOW_NONE ); |
034be888 | 2395 | } |
1e6feb95 | 2396 | #endif // __WXUNIVERSAL__ |
47d67540 | 2397 | |
4e5a4c69 RR |
2398 | gtk_container_add( GTK_CONTAINER(m_widget), m_wxwindow ); |
2399 | ||
3da17724 RR |
2400 | GTK_WIDGET_SET_FLAGS( m_wxwindow, GTK_CAN_FOCUS ); |
2401 | m_acceptsFocus = TRUE; | |
ca298c88 | 2402 | |
e380f72b | 2403 | // I _really_ don't want scrollbars in the beginning |
a2053b27 RR |
2404 | m_vAdjust->lower = 0.0; |
2405 | m_vAdjust->upper = 1.0; | |
2406 | m_vAdjust->value = 0.0; | |
2407 | m_vAdjust->step_increment = 1.0; | |
2408 | m_vAdjust->page_increment = 1.0; | |
2409 | m_vAdjust->page_size = 5.0; | |
2410 | gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust), "changed" ); | |
2411 | m_hAdjust->lower = 0.0; | |
2412 | m_hAdjust->upper = 1.0; | |
2413 | m_hAdjust->value = 0.0; | |
2414 | m_hAdjust->step_increment = 1.0; | |
2415 | m_hAdjust->page_increment = 1.0; | |
2416 | m_hAdjust->page_size = 5.0; | |
2417 | gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust), "changed" ); | |
f03fc89f VZ |
2418 | |
2419 | // these handlers block mouse events to any window during scrolling such as | |
2420 | // motion events and prevent GTK and wxWindows from fighting over where the | |
2421 | // slider should be | |
2422 | ||
2423 | gtk_signal_connect( GTK_OBJECT(scrolledWindow->vscrollbar), "button_press_event", | |
76ed8f8d RR |
2424 | (GtkSignalFunc)gtk_scrollbar_button_press_callback, (gpointer) this ); |
2425 | ||
f03fc89f | 2426 | gtk_signal_connect( GTK_OBJECT(scrolledWindow->hscrollbar), "button_press_event", |
76ed8f8d RR |
2427 | (GtkSignalFunc)gtk_scrollbar_button_press_callback, (gpointer) this ); |
2428 | ||
f03fc89f | 2429 | gtk_signal_connect( GTK_OBJECT(scrolledWindow->vscrollbar), "button_release_event", |
76ed8f8d RR |
2430 | (GtkSignalFunc)gtk_scrollbar_button_release_callback, (gpointer) this ); |
2431 | ||
f03fc89f | 2432 | gtk_signal_connect( GTK_OBJECT(scrolledWindow->hscrollbar), "button_release_event", |
76ed8f8d | 2433 | (GtkSignalFunc)gtk_scrollbar_button_release_callback, (gpointer) this ); |
8bbe427f | 2434 | |
034be888 | 2435 | // these handlers get notified when screen updates are required either when |
76ed8f8d RR |
2436 | // scrolling or when the window size (and therefore scrollbar configuration) |
2437 | // has changed | |
2438 | ||
2439 | gtk_signal_connect( GTK_OBJECT(m_hAdjust), "value_changed", | |
2440 | (GtkSignalFunc) gtk_window_hscroll_callback, (gpointer) this ); | |
2441 | gtk_signal_connect( GTK_OBJECT(m_vAdjust), "value_changed", | |
2442 | (GtkSignalFunc) gtk_window_vscroll_callback, (gpointer) this ); | |
2443 | ||
f03fc89f | 2444 | gtk_widget_show( m_wxwindow ); |
47d67540 | 2445 | |
f03fc89f VZ |
2446 | if (m_parent) |
2447 | m_parent->DoAddChild( this ); | |
94633ad9 | 2448 | |
76fcf0f2 | 2449 | m_focusWidget = m_wxwindow; |
8bbe427f | 2450 | |
e380f72b | 2451 | PostCreation(); |
8bbe427f | 2452 | |
e380f72b | 2453 | Show( TRUE ); |
c801d85f | 2454 | |
e380f72b | 2455 | return TRUE; |
362c6693 | 2456 | } |
c801d85f | 2457 | |
1e6feb95 | 2458 | wxWindowGTK::~wxWindowGTK() |
c801d85f | 2459 | { |
44cd54c2 JS |
2460 | if (g_focusWindow == this) |
2461 | g_focusWindow = NULL; | |
2462 | ||
e8c12a53 VS |
2463 | if (g_activeFrame == this) |
2464 | g_activeFrame = NULL; | |
2465 | ||
3e679f01 VZ |
2466 | if ( g_delayedFocus == this ) |
2467 | g_delayedFocus = NULL; | |
2468 | ||
31c6b4fc | 2469 | m_isBeingDeleted = TRUE; |
43a18898 | 2470 | m_hasVMT = FALSE; |
47d67540 | 2471 | |
f03fc89f VZ |
2472 | if (m_widget) |
2473 | Show( FALSE ); | |
8bbe427f | 2474 | |
a2053b27 RR |
2475 | DestroyChildren(); |
2476 | ||
f03fc89f VZ |
2477 | if (m_parent) |
2478 | m_parent->RemoveChild( this ); | |
c801d85f | 2479 | |
63081513 RR |
2480 | #ifdef HAVE_XIM |
2481 | if (m_ic) | |
2482 | gdk_ic_destroy (m_ic); | |
2483 | if (m_icattr) | |
2484 | gdk_ic_attr_destroy (m_icattr); | |
2485 | #endif | |
2486 | ||
f03fc89f | 2487 | if (m_widgetStyle) |
a2053b27 | 2488 | { |
a56fcaaf | 2489 | #if DISABLE_STYLE_IF_BROKEN_THEME |
bce1406b RR |
2490 | // don't delete if it's a pixmap theme style |
2491 | if (!m_widgetStyle->engine_data) | |
2492 | gtk_style_unref( m_widgetStyle ); | |
1e6feb95 | 2493 | #endif |
c50f1fb9 | 2494 | m_widgetStyle = (GtkStyle*) NULL; |
a2053b27 | 2495 | } |
c801d85f | 2496 | |
f03fc89f | 2497 | if (m_wxwindow) |
a2053b27 | 2498 | { |
f03fc89f | 2499 | gtk_widget_destroy( m_wxwindow ); |
c50f1fb9 | 2500 | m_wxwindow = (GtkWidget*) NULL; |
a2053b27 | 2501 | } |
8bbe427f | 2502 | |
f03fc89f | 2503 | if (m_widget) |
a2053b27 | 2504 | { |
f03fc89f | 2505 | gtk_widget_destroy( m_widget ); |
c50f1fb9 | 2506 | m_widget = (GtkWidget*) NULL; |
a2053b27 | 2507 | } |
362c6693 | 2508 | } |
c801d85f | 2509 | |
1e6feb95 | 2510 | bool wxWindowGTK::PreCreation( wxWindowGTK *parent, const wxPoint &pos, const wxSize &size ) |
c801d85f | 2511 | { |
223d09f6 | 2512 | wxCHECK_MSG( !m_needParent || parent, FALSE, wxT("Need complete parent.") ); |
8bbe427f | 2513 | |
3013a903 RR |
2514 | // This turns -1 into 30 so that a minimal window is |
2515 | // visible even although -1,-1 has been given as the | |
2516 | // size of the window. the same trick is used in other | |
2517 | // ports and should make debugging easier. | |
2518 | m_width = WidthDefault(size.x) ; | |
f03fc89f | 2519 | m_height = HeightDefault(size.y); |
8bbe427f | 2520 | |
43a18898 RR |
2521 | m_x = (int)pos.x; |
2522 | m_y = (int)pos.y; | |
8bbe427f | 2523 | |
3013a903 | 2524 | // some reasonable defaults |
148cd9b6 | 2525 | if (!parent) |
6ca41e57 | 2526 | { |
43a18898 RR |
2527 | if (m_x == -1) |
2528 | { | |
2529 | m_x = (gdk_screen_width () - m_width) / 2; | |
2530 | if (m_x < 10) m_x = 10; | |
2531 | } | |
2532 | if (m_y == -1) | |
2533 | { | |
2534 | m_y = (gdk_screen_height () - m_height) / 2; | |
2535 | if (m_y < 10) m_y = 10; | |
2536 | } | |
6ca41e57 | 2537 | } |
148cd9b6 | 2538 | |
4dcaf11a | 2539 | return TRUE; |
c801d85f KB |
2540 | } |
2541 | ||
1e6feb95 | 2542 | void wxWindowGTK::PostCreation() |
c801d85f | 2543 | { |
223d09f6 | 2544 | wxASSERT_MSG( (m_widget != NULL), wxT("invalid window") ); |
94633ad9 | 2545 | |
43a18898 RR |
2546 | if (m_wxwindow) |
2547 | { | |
147bc491 | 2548 | if (!m_noExpose) |
b02da6b1 | 2549 | { |
76fcf0f2 | 2550 | // these get reported to wxWindows -> wxPaintEvent |
1e6feb95 | 2551 | |
b420fb6a RR |
2552 | gtk_pizza_set_external( GTK_PIZZA(m_wxwindow), TRUE ); |
2553 | ||
147bc491 RR |
2554 | gtk_signal_connect( GTK_OBJECT(m_wxwindow), "expose_event", |
2555 | GTK_SIGNAL_FUNC(gtk_window_expose_callback), (gpointer)this ); | |
2556 | ||
4e5a4c69 | 2557 | #ifndef __WXGTK20__ |
147bc491 RR |
2558 | gtk_signal_connect( GTK_OBJECT(m_wxwindow), "draw", |
2559 | GTK_SIGNAL_FUNC(gtk_window_draw_callback), (gpointer)this ); | |
0fc5dbf5 | 2560 | |
e22454be RR |
2561 | if (HasFlag(wxNO_FULL_REPAINT_ON_RESIZE)) |
2562 | { | |
2563 | gtk_signal_connect( GTK_OBJECT(m_wxwindow), "event", | |
2564 | GTK_SIGNAL_FUNC(gtk_window_event_event_callback), (gpointer)this ); | |
2565 | } | |
4e5a4c69 RR |
2566 | #else |
2567 | gtk_widget_set_redraw_on_allocate( GTK_WIDGET(m_wxwindow), HasFlag( wxNO_FULL_REPAINT_ON_RESIZE ) ); | |
2568 | #endif | |
b02da6b1 | 2569 | } |
148cd9b6 | 2570 | |
67d78217 | 2571 | // these are called when the "sunken" or "raised" borders are drawn |
034be888 RR |
2572 | gtk_signal_connect( GTK_OBJECT(m_widget), "expose_event", |
2573 | GTK_SIGNAL_FUNC(gtk_window_own_expose_callback), (gpointer)this ); | |
2574 | ||
4e5a4c69 | 2575 | #ifndef __WXGTK20__ |
034be888 RR |
2576 | gtk_signal_connect( GTK_OBJECT(m_widget), "draw", |
2577 | GTK_SIGNAL_FUNC(gtk_window_own_draw_callback), (gpointer)this ); | |
4e5a4c69 | 2578 | #endif |
43a18898 | 2579 | } |
47d67540 | 2580 | |
76fcf0f2 | 2581 | // focus handling |
63081513 | 2582 | |
76fcf0f2 RR |
2583 | if (m_focusWidget == NULL) |
2584 | m_focusWidget = m_widget; | |
2daa0ce9 | 2585 | |
76fcf0f2 RR |
2586 | gtk_signal_connect( GTK_OBJECT(m_focusWidget), "focus_in_event", |
2587 | GTK_SIGNAL_FUNC(gtk_window_focus_in_callback), (gpointer)this ); | |
2588 | ||
2589 | gtk_signal_connect( GTK_OBJECT(m_focusWidget), "focus_out_event", | |
2590 | GTK_SIGNAL_FUNC(gtk_window_focus_out_callback), (gpointer)this ); | |
2591 | ||
2592 | // connect to the various key and mouse handlers | |
63081513 | 2593 | |
a2053b27 | 2594 | GtkWidget *connect_widget = GetConnectWidget(); |
f03fc89f | 2595 | |
a2053b27 | 2596 | ConnectWidget( connect_widget ); |
47d67540 | 2597 | |
63081513 | 2598 | /* We cannot set colours, fonts and cursors before the widget has |
a2053b27 RR |
2599 | been realized, so we do this directly after realization */ |
2600 | gtk_signal_connect( GTK_OBJECT(connect_widget), "realize", | |
c50f1fb9 | 2601 | GTK_SIGNAL_FUNC(gtk_window_realized_callback), (gpointer) this ); |
2daa0ce9 | 2602 | |
63081513 RR |
2603 | if (m_wxwindow) |
2604 | { | |
47c93b63 | 2605 | // Catch native resize events |
8f75cb6c RR |
2606 | gtk_signal_connect( GTK_OBJECT(m_wxwindow), "size_allocate", |
2607 | GTK_SIGNAL_FUNC(gtk_window_size_callback), (gpointer)this ); | |
2daa0ce9 | 2608 | |
47c93b63 | 2609 | // Initialize XIM support |
63081513 RR |
2610 | gtk_signal_connect( GTK_OBJECT(m_wxwindow), "realize", |
2611 | GTK_SIGNAL_FUNC(gtk_wxwindow_realized_callback), (gpointer) this ); | |
8f75cb6c | 2612 | |
47c93b63 | 2613 | // And resize XIM window |
b79395c5 RR |
2614 | gtk_signal_connect( GTK_OBJECT(m_wxwindow), "size_allocate", |
2615 | GTK_SIGNAL_FUNC(gtk_wxwindow_size_callback), (gpointer)this ); | |
63081513 | 2616 | } |
2daa0ce9 | 2617 | |
47c93b63 RR |
2618 | if (!GTK_IS_COMBO(m_widget)) |
2619 | { | |
2620 | // This is needed if we want to add our windows into native | |
2621 | // GTK control, such as the toolbar. With this callback, the | |
2622 | // toolbar gets to know the correct size (the one set by the | |
2623 | // programmer). Sadly, it misbehaves for wxComboBox. FIXME | |
2624 | // when moving to GTK 2.0. | |
2625 | gtk_signal_connect( GTK_OBJECT(m_widget), "size_request", | |
2626 | GTK_SIGNAL_FUNC(gtk_window_size_request_callback), (gpointer) this ); | |
2627 | } | |
1e6feb95 | 2628 | |
43a18898 | 2629 | m_hasVMT = TRUE; |
b4071e91 RR |
2630 | } |
2631 | ||
1e6feb95 | 2632 | void wxWindowGTK::ConnectWidget( GtkWidget *widget ) |
b4071e91 | 2633 | { |
43a18898 RR |
2634 | gtk_signal_connect( GTK_OBJECT(widget), "key_press_event", |
2635 | GTK_SIGNAL_FUNC(gtk_window_key_press_callback), (gpointer)this ); | |
c801d85f | 2636 | |
b666df2c RR |
2637 | gtk_signal_connect( GTK_OBJECT(widget), "key_release_event", |
2638 | GTK_SIGNAL_FUNC(gtk_window_key_release_callback), (gpointer)this ); | |
2639 | ||
43a18898 RR |
2640 | gtk_signal_connect( GTK_OBJECT(widget), "button_press_event", |
2641 | GTK_SIGNAL_FUNC(gtk_window_button_press_callback), (gpointer)this ); | |
47d67540 | 2642 | |
43a18898 RR |
2643 | gtk_signal_connect( GTK_OBJECT(widget), "button_release_event", |
2644 | GTK_SIGNAL_FUNC(gtk_window_button_release_callback), (gpointer)this ); | |
47d67540 | 2645 | |
43a18898 RR |
2646 | gtk_signal_connect( GTK_OBJECT(widget), "motion_notify_event", |
2647 | GTK_SIGNAL_FUNC(gtk_window_motion_notify_callback), (gpointer)this ); | |
47d67540 | 2648 | |
43a18898 RR |
2649 | gtk_signal_connect( GTK_OBJECT(widget), "enter_notify_event", |
2650 | GTK_SIGNAL_FUNC(gtk_window_enter_callback), (gpointer)this ); | |
47d67540 | 2651 | |
43a18898 RR |
2652 | gtk_signal_connect( GTK_OBJECT(widget), "leave_notify_event", |
2653 | GTK_SIGNAL_FUNC(gtk_window_leave_callback), (gpointer)this ); | |
2dde25b9 | 2654 | |
1ec3a984 RR |
2655 | // This keeps crashing on me. RR. |
2656 | // | |
2657 | // gtk_signal_connect( GTK_OBJECT(widget), "destroy", | |
2658 | // GTK_SIGNAL_FUNC(gtk_window_destroy_callback), (gpointer)this ); | |
362c6693 | 2659 | } |
c801d85f | 2660 | |
1e6feb95 | 2661 | bool wxWindowGTK::Destroy() |
c801d85f | 2662 | { |
223d09f6 | 2663 | wxASSERT_MSG( (m_widget != NULL), wxT("invalid window") ); |
47d67540 | 2664 | |
43a18898 | 2665 | m_hasVMT = FALSE; |
c801d85f | 2666 | |
f03fc89f | 2667 | return wxWindowBase::Destroy(); |
362c6693 | 2668 | } |
c801d85f | 2669 | |
1e6feb95 | 2670 | void wxWindowGTK::DoMoveWindow(int x, int y, int width, int height) |
23efdd02 RR |
2671 | { |
2672 | gtk_pizza_set_size( GTK_PIZZA(m_parent->m_wxwindow), m_widget, x, y, width, height ); | |
2673 | } | |
2daa0ce9 | 2674 | |
1e6feb95 | 2675 | void wxWindowGTK::DoSetSize( int x, int y, int width, int height, int sizeFlags ) |
c801d85f | 2676 | { |
223d09f6 | 2677 | wxASSERT_MSG( (m_widget != NULL), wxT("invalid window") ); |
1e6feb95 | 2678 | wxASSERT_MSG( (m_parent != NULL), wxT("wxWindowGTK::SetSize requires parent.\n") ); |
8bbe427f | 2679 | |
33611ebb | 2680 | /* |
f94fca1b | 2681 | printf( "DoSetSize: name %s, x,y,w,h: %d,%d,%d,%d \n", GetName().c_str(), x,y,width,height ); |
33611ebb RR |
2682 | */ |
2683 | ||
e27ce4e9 | 2684 | if (m_resizing) return; /* I don't like recursions */ |
fb1585ae | 2685 | m_resizing = TRUE; |
1e6feb95 | 2686 | |
b9f29261 VS |
2687 | int currentX, currentY; |
2688 | GetPosition(¤tX, ¤tY); | |
2689 | if (x == -1) | |
2690 | x = currentX; | |
a200c35e | 2691 | if (y == -1) |
b9f29261 | 2692 | y = currentY; |
a200c35e VS |
2693 | AdjustForParentClientOrigin(x, y, sizeFlags); |
2694 | ||
a2053b27 | 2695 | if (m_parent->m_wxwindow == NULL) /* i.e. wxNotebook */ |
fb1585ae | 2696 | { |
e27ce4e9 | 2697 | /* don't set the size for children of wxNotebook, just take the values. */ |
fb1585ae RR |
2698 | m_x = x; |
2699 | m_y = y; | |
2700 | m_width = width; | |
ba4e3652 | 2701 | m_height = height; |
fb1585ae | 2702 | } |
ba4e3652 | 2703 | else |
fb1585ae | 2704 | { |
da048e3d | 2705 | GtkPizza *pizza = GTK_PIZZA(m_parent->m_wxwindow); |
85ad5eb5 | 2706 | if ((sizeFlags & wxSIZE_ALLOW_MINUS_ONE) == 0) |
ba4e3652 | 2707 | { |
da048e3d RR |
2708 | if (x != -1) m_x = x + pizza->xoffset; |
2709 | if (y != -1) m_y = y + pizza->yoffset; | |
ba4e3652 RR |
2710 | } |
2711 | else | |
2712 | { | |
da048e3d RR |
2713 | m_x = x + pizza->xoffset; |
2714 | m_y = y + pizza->yoffset; | |
ba4e3652 | 2715 | } |
d44c23ce RR |
2716 | if (width != -1) m_width = width; |
2717 | if (height != -1) m_height = height; | |
47d67540 | 2718 | |
ba4e3652 RR |
2719 | if ((sizeFlags & wxSIZE_AUTO_WIDTH) == wxSIZE_AUTO_WIDTH) |
2720 | { | |
2721 | if (width == -1) m_width = 80; | |
2722 | } | |
2723 | ||
2724 | if ((sizeFlags & wxSIZE_AUTO_HEIGHT) == wxSIZE_AUTO_HEIGHT) | |
2725 | { | |
2726 | if (height == -1) m_height = 26; | |
2727 | } | |
8bbe427f | 2728 | |
e7dda1ff VS |
2729 | int minWidth = GetMinWidth(), |
2730 | minHeight = GetMinHeight(), | |
2731 | maxWidth = GetMaxWidth(), | |
2732 | maxHeight = GetMaxHeight(); | |
2733 | ||
2734 | if ((minWidth != -1) && (m_width < minWidth)) m_width = minWidth; | |
2735 | if ((minHeight != -1) && (m_height < minHeight)) m_height = minHeight; | |
2736 | if ((maxWidth != -1) && (m_width > maxWidth)) m_width = maxWidth; | |
2737 | if ((maxHeight != -1) && (m_height > maxHeight)) m_height = maxHeight; | |
47d67540 | 2738 | |
a2053b27 | 2739 | int border = 0; |
c50f1fb9 | 2740 | int bottom_border = 0; |
f03fc89f | 2741 | |
eb9e6a00 | 2742 | #ifndef __WXGTK20__ |
29f538ce | 2743 | if (GTK_WIDGET_CAN_DEFAULT(m_widget)) |
c50f1fb9 VZ |
2744 | { |
2745 | /* the default button has a border around it */ | |
2746 | border = 6; | |
2747 | bottom_border = 5; | |
2748 | } | |
67d78217 | 2749 | #endif |
c50f1fb9 | 2750 | |
23efdd02 RR |
2751 | DoMoveWindow( m_x-border, |
2752 | m_y-border, | |
2753 | m_width+2*border, | |
2754 | m_height+border+bottom_border ); | |
54517652 | 2755 | } |
148cd9b6 | 2756 | |
5b8a521e RR |
2757 | if (m_hasScrolling) |
2758 | { | |
1e6feb95 | 2759 | /* Sometimes the client area changes size without the |
b6fa52db RR |
2760 | whole windows's size changing, but if the whole |
2761 | windows's size doesn't change, no wxSizeEvent will | |
2762 | normally be sent. Here we add an extra test if | |
2763 | the client test has been changed and this will | |
2764 | be used then. */ | |
5b8a521e RR |
2765 | GetClientSize( &m_oldClientWidth, &m_oldClientHeight ); |
2766 | } | |
2767 | ||
54517652 | 2768 | /* |
6d693bb4 RR |
2769 | wxPrintf( "OnSize sent from " ); |
2770 | if (GetClassInfo() && GetClassInfo()->GetClassName()) | |
2771 | wxPrintf( GetClassInfo()->GetClassName() ); | |
2772 | wxPrintf( " %d %d %d %d\n", (int)m_x, (int)m_y, (int)m_width, (int)m_height ); | |
2773 | */ | |
2774 | ||
30760ce7 RR |
2775 | if (!m_nativeSizeEvent) |
2776 | { | |
2777 | wxSizeEvent event( wxSize(m_width,m_height), GetId() ); | |
2778 | event.SetEventObject( this ); | |
2779 | GetEventHandler()->ProcessEvent( event ); | |
2780 | } | |
6d693bb4 | 2781 | |
fb1585ae | 2782 | m_resizing = FALSE; |
362c6693 | 2783 | } |
c801d85f | 2784 | |
1e6feb95 | 2785 | void wxWindowGTK::OnInternalIdle() |
9390a202 | 2786 | { |
beab25bd | 2787 | // Update invalidated regions. |
010afced | 2788 | GtkUpdate(); |
0fc5dbf5 | 2789 | |
beab25bd | 2790 | // Synthetize activate events. |
148cd9b6 VZ |
2791 | if ( g_sendActivateEvent != -1 ) |
2792 | { | |
2793 | bool activate = g_sendActivateEvent != 0; | |
2794 | ||
2795 | // do it only once | |
2796 | g_sendActivateEvent = -1; | |
2797 | ||
1e6feb95 | 2798 | wxTheApp->SetActive(activate, (wxWindow *)g_focusWindowLast); |
148cd9b6 VZ |
2799 | } |
2800 | ||
e8c12a53 VS |
2801 | if ( g_activeFrameLostFocus ) |
2802 | { | |
2803 | if ( g_activeFrame ) | |
2804 | { | |
45eb5249 | 2805 | wxLogTrace(wxT("activate"), wxT("Deactivating frame %p (from idle)"), g_activeFrame); |
e8c12a53 VS |
2806 | wxActivateEvent event(wxEVT_ACTIVATE, FALSE, g_activeFrame->GetId()); |
2807 | event.SetEventObject(g_activeFrame); | |
2808 | g_activeFrame->GetEventHandler()->ProcessEvent(event); | |
2809 | g_activeFrame = NULL; | |
2810 | } | |
2811 | g_activeFrameLostFocus = FALSE; | |
2812 | } | |
d7fa7eaa | 2813 | |
9146082c RR |
2814 | wxCursor cursor = m_cursor; |
2815 | if (g_globalCursor.Ok()) cursor = g_globalCursor; | |
c50f1fb9 | 2816 | |
f7a11f8c | 2817 | if (cursor.Ok()) |
9146082c | 2818 | { |
3017f78d | 2819 | /* I now set the cursor anew in every OnInternalIdle call |
b02da6b1 VZ |
2820 | as setting the cursor in a parent window also effects the |
2821 | windows above so that checking for the current cursor is | |
2822 | not possible. */ | |
148cd9b6 | 2823 | |
9146082c | 2824 | if (m_wxwindow) |
6a008b33 | 2825 | { |
da048e3d | 2826 | GdkWindow *window = GTK_PIZZA(m_wxwindow)->bin_window; |
6a008b33 | 2827 | if (window) |
c50f1fb9 | 2828 | gdk_window_set_cursor( window, cursor.GetCursor() ); |
6a008b33 VZ |
2829 | |
2830 | if (!g_globalCursor.Ok()) | |
2831 | cursor = *wxSTANDARD_CURSOR; | |
2832 | ||
2833 | window = m_widget->window; | |
5e014a0c | 2834 | if ((window) && !(GTK_WIDGET_NO_WINDOW(m_widget))) |
9146082c | 2835 | gdk_window_set_cursor( window, cursor.GetCursor() ); |
5e014a0c | 2836 | |
6a008b33 VZ |
2837 | } |
2838 | else | |
2839 | { | |
5e014a0c | 2840 | |
9146082c | 2841 | GdkWindow *window = m_widget->window; |
5e014a0c | 2842 | if ((window) && !(GTK_WIDGET_NO_WINDOW(m_widget))) |
9146082c | 2843 | gdk_window_set_cursor( window, cursor.GetCursor() ); |
5e014a0c | 2844 | |
6a008b33 | 2845 | } |
9146082c | 2846 | } |
6a008b33 | 2847 | |
9390a202 RR |
2848 | UpdateWindowUI(); |
2849 | } | |
2850 | ||
1e6feb95 | 2851 | void wxWindowGTK::DoGetSize( int *width, int *height ) const |
c801d85f | 2852 | { |
223d09f6 | 2853 | wxCHECK_RET( (m_widget != NULL), wxT("invalid window") ); |
47d67540 | 2854 | |
fb1585ae RR |
2855 | if (width) (*width) = m_width; |
2856 | if (height) (*height) = m_height; | |
362c6693 | 2857 | } |
c801d85f | 2858 | |
1e6feb95 | 2859 | void wxWindowGTK::DoSetClientSize( int width, int height ) |
c801d85f | 2860 | { |
223d09f6 | 2861 | wxCHECK_RET( (m_widget != NULL), wxT("invalid window") ); |
47d67540 | 2862 | |
1ecc4d80 | 2863 | if (!m_wxwindow) |
c801d85f | 2864 | { |
1ecc4d80 | 2865 | SetSize( width, height ); |
c801d85f KB |
2866 | } |
2867 | else | |
2868 | { | |
1ecc4d80 RR |
2869 | int dw = 0; |
2870 | int dh = 0; | |
2871 | ||
1e6feb95 | 2872 | #ifndef __WXUNIVERSAL__ |
98d3fdbe RR |
2873 | if (HasFlag(wxRAISED_BORDER) || HasFlag(wxSUNKEN_BORDER)) |
2874 | { | |
5e014a0c | 2875 | /* when using GTK 1.2 we set the shadow border size to 2 */ |
6a008b33 | 2876 | dw += 2 * 2; |
98d3fdbe RR |
2877 | dh += 2 * 2; |
2878 | } | |
5e014a0c RR |
2879 | if (HasFlag(wxSIMPLE_BORDER)) |
2880 | { | |
2881 | /* when using GTK 1.2 we set the simple border size to 1 */ | |
2882 | dw += 1 * 2; | |
2883 | dh += 1 * 2; | |
2884 | } | |
1e6feb95 | 2885 | #endif // __WXUNIVERSAL__ |
034be888 | 2886 | |
5b8a521e | 2887 | if (m_hasScrolling) |
98d3fdbe | 2888 | { |
324dbfec | 2889 | GtkScrolledWindow *scroll_window = GTK_SCROLLED_WINDOW(m_widget); |
2daa0ce9 | 2890 | |
9000c624 RR |
2891 | GtkRequisition vscroll_req; |
2892 | vscroll_req.width = 2; | |
2893 | vscroll_req.height = 2; | |
dd00f3f6 | 2894 | (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(scroll_window->vscrollbar) )->size_request ) |
9000c624 | 2895 | (scroll_window->vscrollbar, &vscroll_req ); |
2daa0ce9 | 2896 | |
9000c624 RR |
2897 | GtkRequisition hscroll_req; |
2898 | hscroll_req.width = 2; | |
2899 | hscroll_req.height = 2; | |
dd00f3f6 | 2900 | (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(scroll_window->hscrollbar) )->size_request ) |
9000c624 RR |
2901 | (scroll_window->hscrollbar, &hscroll_req ); |
2902 | ||
dd00f3f6 | 2903 | GtkScrolledWindowClass *scroll_class = GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT_GET_CLASS(m_widget) ); |
324dbfec | 2904 | |
1ecc4d80 RR |
2905 | if (scroll_window->vscrollbar_visible) |
2906 | { | |
9000c624 | 2907 | dw += vscroll_req.width; |
1ecc4d80 RR |
2908 | dw += scroll_class->scrollbar_spacing; |
2909 | } | |
2910 | ||
2911 | if (scroll_window->hscrollbar_visible) | |
2912 | { | |
9000c624 | 2913 | dh += hscroll_req.height; |
63cc5d9d | 2914 | dh += scroll_class->scrollbar_spacing; |
1ecc4d80 | 2915 | } |
9000c624 | 2916 | } |
1ecc4d80 | 2917 | |
034be888 | 2918 | SetSize( width+dw, height+dh ); |
1ecc4d80 | 2919 | } |
362c6693 | 2920 | } |
c801d85f | 2921 | |
1e6feb95 | 2922 | void wxWindowGTK::DoGetClientSize( int *width, int *height ) const |
c801d85f | 2923 | { |
223d09f6 | 2924 | wxCHECK_RET( (m_widget != NULL), wxT("invalid window") ); |
47d67540 | 2925 | |
1ecc4d80 RR |
2926 | if (!m_wxwindow) |
2927 | { | |
2928 | if (width) (*width) = m_width; | |
2929 | if (height) (*height) = m_height; | |
c801d85f KB |
2930 | } |
2931 | else | |
2932 | { | |
1ecc4d80 RR |
2933 | int dw = 0; |
2934 | int dh = 0; | |
2935 | ||
1e6feb95 | 2936 | #ifndef __WXUNIVERSAL__ |
98d3fdbe RR |
2937 | if (HasFlag(wxRAISED_BORDER) || HasFlag(wxSUNKEN_BORDER)) |
2938 | { | |
5e014a0c | 2939 | /* when using GTK 1.2 we set the shadow border size to 2 */ |
6a008b33 | 2940 | dw += 2 * 2; |
98d3fdbe RR |
2941 | dh += 2 * 2; |
2942 | } | |
5e014a0c RR |
2943 | if (HasFlag(wxSIMPLE_BORDER)) |
2944 | { | |
2945 | /* when using GTK 1.2 we set the simple border size to 1 */ | |
2946 | dw += 1 * 2; | |
2947 | dh += 1 * 2; | |
2948 | } | |
1e6feb95 | 2949 | #endif // __WXUNIVERSAL__ |
9000c624 | 2950 | |
5b8a521e | 2951 | if (m_hasScrolling) |
98d3fdbe | 2952 | { |
6a008b33 | 2953 | GtkScrolledWindow *scroll_window = GTK_SCROLLED_WINDOW(m_widget); |
2daa0ce9 | 2954 | |
9000c624 RR |
2955 | GtkRequisition vscroll_req; |
2956 | vscroll_req.width = 2; | |
2957 | vscroll_req.height = 2; | |
dd00f3f6 | 2958 | (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(scroll_window->vscrollbar) )->size_request ) |
9000c624 | 2959 | (scroll_window->vscrollbar, &vscroll_req ); |
2daa0ce9 | 2960 | |
9000c624 RR |
2961 | GtkRequisition hscroll_req; |
2962 | hscroll_req.width = 2; | |
2963 | hscroll_req.height = 2; | |
dd00f3f6 | 2964 | (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(scroll_window->hscrollbar) )->size_request ) |
9000c624 RR |
2965 | (scroll_window->hscrollbar, &hscroll_req ); |
2966 | ||
dd00f3f6 | 2967 | GtkScrolledWindowClass *scroll_class = GTK_SCROLLED_WINDOW_CLASS( GTK_OBJECT_GET_CLASS(m_widget) ); |
6a008b33 | 2968 | |
1ecc4d80 RR |
2969 | if (scroll_window->vscrollbar_visible) |
2970 | { | |
9000c624 | 2971 | dw += vscroll_req.width; |
1ecc4d80 RR |
2972 | dw += scroll_class->scrollbar_spacing; |
2973 | } | |
2974 | ||
2975 | if (scroll_window->hscrollbar_visible) | |
2976 | { | |
9000c624 | 2977 | dh += hscroll_req.height; |
1ecc4d80 RR |
2978 | dh += scroll_class->scrollbar_spacing; |
2979 | } | |
6a008b33 | 2980 | } |
47d67540 | 2981 | |
1ecc4d80 RR |
2982 | if (width) (*width) = m_width - dw; |
2983 | if (height) (*height) = m_height - dh; | |
2984 | } | |
1e6feb95 | 2985 | |
f94fca1b RR |
2986 | /* |
2987 | printf( "GetClientSize, name %s ", GetName().c_str() ); | |
2988 | if (width) printf( " width = %d", (*width) ); | |
2989 | if (height) printf( " height = %d", (*height) ); | |
2990 | printf( "\n" ); | |
2991 | */ | |
362c6693 | 2992 | } |
c801d85f | 2993 | |
1e6feb95 | 2994 | void wxWindowGTK::DoGetPosition( int *x, int *y ) const |
c801d85f | 2995 | { |
223d09f6 | 2996 | wxCHECK_RET( (m_widget != NULL), wxT("invalid window") ); |
47d67540 | 2997 | |
bf0c00c6 RR |
2998 | int dx = 0; |
2999 | int dy = 0; | |
3000 | if (m_parent && m_parent->m_wxwindow) | |
3001 | { | |
da048e3d | 3002 | GtkPizza *pizza = GTK_PIZZA(m_parent->m_wxwindow); |
b02da6b1 VZ |
3003 | dx = pizza->xoffset; |
3004 | dy = pizza->yoffset; | |
bf0c00c6 | 3005 | } |
94633ad9 | 3006 | |
496beb3f VS |
3007 | if (x) (*x) = m_x - dx; |
3008 | if (y) (*y) = m_y - dy; | |
362c6693 | 3009 | } |
c801d85f | 3010 | |
1e6feb95 | 3011 | void wxWindowGTK::DoClientToScreen( int *x, int *y ) const |
c801d85f | 3012 | { |
223d09f6 | 3013 | wxCHECK_RET( (m_widget != NULL), wxT("invalid window") ); |
47d67540 | 3014 | |
a2053b27 RR |
3015 | if (!m_widget->window) return; |
3016 | ||
43a18898 RR |
3017 | GdkWindow *source = (GdkWindow *) NULL; |
3018 | if (m_wxwindow) | |
da048e3d | 3019 | source = GTK_PIZZA(m_wxwindow)->bin_window; |
43a18898 RR |
3020 | else |
3021 | source = m_widget->window; | |
47d67540 | 3022 | |
43a18898 RR |
3023 | int org_x = 0; |
3024 | int org_y = 0; | |
3025 | gdk_window_get_origin( source, &org_x, &org_y ); | |
c801d85f | 3026 | |
43a18898 | 3027 | if (!m_wxwindow) |
c801d85f | 3028 | { |
43a18898 RR |
3029 | if (GTK_WIDGET_NO_WINDOW (m_widget)) |
3030 | { | |
3031 | org_x += m_widget->allocation.x; | |
3032 | org_y += m_widget->allocation.y; | |
3033 | } | |
362c6693 | 3034 | } |
47d67540 | 3035 | |
43a18898 RR |
3036 | if (x) *x += org_x; |
3037 | if (y) *y += org_y; | |
362c6693 | 3038 | } |
c801d85f | 3039 | |
1e6feb95 | 3040 | void wxWindowGTK::DoScreenToClient( int *x, int *y ) const |
c801d85f | 3041 | { |
223d09f6 | 3042 | wxCHECK_RET( (m_widget != NULL), wxT("invalid window") ); |
47d67540 | 3043 | |
a2053b27 RR |
3044 | if (!m_widget->window) return; |
3045 | ||
1ecc4d80 RR |
3046 | GdkWindow *source = (GdkWindow *) NULL; |
3047 | if (m_wxwindow) | |
da048e3d | 3048 | source = GTK_PIZZA(m_wxwindow)->bin_window; |
1ecc4d80 RR |
3049 | else |
3050 | source = m_widget->window; | |
47d67540 | 3051 | |
1ecc4d80 RR |
3052 | int org_x = 0; |
3053 | int org_y = 0; | |
3054 | gdk_window_get_origin( source, &org_x, &org_y ); | |
c801d85f | 3055 | |
1ecc4d80 | 3056 | if (!m_wxwindow) |
c801d85f | 3057 | { |
1ecc4d80 RR |
3058 | if (GTK_WIDGET_NO_WINDOW (m_widget)) |
3059 | { | |
3060 | org_x += m_widget->allocation.x; | |
3061 | org_y += m_widget->allocation.y; | |
3062 | } | |
362c6693 | 3063 | } |
47d67540 | 3064 | |
1ecc4d80 RR |
3065 | if (x) *x -= org_x; |
3066 | if (y) *y -= org_y; | |
362c6693 | 3067 | } |
c801d85f | 3068 | |
1e6feb95 | 3069 | bool wxWindowGTK::Show( bool show ) |
c801d85f | 3070 | { |
223d09f6 | 3071 | wxCHECK_MSG( (m_widget != NULL), FALSE, wxT("invalid window") ); |
47d67540 | 3072 | |
739730ca RR |
3073 | if (!wxWindowBase::Show(show)) |
3074 | { | |
3075 | // nothing to do | |
f03fc89f | 3076 | return FALSE; |
739730ca | 3077 | } |
8bbe427f | 3078 | |
f03fc89f VZ |
3079 | if (show) |
3080 | gtk_widget_show( m_widget ); | |
1ecc4d80 | 3081 | else |
f03fc89f | 3082 | gtk_widget_hide( m_widget ); |
8bbe427f | 3083 | |
f03fc89f | 3084 | return TRUE; |
362c6693 | 3085 | } |
c801d85f | 3086 | |
3379ed37 | 3087 | static void wxWindowNotifyEnable(wxWindowGTK* win, bool enable) |
fdca68a6 JS |
3088 | { |
3089 | win->OnParentEnable(enable); | |
3090 | ||
3091 | // Recurse, so that children have the opportunity to Do The Right Thing | |
3092 | // and reset colours that have been messed up by a parent's (really ancestor's) | |
3093 | // Enable call | |
3094 | for ( wxWindowList::Node *node = win->GetChildren().GetFirst(); | |
3095 | node; | |
3096 | node = node->GetNext() ) | |
3097 | { | |
3098 | wxWindow *child = node->GetData(); | |
3099 | if (!child->IsKindOf(CLASSINFO(wxDialog)) && !child->IsKindOf(CLASSINFO(wxFrame))) | |
3100 | wxWindowNotifyEnable(child, enable); | |
3101 | } | |
3102 | } | |
3103 | ||
3379ed37 | 3104 | bool wxWindowGTK::Enable( bool enable ) |
c801d85f | 3105 | { |
223d09f6 | 3106 | wxCHECK_MSG( (m_widget != NULL), FALSE, wxT("invalid window") ); |
5e0aa05a | 3107 | |
739730ca RR |
3108 | if (!wxWindowBase::Enable(enable)) |
3109 | { | |
3110 | // nothing to do | |
f03fc89f | 3111 | return FALSE; |
739730ca | 3112 | } |
1ecc4d80 | 3113 | |
f03fc89f VZ |
3114 | gtk_widget_set_sensitive( m_widget, enable ); |
3115 | if ( m_wxwindow ) | |
3116 | gtk_widget_set_sensitive( m_wxwindow, enable ); | |
ff8bfdbb | 3117 | |
fdca68a6 | 3118 | wxWindowNotifyEnable(this, enable); |
513903c4 | 3119 | |
f03fc89f | 3120 | return TRUE; |
362c6693 | 3121 | } |
c801d85f | 3122 | |
1e6feb95 | 3123 | int wxWindowGTK::GetCharHeight() const |
2f2aa628 | 3124 | { |
223d09f6 | 3125 | wxCHECK_MSG( (m_widget != NULL), 12, wxT("invalid window") ); |
47d67540 | 3126 | |
223d09f6 | 3127 | wxCHECK_MSG( m_font.Ok(), 12, wxT("invalid font") ); |
2f2aa628 | 3128 | |
f03fc89f VZ |
3129 | GdkFont *font = m_font.GetInternalFont( 1.0 ); |
3130 | ||
3131 | return font->ascent + font->descent; | |
362c6693 | 3132 | } |
c801d85f | 3133 | |
1e6feb95 | 3134 | int wxWindowGTK::GetCharWidth() const |
c33c4050 | 3135 | { |
223d09f6 | 3136 | wxCHECK_MSG( (m_widget != NULL), 8, wxT("invalid window") ); |
47d67540 | 3137 | |
223d09f6 | 3138 | wxCHECK_MSG( m_font.Ok(), 8, wxT("invalid font") ); |
47d67540 | 3139 | |
463c1fa1 | 3140 | GdkFont *font = m_font.GetInternalFont( 1.0 ); |
ff8bfdbb | 3141 | |
463c1fa1 | 3142 | return gdk_string_width( font, "H" ); |
c33c4050 RR |
3143 | } |
3144 | ||
1e6feb95 | 3145 | void wxWindowGTK::GetTextExtent( const wxString& string, |
f03fc89f VZ |
3146 | int *x, |
3147 | int *y, | |
3148 | int *descent, | |
3149 | int *externalLeading, | |
3150 | const wxFont *theFont ) const | |
c33c4050 | 3151 | { |
463c1fa1 RR |
3152 | wxFont fontToUse = m_font; |
3153 | if (theFont) fontToUse = *theFont; | |
47d67540 | 3154 | |
223d09f6 | 3155 | wxCHECK_RET( fontToUse.Ok(), wxT("invalid font") ); |
48d011c8 RR |
3156 | |
3157 | if (string.IsEmpty()) | |
3158 | { | |
b15ed747 RR |
3159 | if (x) (*x) = 0; |
3160 | if (y) (*y) = 0; | |
48d011c8 RR |
3161 | return; |
3162 | } | |
3163 | #ifdef __WXGTK20__ | |
47d67540 | 3164 | |
48d011c8 RR |
3165 | PangoContext *context = NULL; |
3166 | if (m_widget) | |
3167 | gtk_widget_get_pango_context( m_widget ); | |
3168 | ||
3169 | if (!context) | |
3170 | { | |
b15ed747 RR |
3171 | if (x) (*x) = 0; |
3172 | if (y) (*y) = 0; | |
48d011c8 RR |
3173 | return; |
3174 | } | |
3175 | ||
3176 | PangoFontDescription *desc = fontToUse.GetNativeFontInfo()->description; | |
3177 | PangoLayout *layout = pango_layout_new(context); | |
3178 | pango_layout_set_font_description(layout, desc); | |
3179 | { | |
fb3ed106 | 3180 | #if wxUSE_UNICODE |
48d011c8 RR |
3181 | const wxCharBuffer data = wxConvUTF8.cWC2MB( string ); |
3182 | pango_layout_set_text(layout, (const char*) data, strlen( (const char*) data )); | |
fb3ed106 RR |
3183 | #else |
3184 | const wxWCharBuffer wdata = wxConvLocal.cMB2WC( string ); | |
3185 | const wxCharBuffer data = wxConvUTF8.cWC2MB( wdata ); | |
3186 | pango_layout_set_text(layout, (const char*) data, strlen( (const char*) data )); | |
3187 | #endif | |
48d011c8 RR |
3188 | } |
3189 | PangoLayoutLine *line = (PangoLayoutLine *)pango_layout_get_lines(layout)->data; | |
3190 | ||
3191 | PangoRectangle rect; | |
3192 | pango_layout_line_get_extents(line, NULL, &rect); | |
3193 | ||
b15ed747 RR |
3194 | if (x) (*x) = (wxCoord) (rect.width / PANGO_SCALE); |
3195 | if (y) (*y) = (wxCoord) (rect.height / PANGO_SCALE); | |
48d011c8 RR |
3196 | if (descent) |
3197 | { | |
3198 | // Do something about metrics here | |
3199 | (*descent) = 0; | |
3200 | } | |
3201 | if (externalLeading) (*externalLeading) = 0; // ?? | |
3202 | ||
3203 | g_object_unref( G_OBJECT( layout ) ); | |
3204 | #else | |
463c1fa1 | 3205 | GdkFont *font = fontToUse.GetInternalFont( 1.0 ); |
fab591c5 | 3206 | if (x) (*x) = gdk_string_width( font, wxGTK_CONV( string ) ); |
463c1fa1 RR |
3207 | if (y) (*y) = font->ascent + font->descent; |
3208 | if (descent) (*descent) = font->descent; | |
3209 | if (externalLeading) (*externalLeading) = 0; // ?? | |
48d011c8 | 3210 | #endif |
c33c4050 RR |
3211 | } |
3212 | ||
1e6feb95 | 3213 | void wxWindowGTK::SetFocus() |
c801d85f | 3214 | { |
6cad4f1b VZ |
3215 | wxCHECK_RET( m_widget != NULL, wxT("invalid window") ); |
3216 | ||
3217 | if ( m_hasFocus ) | |
3218 | { | |
3219 | // don't do anything if we already have focus | |
3220 | return; | |
3221 | } | |
2daa0ce9 | 3222 | |
354aa1e3 RR |
3223 | if (m_wxwindow) |
3224 | { | |
173348db | 3225 | if (!GTK_WIDGET_HAS_FOCUS (m_wxwindow)) |
b231914f | 3226 | { |
173348db | 3227 | gtk_widget_grab_focus (m_wxwindow); |
b231914f | 3228 | } |
354aa1e3 | 3229 | } |
b231914f | 3230 | else if (m_widget) |
c801d85f | 3231 | { |
173348db | 3232 | if (GTK_WIDGET_CAN_FOCUS(m_widget) && !GTK_WIDGET_HAS_FOCUS (m_widget) ) |
463c1fa1 | 3233 | { |
d7fa7eaa | 3234 | if (!GTK_WIDGET_REALIZED(m_widget)) |
6aeb6f2a | 3235 | { |
6cad4f1b VZ |
3236 | // we can't set the focus to the widget now so we remember that |
3237 | // it should be focused and will do it later, during the idle | |
3238 | // time, as soon as we can | |
3239 | wxLogTrace(TRACE_FOCUS, | |
3240 | _T("Delaying setting focus to %s(%s)"), | |
6aeb6f2a VZ |
3241 | GetClassInfo()->GetClassName(), GetLabel().c_str()); |
3242 | ||
d7fa7eaa | 3243 | g_delayedFocus = this; |
6aeb6f2a | 3244 | } |
d7fa7eaa | 3245 | else |
6aeb6f2a | 3246 | { |
6cad4f1b VZ |
3247 | wxLogTrace(TRACE_FOCUS, |
3248 | _T("Setting focus to %s(%s)"), | |
6aeb6f2a VZ |
3249 | GetClassInfo()->GetClassName(), GetLabel().c_str()); |
3250 | ||
d7fa7eaa | 3251 | gtk_widget_grab_focus (m_widget); |
6aeb6f2a | 3252 | } |
463c1fa1 | 3253 | } |
354aa1e3 | 3254 | else if (GTK_IS_CONTAINER(m_widget)) |
ff8bfdbb | 3255 | { |
9e691f46 | 3256 | SET_CONTAINER_FOCUS( m_widget, GTK_DIR_TAB_FORWARD ); |
ff8bfdbb VZ |
3257 | } |
3258 | else | |
3259 | { | |
6cad4f1b VZ |
3260 | wxLogTrace(TRACE_FOCUS, |
3261 | _T("Can't set focus to %s(%s)"), | |
3262 | GetClassInfo()->GetClassName(), GetLabel().c_str()); | |
ff8bfdbb | 3263 | } |
362c6693 | 3264 | } |
362c6693 | 3265 | } |
c801d85f | 3266 | |
1e6feb95 | 3267 | bool wxWindowGTK::AcceptsFocus() const |
b292e2f5 | 3268 | { |
f03fc89f | 3269 | return m_acceptsFocus && wxWindowBase::AcceptsFocus(); |
b292e2f5 RR |
3270 | } |
3271 | ||
1e6feb95 | 3272 | bool wxWindowGTK::Reparent( wxWindowBase *newParentBase ) |
463c1fa1 | 3273 | { |
223d09f6 | 3274 | wxCHECK_MSG( (m_widget != NULL), FALSE, wxT("invalid window") ); |
c50f1fb9 | 3275 | |
1e6feb95 VZ |
3276 | wxWindowGTK *oldParent = m_parent, |
3277 | *newParent = (wxWindowGTK *)newParentBase; | |
a2053b27 | 3278 | |
5fd11f09 RR |
3279 | wxASSERT( GTK_IS_WIDGET(m_widget) ); |
3280 | ||
f03fc89f VZ |
3281 | if ( !wxWindowBase::Reparent(newParent) ) |
3282 | return FALSE; | |
8bbe427f | 3283 | |
5fd11f09 RR |
3284 | wxASSERT( GTK_IS_WIDGET(m_widget) ); |
3285 | ||
3286 | /* prevent GTK from deleting the widget arbitrarily */ | |
3287 | gtk_widget_ref( m_widget ); | |
3288 | ||
8ce63e9d RR |
3289 | if (oldParent) |
3290 | { | |
3017f78d | 3291 | gtk_container_remove( GTK_CONTAINER(m_widget->parent), m_widget ); |
8ce63e9d | 3292 | } |
c50f1fb9 | 3293 | |
5fd11f09 RR |
3294 | wxASSERT( GTK_IS_WIDGET(m_widget) ); |
3295 | ||
8ce63e9d RR |
3296 | if (newParent) |
3297 | { | |
3298 | /* insert GTK representation */ | |
3299 | (*(newParent->m_insertCallback))(newParent, this); | |
3300 | } | |
c50f1fb9 | 3301 | |
5fd11f09 RR |
3302 | /* reverse: prevent GTK from deleting the widget arbitrarily */ |
3303 | gtk_widget_unref( m_widget ); | |
148cd9b6 | 3304 | |
f03fc89f | 3305 | return TRUE; |
362c6693 | 3306 | } |
c801d85f | 3307 | |
1e6feb95 | 3308 | void wxWindowGTK::DoAddChild(wxWindowGTK *child) |
ddb6bc71 | 3309 | { |
223d09f6 | 3310 | wxASSERT_MSG( (m_widget != NULL), wxT("invalid window") ); |
ddb6bc71 | 3311 | |
223d09f6 | 3312 | wxASSERT_MSG( (child != NULL), wxT("invalid child window") ); |
ddb6bc71 | 3313 | |
223d09f6 | 3314 | wxASSERT_MSG( (m_insertCallback != NULL), wxT("invalid child insertion function") ); |
c50f1fb9 | 3315 | |
ddb6bc71 RR |
3316 | /* add to list */ |
3317 | AddChild( child ); | |
c50f1fb9 | 3318 | |
ddb6bc71 RR |
3319 | /* insert GTK representation */ |
3320 | (*m_insertCallback)(this, child); | |
3321 | } | |
3322 | ||
1e6feb95 | 3323 | void wxWindowGTK::Raise() |
362c6693 | 3324 | { |
223d09f6 | 3325 | wxCHECK_RET( (m_widget != NULL), wxT("invalid window") ); |
47d67540 | 3326 | |
a2053b27 RR |
3327 | if (!m_widget->window) return; |
3328 | ||
f03fc89f | 3329 | gdk_window_raise( m_widget->window ); |
362c6693 RR |
3330 | } |
3331 | ||
1e6feb95 | 3332 | void wxWindowGTK::Lower() |
362c6693 | 3333 | { |
223d09f6 | 3334 | wxCHECK_RET( (m_widget != NULL), wxT("invalid window") ); |
47d67540 | 3335 | |
a2053b27 RR |
3336 | if (!m_widget->window) return; |
3337 | ||
f03fc89f | 3338 | gdk_window_lower( m_widget->window ); |
362c6693 | 3339 | } |
c801d85f | 3340 | |
1e6feb95 | 3341 | bool wxWindowGTK::SetCursor( const wxCursor &cursor ) |
86b29a61 | 3342 | { |
223d09f6 | 3343 | wxCHECK_MSG( (m_widget != NULL), FALSE, wxT("invalid window") ); |
86b29a61 | 3344 | |
f6bcfd97 BP |
3345 | if (cursor == m_cursor) |
3346 | return FALSE; | |
3347 | ||
3348 | if (g_isIdle) | |
3349 | wxapp_install_idle_handler(); | |
1e6feb95 | 3350 | |
f6bcfd97 BP |
3351 | if (cursor == wxNullCursor) |
3352 | return wxWindowBase::SetCursor( *wxSTANDARD_CURSOR ); | |
3353 | else | |
3354 | return wxWindowBase::SetCursor( cursor ); | |
362c6693 | 3355 | } |
c801d85f | 3356 | |
1e6feb95 | 3357 | void wxWindowGTK::WarpPointer( int x, int y ) |
4f22cf8d | 3358 | { |
223d09f6 | 3359 | wxCHECK_RET( (m_widget != NULL), wxT("invalid window") ); |
85eb36c2 | 3360 | |
3bcc8d15 RR |
3361 | // We provide this function ourselves as it is |
3362 | // missing in GDK (top of this file). | |
148cd9b6 | 3363 | |
ed673c6a RR |
3364 | GdkWindow *window = (GdkWindow*) NULL; |
3365 | if (m_wxwindow) | |
da048e3d | 3366 | window = GTK_PIZZA(m_wxwindow)->bin_window; |
ed673c6a RR |
3367 | else |
3368 | window = GetConnectWidget()->window; | |
148cd9b6 | 3369 | |
ed673c6a RR |
3370 | if (window) |
3371 | gdk_window_warp_pointer( window, x, y ); | |
4f22cf8d RR |
3372 | } |
3373 | ||
3013a903 | 3374 | |
1e6feb95 | 3375 | void wxWindowGTK::Refresh( bool eraseBackground, const wxRect *rect ) |
c801d85f | 3376 | { |
f2593d0d | 3377 | if (!m_widget) return; |
a2053b27 | 3378 | if (!m_widget->window) return; |
3013a903 | 3379 | |
4e5a4c69 | 3380 | #ifndef __WXGTK20__ |
ea323db3 RR |
3381 | if (g_isIdle) |
3382 | wxapp_install_idle_handler(); | |
3383 | ||
139adb6a | 3384 | if (eraseBackground && m_wxwindow && m_wxwindow->window) |
c801d85f | 3385 | { |
139adb6a RR |
3386 | if (rect) |
3387 | { | |
3bcc8d15 RR |
3388 | // Schedule for later Updating in ::Update() or ::OnInternalIdle(). |
3389 | m_clearRegion.Union( rect->x, rect->y, rect->width, rect->height ); | |
139adb6a RR |
3390 | } |
3391 | else | |
3392 | { | |
3bcc8d15 RR |
3393 | // Schedule for later Updating in ::Update() or ::OnInternalIdle(). |
3394 | m_clearRegion.Clear(); | |
3395 | m_clearRegion.Union( 0, 0, m_wxwindow->allocation.width, m_wxwindow->allocation.height ); | |
139adb6a RR |
3396 | } |
3397 | } | |
ff8bfdbb | 3398 | |
3bcc8d15 | 3399 | if (rect) |
139adb6a RR |
3400 | { |
3401 | if (m_wxwindow) | |
b02da6b1 | 3402 | { |
23716407 | 3403 | // Schedule for later Updating in ::Update() or ::OnInternalIdle(). |
3bcc8d15 | 3404 | m_updateRegion.Union( rect->x, rect->y, rect->width, rect->height ); |
b02da6b1 | 3405 | } |
ff8bfdbb | 3406 | else |
b6fa52db | 3407 | { |
3bcc8d15 RR |
3408 | GdkRectangle gdk_rect; |
3409 | gdk_rect.x = rect->x; | |
3410 | gdk_rect.y = rect->y; | |
3411 | gdk_rect.width = rect->width; | |
3412 | gdk_rect.height = rect->height; | |
3413 | gtk_widget_draw( m_widget, &gdk_rect ); | |
b6fa52db | 3414 | } |
362c6693 | 3415 | } |
c801d85f | 3416 | else |
139adb6a | 3417 | { |
139adb6a | 3418 | if (m_wxwindow) |
b02da6b1 | 3419 | { |
23716407 | 3420 | // Schedule for later Updating in ::Update() or ::OnInternalIdle(). |
3bcc8d15 RR |
3421 | m_updateRegion.Clear(); |
3422 | m_updateRegion.Union( 0, 0, m_wxwindow->allocation.width, m_wxwindow->allocation.height ); | |
b02da6b1 | 3423 | } |
139adb6a | 3424 | else |
b6fa52db | 3425 | { |
3bcc8d15 | 3426 | gtk_widget_draw( m_widget, (GdkRectangle*) NULL ); |
b6fa52db | 3427 | } |
139adb6a | 3428 | } |
4e5a4c69 RR |
3429 | #else |
3430 | if (m_wxwindow) | |
3431 | { | |
3432 | if (rect) | |
3433 | { | |
3434 | GdkRectangle gdk_rect; | |
3435 | gdk_rect.x = rect->x; | |
3436 | gdk_rect.y = rect->y; | |
3437 | gdk_rect.width = rect->width; | |
3438 | gdk_rect.height = rect->height; | |
3439 | gdk_window_invalidate_rect( GTK_PIZZA(m_wxwindow)->bin_window, &gdk_rect, TRUE ); | |
3440 | } | |
3441 | else | |
3442 | { | |
3443 | gdk_window_invalidate_rect( GTK_PIZZA(m_wxwindow)->bin_window, NULL, TRUE ); | |
3444 | } | |
3445 | } | |
3446 | #endif | |
362c6693 | 3447 | } |
c801d85f | 3448 | |
beab25bd | 3449 | void wxWindowGTK::Update() |
010afced RR |
3450 | { |
3451 | GtkUpdate(); | |
3452 | } | |
3453 | ||
3454 | void wxWindowGTK::GtkUpdate() | |
beab25bd | 3455 | { |
4e5a4c69 RR |
3456 | #ifdef __WXGTK20__ |
3457 | if (m_wxwindow && GTK_PIZZA(m_wxwindow)->bin_window) | |
3458 | gdk_window_process_updates( GTK_PIZZA(m_wxwindow)->bin_window, FALSE ); | |
b15ed747 | 3459 | #else |
beab25bd | 3460 | if (!m_updateRegion.IsEmpty()) |
23716407 | 3461 | GtkSendPaintEvents(); |
b15ed747 | 3462 | #endif |
beab25bd RR |
3463 | } |
3464 | ||
3465 | void wxWindowGTK::GtkSendPaintEvents() | |
3466 | { | |
3bcc8d15 RR |
3467 | if (!m_wxwindow) |
3468 | { | |
b15ed747 | 3469 | #ifndef __WXGTK20__ |
3bcc8d15 | 3470 | m_clearRegion.Clear(); |
b15ed747 | 3471 | #endif |
3bcc8d15 RR |
3472 | m_updateRegion.Clear(); |
3473 | return; | |
3474 | } | |
beab25bd | 3475 | |
f90566f5 | 3476 | // Clip to paint region in wxClientDC |
3bcc8d15 | 3477 | m_clipPaintRegion = TRUE; |
fab591c5 | 3478 | |
b15ed747 RR |
3479 | #ifndef __WXGTK20__ |
3480 | // widget to draw on | |
3481 | GtkPizza *pizza = GTK_PIZZA (m_wxwindow); | |
3482 | ||
3483 | // later for GTK 2.0, too. | |
f90566f5 RR |
3484 | if (GetThemeEnabled()) |
3485 | { | |
3486 | // find ancestor from which to steal background | |
3487 | wxWindow *parent = GetParent(); | |
3488 | while (parent && !parent->IsTopLevel()) | |
3489 | parent = parent->GetParent(); | |
3490 | if (!parent) | |
cc06fe74 | 3491 | parent = (wxWindow*)this; |
f90566f5 RR |
3492 | |
3493 | wxRegionIterator upd( m_updateRegion ); | |
3494 | while (upd) | |
3495 | { | |
3496 | GdkRectangle rect; | |
3497 | rect.x = upd.GetX(); | |
3498 | rect.y = upd.GetY(); | |
3499 | rect.width = upd.GetWidth(); | |
3500 | rect.height = upd.GetHeight(); | |
3501 | ||
3502 | gtk_paint_flat_box( parent->m_widget->style, | |
3503 | pizza->bin_window, | |
3504 | GTK_STATE_NORMAL, | |
3505 | GTK_SHADOW_NONE, | |
3506 | &rect, | |
3507 | parent->m_widget, | |
3508 | (char *)"base", | |
3509 | 0, 0, -1, -1 ); | |
3510 | ||
3511 | upd ++; | |
3512 | } | |
3513 | } | |
3514 | else | |
fab591c5 | 3515 | #endif |
b15ed747 RR |
3516 | |
3517 | #ifdef __WXGTK20__ | |
3518 | { | |
3519 | wxWindowDC dc( (wxWindow*)this ); | |
3520 | dc.SetClippingRegion( m_updateRegion ); | |
3521 | ||
3522 | wxEraseEvent erase_event( GetId(), &dc ); | |
3523 | erase_event.SetEventObject( this ); | |
3524 | ||
3525 | GetEventHandler()->ProcessEvent(erase_event); | |
3526 | } | |
3527 | #else | |
3528 | // if (!m_clearRegion.IsEmpty()) // Always send an erase event under GTK 1.2 | |
beab25bd | 3529 | { |
3bcc8d15 | 3530 | wxWindowDC dc( (wxWindow*)this ); |
62cb3cd8 RR |
3531 | if (m_clearRegion.IsEmpty()) |
3532 | dc.SetClippingRegion( m_updateRegion ); | |
3533 | else | |
3534 | dc.SetClippingRegion( m_clearRegion ); | |
0fc5dbf5 | 3535 | |
3bcc8d15 RR |
3536 | wxEraseEvent erase_event( GetId(), &dc ); |
3537 | erase_event.SetEventObject( this ); | |
0fc5dbf5 | 3538 | |
beab25bd RR |
3539 | if (!GetEventHandler()->ProcessEvent(erase_event)) |
3540 | { | |
994bc575 RR |
3541 | if (!g_eraseGC) |
3542 | { | |
f90566f5 | 3543 | g_eraseGC = gdk_gc_new( pizza->bin_window ); |
994bc575 RR |
3544 | gdk_gc_set_fill( g_eraseGC, GDK_SOLID ); |
3545 | } | |
4e5a4c69 | 3546 | gdk_gc_set_foreground( g_eraseGC, m_backgroundColour.GetColor() ); |
0fc5dbf5 | 3547 | |
3bcc8d15 | 3548 | wxRegionIterator upd( m_clearRegion ); |
beab25bd RR |
3549 | while (upd) |
3550 | { | |
f90566f5 RR |
3551 | gdk_draw_rectangle( pizza->bin_window, g_eraseGC, 1, |
3552 | upd.GetX(), upd.GetY(), upd.GetWidth(), upd.GetHeight() ); | |
beab25bd RR |
3553 | upd ++; |
3554 | } | |
3555 | } | |
3bcc8d15 | 3556 | m_clearRegion.Clear(); |
beab25bd | 3557 | } |
b15ed747 | 3558 | #endif |
beab25bd RR |
3559 | |
3560 | wxNcPaintEvent nc_paint_event( GetId() ); | |
3561 | nc_paint_event.SetEventObject( this ); | |
3562 | GetEventHandler()->ProcessEvent( nc_paint_event ); | |
3563 | ||
3564 | wxPaintEvent paint_event( GetId() ); | |
3565 | paint_event.SetEventObject( this ); | |
3566 | GetEventHandler()->ProcessEvent( paint_event ); | |
3567 | ||
beab25bd | 3568 | m_clipPaintRegion = FALSE; |
c89f5c02 | 3569 | |
8f3e7ecc | 3570 | #ifndef __WXUNIVERSAL__ |
4e5a4c69 | 3571 | #ifndef __WXGTK20__ |
8f3e7ecc RR |
3572 | // The following code will result in all window-less widgets |
3573 | // being redrawn because the wxWindows class is allowed to | |
3574 | // paint over the window-less widgets. | |
0fc5dbf5 | 3575 | |
8f3e7ecc RR |
3576 | GList *children = pizza->children; |
3577 | while (children) | |
c89f5c02 | 3578 | { |
8f3e7ecc RR |
3579 | GtkPizzaChild *child = (GtkPizzaChild*) children->data; |
3580 | children = children->next; | |
d7fa7eaa | 3581 | |
8f3e7ecc RR |
3582 | if (GTK_WIDGET_NO_WINDOW (child->widget) && |
3583 | GTK_WIDGET_DRAWABLE (child->widget)) | |
3584 | { | |
3585 | // Get intersection of widget area and update region | |
3586 | wxRegion region( m_updateRegion ); | |
0fc5dbf5 | 3587 | |
8f3e7ecc RR |
3588 | GdkEventExpose gdk_event; |
3589 | gdk_event.type = GDK_EXPOSE; | |
3590 | gdk_event.window = pizza->bin_window; | |
3591 | gdk_event.count = 0; | |
0fc5dbf5 | 3592 | |
8f3e7ecc RR |
3593 | wxRegionIterator upd( m_updateRegion ); |
3594 | while (upd) | |
c89f5c02 | 3595 | { |
8f3e7ecc RR |
3596 | GdkRectangle rect; |
3597 | rect.x = upd.GetX(); | |
3598 | rect.y = upd.GetY(); | |
3599 | rect.width = upd.GetWidth(); | |
3600 | rect.height = upd.GetHeight(); | |
0fc5dbf5 | 3601 | |
8f3e7ecc RR |
3602 | if (gtk_widget_intersect (child->widget, &rect, &gdk_event.area)) |
3603 | { | |
3604 | gtk_widget_event (child->widget, (GdkEvent*) &gdk_event); | |
3605 | } | |
0fc5dbf5 | 3606 | |
8f3e7ecc | 3607 | upd ++; |
c89f5c02 RR |
3608 | } |
3609 | } | |
3610 | } | |
4e5a4c69 | 3611 | #endif |
8f3e7ecc | 3612 | #endif |
c89f5c02 RR |
3613 | |
3614 | m_updateRegion.Clear(); | |
beab25bd RR |
3615 | } |
3616 | ||
1e6feb95 | 3617 | void wxWindowGTK::Clear() |
c801d85f | 3618 | { |
223d09f6 | 3619 | wxCHECK_RET( m_widget != NULL, wxT("invalid window") ); |
47d67540 | 3620 | |
b15ed747 | 3621 | #ifndef __WXGTK20__ |
f234c60c RR |
3622 | if (m_wxwindow && m_wxwindow->window) |
3623 | { | |
d7fa7eaa RR |
3624 | m_clearRegion.Clear(); |
3625 | wxSize size( GetClientSize() ); | |
3626 | m_clearRegion.Union( 0,0,size.x,size.y ); | |
3627 | ||
3628 | // Better do this in idle? | |
010afced | 3629 | GtkUpdate(); |
f234c60c | 3630 | } |
b15ed747 | 3631 | #endif |
362c6693 | 3632 | } |
c801d85f | 3633 | |
ff8bfdbb | 3634 | #if wxUSE_TOOLTIPS |
1e6feb95 | 3635 | void wxWindowGTK::DoSetToolTip( wxToolTip *tip ) |
b1170810 | 3636 | { |
f03fc89f | 3637 | wxWindowBase::DoSetToolTip(tip); |
ff8bfdbb | 3638 | |
f03fc89f | 3639 | if (m_tooltip) |
3379ed37 | 3640 | m_tooltip->Apply( (wxWindow *)this ); |
b1170810 RR |
3641 | } |
3642 | ||
1e6feb95 | 3643 | void wxWindowGTK::ApplyToolTip( GtkTooltips *tips, const wxChar *tip ) |
b1170810 | 3644 | { |
dcf924a3 | 3645 | gtk_tooltips_set_tip( tips, GetConnectWidget(), wxConvCurrent->cWX2MB(tip), (gchar*) NULL ); |
301cd871 | 3646 | } |
ff8bfdbb | 3647 | #endif // wxUSE_TOOLTIPS |
b1170810 | 3648 | |
ea323db3 RR |
3649 | void wxWindowGTK::GtkSetBackgroundColour( const wxColour &colour ) |
3650 | { | |
3651 | GdkWindow *window = (GdkWindow*) NULL; | |
3652 | if (m_wxwindow) | |
3653 | window = GTK_PIZZA(m_wxwindow)->bin_window; | |
3654 | else | |
3655 | window = GetConnectWidget()->window; | |
3656 | ||
3657 | wxASSERT( window ); | |
3658 | ||
3659 | // We need the pixel value e.g. for background clearing. | |
3660 | m_backgroundColour.CalcPixel( gdk_window_get_colormap( window ) ); | |
3661 | ||
f90566f5 | 3662 | if (m_wxwindow) |
ea323db3 | 3663 | { |
f90566f5 | 3664 | // wxMSW doesn't clear the window here, either. |
ea323db3 RR |
3665 | gdk_window_set_background( window, m_backgroundColour.GetColor() ); |
3666 | } | |
3667 | ||
3668 | ApplyWidgetStyle(); | |
3669 | } | |
3670 | ||
1e6feb95 | 3671 | bool wxWindowGTK::SetBackgroundColour( const wxColour &colour ) |
c801d85f | 3672 | { |
223d09f6 | 3673 | wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid window") ); |
8bbe427f | 3674 | |
739730ca | 3675 | if (!wxWindowBase::SetBackgroundColour(colour)) |
ea323db3 | 3676 | return FALSE; |
c50f1fb9 | 3677 | |
ed673c6a RR |
3678 | GdkWindow *window = (GdkWindow*) NULL; |
3679 | if (m_wxwindow) | |
da048e3d | 3680 | window = GTK_PIZZA(m_wxwindow)->bin_window; |
ed673c6a RR |
3681 | else |
3682 | window = GetConnectWidget()->window; | |
148cd9b6 | 3683 | |
ed673c6a | 3684 | if (!window) |
739730ca RR |
3685 | { |
3686 | // indicate that a new style has been set | |
c50f1fb9 VZ |
3687 | // but it couldn't get applied as the |
3688 | // widget hasn't been realized yet. | |
3689 | m_delayedBackgroundColour = TRUE; | |
ea323db3 | 3690 | return TRUE; |
739730ca | 3691 | } |
ea323db3 | 3692 | else |
994bc575 | 3693 | { |
ea323db3 | 3694 | GtkSetBackgroundColour( colour ); |
994bc575 | 3695 | } |
ca298c88 | 3696 | |
ea323db3 RR |
3697 | return TRUE; |
3698 | } | |
8bbe427f | 3699 | |
ea323db3 RR |
3700 | void wxWindowGTK::GtkSetForegroundColour( const wxColour &colour ) |
3701 | { | |
3702 | GdkWindow *window = (GdkWindow*) NULL; | |
3703 | if (m_wxwindow) | |
3704 | window = GTK_PIZZA(m_wxwindow)->bin_window; | |
3705 | else | |
3706 | window = GetConnectWidget()->window; | |
c801d85f | 3707 | |
ea323db3 RR |
3708 | wxASSERT( window ); |
3709 | ||
3710 | ApplyWidgetStyle(); | |
6de97a3b RR |
3711 | } |
3712 | ||
1e6feb95 | 3713 | bool wxWindowGTK::SetForegroundColour( const wxColour &colour ) |
6de97a3b | 3714 | { |
223d09f6 | 3715 | wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid window") ); |
8bbe427f | 3716 | |
739730ca RR |
3717 | if (!wxWindowBase::SetForegroundColour(colour)) |
3718 | { | |
3719 | // don't leave if the GTK widget has just | |
3720 | // been realized | |
3721 | if (!m_delayedForegroundColour) return FALSE; | |
3722 | } | |
c50f1fb9 | 3723 | |
ed673c6a RR |
3724 | GdkWindow *window = (GdkWindow*) NULL; |
3725 | if (m_wxwindow) | |
da048e3d | 3726 | window = GTK_PIZZA(m_wxwindow)->bin_window; |
ed673c6a RR |
3727 | else |
3728 | window = GetConnectWidget()->window; | |
148cd9b6 | 3729 | |
ed673c6a | 3730 | if (!window) |
739730ca RR |
3731 | { |
3732 | // indicate that a new style has been set | |
c50f1fb9 VZ |
3733 | // but it couldn't get applied as the |
3734 | // widget hasn't been realized yet. | |
3735 | m_delayedForegroundColour = TRUE; | |
739730ca | 3736 | } |
ea323db3 RR |
3737 | else |
3738 | { | |
3739 | GtkSetForegroundColour( colour ); | |
3740 | } | |
f03fc89f VZ |
3741 | |
3742 | return TRUE; | |
58614078 RR |
3743 | } |
3744 | ||
1e6feb95 | 3745 | GtkStyle *wxWindowGTK::GetWidgetStyle() |
58614078 | 3746 | { |
103aab26 RR |
3747 | if (m_widgetStyle) |
3748 | { | |
3749 | GtkStyle *remake = gtk_style_copy( m_widgetStyle ); | |
9e691f46 VZ |
3750 | |
3751 | // FIXME: no more klass in 2.0 | |
3752 | #ifndef __WXGTK20__ | |
103aab26 | 3753 | remake->klass = m_widgetStyle->klass; |
dd00f3f6 | 3754 | #endif |
2daa0ce9 | 3755 | |
103aab26 RR |
3756 | gtk_style_unref( m_widgetStyle ); |
3757 | m_widgetStyle = remake; | |
3758 | } | |
3759 | else | |
3760 | { | |
3761 | GtkStyle *def = gtk_rc_get_style( m_widget ); | |
e6527f9d | 3762 | |
103aab26 RR |
3763 | if (!def) |
3764 | def = gtk_widget_get_default_style(); | |
e6527f9d | 3765 | |
103aab26 | 3766 | m_widgetStyle = gtk_style_copy( def ); |
9e691f46 VZ |
3767 | |
3768 | // FIXME: no more klass in 2.0 | |
3769 | #ifndef __WXGTK20__ | |
103aab26 | 3770 | m_widgetStyle->klass = def->klass; |
dd00f3f6 | 3771 | #endif |
103aab26 | 3772 | } |
8bbe427f | 3773 | |
1ecc4d80 | 3774 | return m_widgetStyle; |
58614078 RR |
3775 | } |
3776 | ||
1e6feb95 | 3777 | void wxWindowGTK::SetWidgetStyle() |
58614078 | 3778 | { |
8f3e7ecc | 3779 | #if DISABLE_STYLE_IF_BROKEN_THEME |
fb65642c RR |
3780 | if (m_widget->style->engine_data) |
3781 | { | |
3782 | static bool s_warningPrinted = FALSE; | |
3783 | if (!s_warningPrinted) | |
3784 | { | |
3785 | printf( "wxWindows warning: Widget styles disabled due to buggy GTK theme.\n" ); | |
3786 | s_warningPrinted = TRUE; | |
3787 | } | |
3788 | m_widgetStyle = m_widget->style; | |
3789 | return; | |
3790 | } | |
a56fcaaf | 3791 | #endif |
fb65642c | 3792 | |
1ecc4d80 RR |
3793 | GtkStyle *style = GetWidgetStyle(); |
3794 | ||
a756f210 | 3795 | if (m_font != wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT )) |
db434467 | 3796 | { |
9e691f46 | 3797 | SET_STYLE_FONT(style, m_font.GetInternalFont( 1.0 )); |
db434467 | 3798 | } |
1ecc4d80 RR |
3799 | |
3800 | if (m_foregroundColour.Ok()) | |
3801 | { | |
454e2a22 | 3802 | m_foregroundColour.CalcPixel( gtk_widget_get_colormap( m_widget ) ); |
a756f210 | 3803 | if (m_foregroundColour != wxSystemSettings::GetColour(wxSYS_COLOUR_BTNTEXT)) |
db434467 RR |
3804 | { |
3805 | style->fg[GTK_STATE_NORMAL] = *m_foregroundColour.GetColor(); | |
3806 | style->fg[GTK_STATE_PRELIGHT] = *m_foregroundColour.GetColor(); | |
3807 | style->fg[GTK_STATE_ACTIVE] = *m_foregroundColour.GetColor(); | |
3808 | } | |
1e6feb95 | 3809 | else |
f6bcfd97 BP |
3810 | { |
3811 | // Try to restore the gtk default style. This is still a little | |
3812 | // oversimplified for what is probably really needed here for controls | |
3813 | // other than buttons, but is better than not being able to (re)set a | |
3814 | // control's foreground colour to *wxBLACK -- RL | |
3815 | GtkStyle *def = gtk_rc_get_style( m_widget ); | |
3816 | ||
3817 | if (!def) | |
3818 | def = gtk_widget_get_default_style(); | |
3819 | ||
3820 | style->fg[GTK_STATE_NORMAL] = def->fg[GTK_STATE_NORMAL]; | |
3821 | style->fg[GTK_STATE_PRELIGHT] = def->fg[GTK_STATE_PRELIGHT]; | |
3822 | style->fg[GTK_STATE_ACTIVE] = def->fg[GTK_STATE_ACTIVE]; | |
3823 | } | |
1ecc4d80 RR |
3824 | } |
3825 | ||
3826 | if (m_backgroundColour.Ok()) | |
3827 | { | |
454e2a22 | 3828 | m_backgroundColour.CalcPixel( gtk_widget_get_colormap( m_widget ) ); |
a756f210 | 3829 | if (m_backgroundColour != wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE)) |
db434467 RR |
3830 | { |
3831 | style->bg[GTK_STATE_NORMAL] = *m_backgroundColour.GetColor(); | |
3832 | style->base[GTK_STATE_NORMAL] = *m_backgroundColour.GetColor(); | |
3833 | style->bg[GTK_STATE_PRELIGHT] = *m_backgroundColour.GetColor(); | |
3834 | style->base[GTK_STATE_PRELIGHT] = *m_backgroundColour.GetColor(); | |
3835 | style->bg[GTK_STATE_ACTIVE] = *m_backgroundColour.GetColor(); | |
3836 | style->base[GTK_STATE_ACTIVE] = *m_backgroundColour.GetColor(); | |
3837 | style->bg[GTK_STATE_INSENSITIVE] = *m_backgroundColour.GetColor(); | |
3838 | style->base[GTK_STATE_INSENSITIVE] = *m_backgroundColour.GetColor(); | |
f6bcfd97 BP |
3839 | } |
3840 | else | |
3841 | { | |
3842 | // Try to restore the gtk default style. This is still a little | |
3843 | // oversimplified for what is probably really needed here for controls | |
3844 | // other than buttons, but is better than not being able to (re)set a | |
3845 | // control's background colour to default grey and means resetting a | |
1e6feb95 | 3846 | // button to wxSYS_COLOUR_BTNFACE will restore its usual highlighting |
f6bcfd97 BP |
3847 | // behavior -- RL |
3848 | GtkStyle *def = gtk_rc_get_style( m_widget ); | |
3849 | ||
3850 | if (!def) | |
3851 | def = gtk_widget_get_default_style(); | |
3852 | ||
3853 | style->bg[GTK_STATE_NORMAL] = def->bg[GTK_STATE_NORMAL]; | |
3854 | style->base[GTK_STATE_NORMAL] = def->base[GTK_STATE_NORMAL]; | |
3855 | style->bg[GTK_STATE_PRELIGHT] = def->bg[GTK_STATE_PRELIGHT]; | |
3856 | style->base[GTK_STATE_PRELIGHT] = def->base[GTK_STATE_PRELIGHT]; | |
3857 | style->bg[GTK_STATE_ACTIVE] = def->bg[GTK_STATE_ACTIVE]; | |
3858 | style->base[GTK_STATE_ACTIVE] = def->base[GTK_STATE_ACTIVE]; | |
3859 | style->bg[GTK_STATE_INSENSITIVE] = def->bg[GTK_STATE_INSENSITIVE]; | |
3860 | style->base[GTK_STATE_INSENSITIVE] = def->base[GTK_STATE_INSENSITIVE]; | |
3861 | } | |
1ecc4d80 | 3862 | } |
a81258be RR |
3863 | } |
3864 | ||
1e6feb95 | 3865 | void wxWindowGTK::ApplyWidgetStyle() |
a81258be | 3866 | { |
6de97a3b RR |
3867 | } |
3868 | ||
2259e007 RR |
3869 | //----------------------------------------------------------------------------- |
3870 | // Pop-up menu stuff | |
3871 | //----------------------------------------------------------------------------- | |
3872 | ||
6522713c | 3873 | #if wxUSE_MENUS_NATIVE |
1e6feb95 | 3874 | |
90350682 VZ |
3875 | extern "C" |
3876 | void gtk_pop_hide_callback( GtkWidget *WXUNUSED(widget), bool* is_waiting ) | |
2259e007 RR |
3877 | { |
3878 | *is_waiting = FALSE; | |
3879 | } | |
3880 | ||
1e6feb95 | 3881 | static void SetInvokingWindow( wxMenu *menu, wxWindowGTK *win ) |
30dea054 | 3882 | { |
1ecc4d80 | 3883 | menu->SetInvokingWindow( win ); |
1987af7e | 3884 | wxMenuItemList::Node *node = menu->GetMenuItems().GetFirst(); |
1ecc4d80 RR |
3885 | while (node) |
3886 | { | |
1987af7e | 3887 | wxMenuItem *menuitem = node->GetData(); |
1ecc4d80 RR |
3888 | if (menuitem->IsSubMenu()) |
3889 | { | |
ff8bfdbb VZ |
3890 | SetInvokingWindow( menuitem->GetSubMenu(), win ); |
3891 | } | |
1987af7e VZ |
3892 | |
3893 | node = node->GetNext(); | |
1ecc4d80 | 3894 | } |
362c6693 | 3895 | } |
30dea054 | 3896 | |
e3473203 VZ |
3897 | // used to pass the coordinates from wxWindowGTK::DoPopupMenu() to |
3898 | // wxPopupMenuPositionCallback() | |
3899 | // | |
3900 | // should be safe even in the MT case as the user can hardly popup 2 menus | |
3901 | // simultaneously, can he? | |
0c77152e RR |
3902 | static gint gs_pop_x = 0; |
3903 | static gint gs_pop_y = 0; | |
3904 | ||
295272bd VZ |
3905 | extern "C" void wxPopupMenuPositionCallback( GtkMenu *menu, |
3906 | gint *x, gint *y, | |
9e691f46 VZ |
3907 | #ifdef __WXGTK20__ |
3908 | gboolean * WXUNUSED(whatever), | |
3909 | #endif | |
295272bd | 3910 | gpointer WXUNUSED(user_data) ) |
0c77152e | 3911 | { |
e3473203 VZ |
3912 | // ensure that the menu appears entirely on screen |
3913 | GtkRequisition req; | |
3914 | gtk_widget_get_child_requisition(GTK_WIDGET(menu), &req); | |
3915 | ||
3916 | wxSize sizeScreen = wxGetDisplaySize(); | |
3917 | ||
3918 | gint xmax = sizeScreen.x - req.width, | |
3919 | ymax = sizeScreen.y - req.height; | |
3920 | ||
3921 | *x = gs_pop_x < xmax ? gs_pop_x : xmax; | |
3922 | *y = gs_pop_y < ymax ? gs_pop_y : ymax; | |
0c77152e RR |
3923 | } |
3924 | ||
1e6feb95 | 3925 | bool wxWindowGTK::DoPopupMenu( wxMenu *menu, int x, int y ) |
30dea054 | 3926 | { |
223d09f6 | 3927 | wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid window") ); |
47d67540 | 3928 | |
223d09f6 | 3929 | wxCHECK_MSG( menu != NULL, FALSE, wxT("invalid popup-menu") ); |
8bbe427f | 3930 | |
1ecc4d80 | 3931 | SetInvokingWindow( menu, this ); |
ff8bfdbb | 3932 | |
631f1bfe JS |
3933 | menu->UpdateUI(); |
3934 | ||
0c77152e RR |
3935 | gs_pop_x = x; |
3936 | gs_pop_y = y; | |
e3473203 | 3937 | ClientToScreen( &gs_pop_x, &gs_pop_y ); |
ff8bfdbb | 3938 | |
2259e007 | 3939 | bool is_waiting = TRUE; |
148cd9b6 | 3940 | |
90350682 VZ |
3941 | gtk_signal_connect( GTK_OBJECT(menu->m_menu), |
3942 | "hide", | |
3943 | GTK_SIGNAL_FUNC(gtk_pop_hide_callback), | |
3944 | (gpointer)&is_waiting ); | |
2259e007 | 3945 | |
1ecc4d80 | 3946 | gtk_menu_popup( |
47d67540 | 3947 | GTK_MENU(menu->m_menu), |
e3473203 VZ |
3948 | (GtkWidget *) NULL, // parent menu shell |
3949 | (GtkWidget *) NULL, // parent menu item | |
3950 | wxPopupMenuPositionCallback, // function to position it | |
3951 | NULL, // client data | |
3952 | 0, // button used to activate it | |
3953 | gs_timeLastClick // the time of activation | |
47d67540 | 3954 | ); |
148cd9b6 | 3955 | |
956dbab1 RR |
3956 | while (is_waiting) |
3957 | { | |
3958 | while (gtk_events_pending()) | |
3959 | gtk_main_iteration(); | |
3960 | } | |
2259e007 | 3961 | |
1ecc4d80 | 3962 | return TRUE; |
30dea054 RR |
3963 | } |
3964 | ||
6522713c | 3965 | #endif // wxUSE_MENUS_NATIVE |
1e6feb95 | 3966 | |
06cfab17 | 3967 | #if wxUSE_DRAG_AND_DROP |
ac57418f | 3968 | |
1e6feb95 | 3969 | void wxWindowGTK::SetDropTarget( wxDropTarget *dropTarget ) |
c801d85f | 3970 | { |
223d09f6 | 3971 | wxCHECK_RET( m_widget != NULL, wxT("invalid window") ); |
47d67540 | 3972 | |
1ecc4d80 | 3973 | GtkWidget *dnd_widget = GetConnectWidget(); |
47d67540 | 3974 | |
1ecc4d80 | 3975 | if (m_dropTarget) m_dropTarget->UnregisterWidget( dnd_widget ); |
47d67540 | 3976 | |
1ecc4d80 RR |
3977 | if (m_dropTarget) delete m_dropTarget; |
3978 | m_dropTarget = dropTarget; | |
47d67540 | 3979 | |
1ecc4d80 | 3980 | if (m_dropTarget) m_dropTarget->RegisterWidget( dnd_widget ); |
362c6693 | 3981 | } |
c801d85f | 3982 | |
f03fc89f | 3983 | #endif // wxUSE_DRAG_AND_DROP |
ac57418f | 3984 | |
1e6feb95 | 3985 | GtkWidget* wxWindowGTK::GetConnectWidget() |
e3e65dac | 3986 | { |
1ecc4d80 RR |
3987 | GtkWidget *connect_widget = m_widget; |
3988 | if (m_wxwindow) connect_widget = m_wxwindow; | |
47d67540 | 3989 | |
1ecc4d80 | 3990 | return connect_widget; |
e3e65dac | 3991 | } |
47d67540 | 3992 | |
1e6feb95 | 3993 | bool wxWindowGTK::IsOwnGtkWindow( GdkWindow *window ) |
903f689b | 3994 | { |
148cd9b6 | 3995 | if (m_wxwindow) |
da048e3d | 3996 | return (window == GTK_PIZZA(m_wxwindow)->bin_window); |
148cd9b6 | 3997 | |
1ecc4d80 | 3998 | return (window == m_widget->window); |
903f689b RR |
3999 | } |
4000 | ||
1e6feb95 | 4001 | bool wxWindowGTK::SetFont( const wxFont &font ) |
c801d85f | 4002 | { |
223d09f6 | 4003 | wxCHECK_MSG( m_widget != NULL, FALSE, wxT("invalid window") ); |
c801d85f | 4004 | |
739730ca RR |
4005 | if (!wxWindowBase::SetFont(font)) |
4006 | { | |
454e2a22 | 4007 | return FALSE; |
739730ca | 4008 | } |
9c288e4d | 4009 | |
a756f210 | 4010 | wxColour sysbg = wxSystemSettings::GetColour( wxSYS_COLOUR_BTNFACE ); |
f03fc89f | 4011 | if ( sysbg == m_backgroundColour ) |
ae0bdb01 RR |
4012 | { |
4013 | m_backgroundColour = wxNullColour; | |
4014 | ApplyWidgetStyle(); | |
ff8bfdbb VZ |
4015 | m_backgroundColour = sysbg; |
4016 | } | |
ae0bdb01 RR |
4017 | else |
4018 | { | |
4019 | ApplyWidgetStyle(); | |
4020 | } | |
c801d85f | 4021 | |
f03fc89f | 4022 | return TRUE; |
362c6693 | 4023 | } |
c801d85f | 4024 | |
94633ad9 | 4025 | void wxWindowGTK::DoCaptureMouse() |
c801d85f | 4026 | { |
b231914f VZ |
4027 | wxCHECK_RET( m_widget != NULL, wxT("invalid window") ); |
4028 | ||
ed673c6a | 4029 | GdkWindow *window = (GdkWindow*) NULL; |
b231914f VZ |
4030 | if (m_wxwindow) |
4031 | window = GTK_PIZZA(m_wxwindow)->bin_window; | |
ed673c6a | 4032 | else |
b231914f | 4033 | window = GetConnectWidget()->window; |
148cd9b6 | 4034 | |
e4606ed9 | 4035 | wxCHECK_RET( window, _T("CaptureMouse() failed") ); |
c50f1fb9 | 4036 | |
b231914f | 4037 | wxCursor* cursor = & m_cursor; |
cca602ac JS |
4038 | if (!cursor->Ok()) |
4039 | cursor = wxSTANDARD_CURSOR; | |
4040 | ||
ed673c6a | 4041 | gdk_pointer_grab( window, FALSE, |
1ecc4d80 RR |
4042 | (GdkEventMask) |
4043 | (GDK_BUTTON_PRESS_MASK | | |
4044 | GDK_BUTTON_RELEASE_MASK | | |
148cd9b6 | 4045 | GDK_POINTER_MOTION_HINT_MASK | |
1ecc4d80 | 4046 | GDK_POINTER_MOTION_MASK), |
ff8bfdbb | 4047 | (GdkWindow *) NULL, |
cca602ac | 4048 | cursor->GetCursor(), |
b02da6b1 | 4049 | (guint32)GDK_CURRENT_TIME ); |
b231914f | 4050 | g_captureWindow = this; |
1e6feb95 | 4051 | g_captureWindowHasMouse = TRUE; |
362c6693 | 4052 | } |
c801d85f | 4053 | |
94633ad9 | 4054 | void wxWindowGTK::DoReleaseMouse() |
c801d85f | 4055 | { |
b231914f VZ |
4056 | wxCHECK_RET( m_widget != NULL, wxT("invalid window") ); |
4057 | ||
e4606ed9 | 4058 | wxCHECK_RET( g_captureWindow, wxT("can't release mouse - not captured") ); |
47d67540 | 4059 | |
c43430bb VS |
4060 | g_captureWindow = (wxWindowGTK*) NULL; |
4061 | ||
ed673c6a | 4062 | GdkWindow *window = (GdkWindow*) NULL; |
b231914f VZ |
4063 | if (m_wxwindow) |
4064 | window = GTK_PIZZA(m_wxwindow)->bin_window; | |
ed673c6a | 4065 | else |
b231914f | 4066 | window = GetConnectWidget()->window; |
148cd9b6 | 4067 | |
b02da6b1 VZ |
4068 | if (!window) |
4069 | return; | |
c50f1fb9 | 4070 | |
b02da6b1 | 4071 | gdk_pointer_ungrab ( (guint32)GDK_CURRENT_TIME ); |
362c6693 | 4072 | } |
c801d85f | 4073 | |
1e6feb95 VZ |
4074 | /* static */ |
4075 | wxWindow *wxWindowBase::GetCapture() | |
4076 | { | |
4077 | return (wxWindow *)g_captureWindow; | |
4078 | } | |
4079 | ||
4080 | bool wxWindowGTK::IsRetained() const | |
c801d85f | 4081 | { |
1ecc4d80 | 4082 | return FALSE; |
362c6693 | 4083 | } |
c801d85f | 4084 | |
1e6feb95 | 4085 | void wxWindowGTK::SetScrollbar( int orient, int pos, int thumbVisible, |
cb43b372 | 4086 | int range, bool refresh ) |
c801d85f | 4087 | { |
223d09f6 | 4088 | wxCHECK_RET( m_widget != NULL, wxT("invalid window") ); |
8bbe427f | 4089 | |
223d09f6 | 4090 | wxCHECK_RET( m_wxwindow != NULL, wxT("window needs client area for scrolling") ); |
c801d85f | 4091 | |
1ecc4d80 | 4092 | m_hasScrolling = TRUE; |
47d67540 | 4093 | |
1ecc4d80 | 4094 | if (orient == wxHORIZONTAL) |
cb43b372 | 4095 | { |
1ecc4d80 RR |
4096 | float fpos = (float)pos; |
4097 | float frange = (float)range; | |
4098 | float fthumb = (float)thumbVisible; | |
4099 | if (fpos > frange-fthumb) fpos = frange-fthumb; | |
4100 | if (fpos < 0.0) fpos = 0.0; | |
4101 | ||
4102 | if ((fabs(frange-m_hAdjust->upper) < 0.2) && | |
4103 | (fabs(fthumb-m_hAdjust->page_size) < 0.2)) | |
4104 | { | |
4105 | SetScrollPos( orient, pos, refresh ); | |
4106 | return; | |
4107 | } | |
47d67540 | 4108 | |
1ecc4d80 | 4109 | m_oldHorizontalPos = fpos; |
47d67540 | 4110 | |
1ecc4d80 RR |
4111 | m_hAdjust->lower = 0.0; |
4112 | m_hAdjust->upper = frange; | |
4113 | m_hAdjust->value = fpos; | |
4114 | m_hAdjust->step_increment = 1.0; | |
4115 | m_hAdjust->page_increment = (float)(wxMax(fthumb,0)); | |
4116 | m_hAdjust->page_size = fthumb; | |
cb43b372 | 4117 | } |
1ecc4d80 RR |
4118 | else |
4119 | { | |
4120 | float fpos = (float)pos; | |
4121 | float frange = (float)range; | |
4122 | float fthumb = (float)thumbVisible; | |
4123 | if (fpos > frange-fthumb) fpos = frange-fthumb; | |
4124 | if (fpos < 0.0) fpos = 0.0; | |
4125 | ||
4126 | if ((fabs(frange-m_vAdjust->upper) < 0.2) && | |
4127 | (fabs(fthumb-m_vAdjust->page_size) < 0.2)) | |
4128 | { | |
4129 | SetScrollPos( orient, pos, refresh ); | |
4130 | return; | |
4131 | } | |
47d67540 | 4132 | |
1ecc4d80 | 4133 | m_oldVerticalPos = fpos; |
47d67540 | 4134 | |
1ecc4d80 RR |
4135 | m_vAdjust->lower = 0.0; |
4136 | m_vAdjust->upper = frange; | |
4137 | m_vAdjust->value = fpos; | |
4138 | m_vAdjust->step_increment = 1.0; | |
4139 | m_vAdjust->page_increment = (float)(wxMax(fthumb,0)); | |
4140 | m_vAdjust->page_size = fthumb; | |
4141 | } | |
47d67540 | 4142 | |
eb082a08 RR |
4143 | if (orient == wxHORIZONTAL) |
4144 | gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust), "changed" ); | |
4145 | else | |
4146 | gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust), "changed" ); | |
362c6693 | 4147 | } |
c801d85f | 4148 | |
1e6feb95 | 4149 | void wxWindowGTK::SetScrollPos( int orient, int pos, bool WXUNUSED(refresh) ) |
c801d85f | 4150 | { |
223d09f6 | 4151 | wxCHECK_RET( m_widget != NULL, wxT("invalid window") ); |
1ecc4d80 | 4152 | |
223d09f6 | 4153 | wxCHECK_RET( m_wxwindow != NULL, wxT("window needs client area for scrolling") ); |
1ecc4d80 RR |
4154 | |
4155 | if (orient == wxHORIZONTAL) | |
4156 | { | |
4157 | float fpos = (float)pos; | |
4158 | if (fpos > m_hAdjust->upper - m_hAdjust->page_size) fpos = m_hAdjust->upper - m_hAdjust->page_size; | |
4159 | if (fpos < 0.0) fpos = 0.0; | |
4160 | m_oldHorizontalPos = fpos; | |
4161 | ||
4162 | if (fabs(fpos-m_hAdjust->value) < 0.2) return; | |
4163 | m_hAdjust->value = fpos; | |
4164 | } | |
4165 | else | |
4166 | { | |
4167 | float fpos = (float)pos; | |
4168 | if (fpos > m_vAdjust->upper - m_vAdjust->page_size) fpos = m_vAdjust->upper - m_vAdjust->page_size; | |
4169 | if (fpos < 0.0) fpos = 0.0; | |
4170 | m_oldVerticalPos = fpos; | |
ff8bfdbb | 4171 | |
1ecc4d80 RR |
4172 | if (fabs(fpos-m_vAdjust->value) < 0.2) return; |
4173 | m_vAdjust->value = fpos; | |
4174 | } | |
47d67540 | 4175 | |
5b8a521e | 4176 | if (m_wxwindow->window) |
47d67540 | 4177 | { |
5b8a521e | 4178 | if (orient == wxHORIZONTAL) |
473d087e RR |
4179 | { |
4180 | gtk_signal_disconnect_by_func( GTK_OBJECT(m_hAdjust), | |
4181 | (GtkSignalFunc) gtk_window_hscroll_callback, (gpointer) this ); | |
2daa0ce9 | 4182 | |
5b8a521e | 4183 | gtk_signal_emit_by_name( GTK_OBJECT(m_hAdjust), "value_changed" ); |
2daa0ce9 | 4184 | |
473d087e RR |
4185 | gtk_signal_connect( GTK_OBJECT(m_hAdjust), "value_changed", |
4186 | (GtkSignalFunc) gtk_window_hscroll_callback, (gpointer) this ); | |
4187 | } | |
5b8a521e | 4188 | else |
473d087e RR |
4189 | { |
4190 | gtk_signal_disconnect_by_func( GTK_OBJECT(m_vAdjust), | |
4191 | (GtkSignalFunc) gtk_window_vscroll_callback, (gpointer) this ); | |
2daa0ce9 | 4192 | |
5b8a521e | 4193 | gtk_signal_emit_by_name( GTK_OBJECT(m_vAdjust), "value_changed" ); |
473d087e RR |
4194 | |
4195 | gtk_signal_connect( GTK_OBJECT(m_vAdjust), "value_changed", | |
4196 | (GtkSignalFunc) gtk_window_vscroll_callback, (gpointer) this ); | |
4197 | } | |
cb43b372 | 4198 | } |
362c6693 | 4199 | } |
c801d85f | 4200 | |
1e6feb95 | 4201 | int wxWindowGTK::GetScrollThumb( int orient ) const |
c801d85f | 4202 | { |
223d09f6 | 4203 | wxCHECK_MSG( m_widget != NULL, 0, wxT("invalid window") ); |
47d67540 | 4204 | |
223d09f6 | 4205 | wxCHECK_MSG( m_wxwindow != NULL, 0, wxT("window needs client area for scrolling") ); |
47d67540 | 4206 | |
1ecc4d80 RR |
4207 | if (orient == wxHORIZONTAL) |
4208 | return (int)(m_hAdjust->page_size+0.5); | |
4209 | else | |
4210 | return (int)(m_vAdjust->page_size+0.5); | |
362c6693 | 4211 | } |
c801d85f | 4212 | |
1e6feb95 | 4213 | int wxWindowGTK::GetScrollPos( int orient ) const |
c801d85f | 4214 | { |
223d09f6 | 4215 | wxCHECK_MSG( m_widget != NULL, 0, wxT("invalid window") ); |
47d67540 | 4216 | |
223d09f6 | 4217 | wxCHECK_MSG( m_wxwindow != NULL, 0, wxT("window needs client area for scrolling") ); |
c801d85f | 4218 | |
1ecc4d80 RR |
4219 | if (orient == wxHORIZONTAL) |
4220 | return (int)(m_hAdjust->value+0.5); | |
4221 | else | |
4222 | return (int)(m_vAdjust->value+0.5); | |
362c6693 | 4223 | } |
c801d85f | 4224 | |
1e6feb95 | 4225 | int wxWindowGTK::GetScrollRange( int orient ) const |
c801d85f | 4226 | { |
223d09f6 | 4227 | wxCHECK_MSG( m_widget != NULL, 0, wxT("invalid window") ); |
47d67540 | 4228 | |
223d09f6 | 4229 | wxCHECK_MSG( m_wxwindow != NULL, 0, wxT("window needs client area for scrolling") ); |
c801d85f | 4230 | |
1ecc4d80 RR |
4231 | if (orient == wxHORIZONTAL) |
4232 | return (int)(m_hAdjust->upper+0.5); | |
4233 | else | |
4234 | return (int)(m_vAdjust->upper+0.5); | |
362c6693 | 4235 | } |
c801d85f | 4236 | |
1e6feb95 | 4237 | void wxWindowGTK::ScrollWindow( int dx, int dy, const wxRect* WXUNUSED(rect) ) |
c801d85f | 4238 | { |
223d09f6 | 4239 | wxCHECK_RET( m_widget != NULL, wxT("invalid window") ); |
47d67540 | 4240 | |
223d09f6 | 4241 | wxCHECK_RET( m_wxwindow != NULL, wxT("window needs client area for scrolling") ); |
2dde25b9 | 4242 | |
f47ae6e7 | 4243 | // No scrolling requested. |
8e217128 | 4244 | if ((dx == 0) && (dy == 0)) return; |
0fc5dbf5 | 4245 | |
4e5a4c69 | 4246 | #ifndef __WXGTK20__ |
35917d22 RR |
4247 | if (!m_updateRegion.IsEmpty()) |
4248 | { | |
4249 | m_updateRegion.Offset( dx, dy ); | |
0fc5dbf5 | 4250 | |
35917d22 RR |
4251 | int cw = 0; |
4252 | int ch = 0; | |
4253 | GetClientSize( &cw, &ch ); | |
4254 | m_updateRegion.Intersect( 0, 0, cw, ch ); | |
4255 | } | |
0fc5dbf5 | 4256 | |
3bcc8d15 RR |
4257 | if (!m_clearRegion.IsEmpty()) |
4258 | { | |
4259 | m_clearRegion.Offset( dx, dy ); | |
0fc5dbf5 | 4260 | |
3bcc8d15 RR |
4261 | int cw = 0; |
4262 | int ch = 0; | |
4263 | GetClientSize( &cw, &ch ); | |
4264 | m_clearRegion.Intersect( 0, 0, cw, ch ); | |
4265 | } | |
3fc6e5fa RR |
4266 | #endif |
4267 | ||
b6fa52db | 4268 | m_clipPaintRegion = TRUE; |
0fc5dbf5 | 4269 | |
da048e3d | 4270 | gtk_pizza_scroll( GTK_PIZZA(m_wxwindow), -dx, -dy ); |
0fc5dbf5 | 4271 | |
b6fa52db | 4272 | m_clipPaintRegion = FALSE; |
c801d85f | 4273 | } |
3723b7b1 | 4274 | |
4e5a4c69 | 4275 | |
3723b7b1 JS |
4276 | // Find the wxWindow at the current mouse position, also returning the mouse |
4277 | // position. | |
4278 | wxWindow* wxFindWindowAtPointer(wxPoint& pt) | |
4279 | { | |
59a12e90 JS |
4280 | pt = wxGetMousePosition(); |
4281 | wxWindow* found = wxFindWindowAtPoint(pt); | |
4282 | return found; | |
3723b7b1 JS |
4283 | } |
4284 | ||
4285 | // Get the current mouse position. | |
4286 | wxPoint wxGetMousePosition() | |
4287 | { | |
59a12e90 JS |
4288 | /* This crashes when used within wxHelpContext, |
4289 | so we have to use the X-specific implementation below. | |
4290 | gint x, y; | |
4291 | GdkModifierType *mask; | |
4292 | (void) gdk_window_get_pointer(NULL, &x, &y, mask); | |
4293 | ||
4294 | return wxPoint(x, y); | |
4295 | */ | |
4296 | ||
3723b7b1 JS |
4297 | int x, y; |
4298 | GdkWindow* windowAtPtr = gdk_window_at_pointer(& x, & y); | |
57591e0e JS |
4299 | if (!windowAtPtr) |
4300 | return wxPoint(-999, -999); | |
59a12e90 JS |
4301 | |
4302 | Display *display = GDK_WINDOW_XDISPLAY(windowAtPtr); | |
4303 | Window rootWindow = RootWindowOfScreen (DefaultScreenOfDisplay(display)); | |
4304 | Window rootReturn, childReturn; | |
4305 | int rootX, rootY, winX, winY; | |
4306 | unsigned int maskReturn; | |
4307 | ||
4308 | XQueryPointer (display, | |
5cd09f0b RR |
4309 | rootWindow, |
4310 | &rootReturn, | |
59a12e90 JS |
4311 | &childReturn, |
4312 | &rootX, &rootY, &winX, &winY, &maskReturn); | |
4313 | return wxPoint(rootX, rootY); | |
4314 | ||
3723b7b1 JS |
4315 | } |
4316 | ||
4e5a4c69 RR |
4317 | // ---------------------------------------------------------------------------- |
4318 | // wxDCModule | |
4319 | // ---------------------------------------------------------------------------- | |
4320 | ||
4321 | class wxWinModule : public wxModule | |
4322 | { | |
4323 | public: | |
4324 | bool OnInit(); | |
4325 | void OnExit(); | |
4326 | ||
4327 | private: | |
4328 | DECLARE_DYNAMIC_CLASS(wxWinModule) | |
4329 | }; | |
4330 | ||
4331 | IMPLEMENT_DYNAMIC_CLASS(wxWinModule, wxModule) | |
4332 | ||
4333 | bool wxWinModule::OnInit() | |
4334 | { | |
994bc575 RR |
4335 | // g_eraseGC = gdk_gc_new( GDK_ROOT_PARENT() ); |
4336 | // gdk_gc_set_fill( g_eraseGC, GDK_SOLID ); | |
0fc5dbf5 | 4337 | |
4e5a4c69 RR |
4338 | return TRUE; |
4339 | } | |
4340 | ||
4341 | void wxWinModule::OnExit() | |
4342 | { | |
994bc575 RR |
4343 | if (g_eraseGC) |
4344 | gdk_gc_unref( g_eraseGC ); | |
4e5a4c69 RR |
4345 | } |
4346 | ||
6728fb61 | 4347 | // vi:sts=4:sw=4:et |