]> git.saurik.com Git - wxWidgets.git/blob - src/gtk/toplevel.cpp
2ef53b9aa709c2c0e55f2259ac9ccb49dd1fdb6d
[wxWidgets.git] / src / gtk / toplevel.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/toplevel.cpp
3 // Purpose:
4 // Author: Robert Roebling
5 // Copyright: (c) 1998 Robert Roebling
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
8
9 // For compilers that support precompilation, includes "wx.h".
10 #include "wx/wxprec.h"
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #ifdef __VMS
21 #define XIconifyWindow XICONIFYWINDOW
22 #endif
23
24 #include "wx/toplevel.h"
25
26 #ifndef WX_PRECOMP
27 #include "wx/frame.h"
28 #include "wx/icon.h"
29 #include "wx/log.h"
30 #include "wx/app.h"
31 #endif
32
33 #include "wx/evtloop.h"
34 #include "wx/sysopt.h"
35
36 #include <gtk/gtk.h>
37 #ifdef GDK_WINDOWING_X11
38 #include <gdk/gdkx.h>
39 #include <X11/Xatom.h> // XA_CARDINAL
40 #include "wx/unix/utilsx11.h"
41 #endif
42
43 #include "wx/gtk/private.h"
44 #include "wx/gtk/private/gtk2-compat.h"
45 #include "wx/gtk/private/win_gtk.h"
46
47 #if wxUSE_LIBHILDON
48 #include <hildon-widgets/hildon-program.h>
49 #include <hildon-widgets/hildon-window.h>
50 #endif // wxUSE_LIBHILDON
51
52 #if wxUSE_LIBHILDON2
53 #include <hildon/hildon.h>
54 #endif // wxUSE_LIBHILDON2
55
56 // ----------------------------------------------------------------------------
57 // data
58 // ----------------------------------------------------------------------------
59
60 // this is incremented while a modal dialog is shown
61 int wxOpenModalDialogsCount = 0;
62
63 // the frame that is currently active (i.e. its child has focus). It is
64 // used to generate wxActivateEvents
65 static wxTopLevelWindowGTK *g_activeFrame = NULL;
66 static wxTopLevelWindowGTK *g_lastActiveFrame = NULL;
67
68 // if we detect that the app has got/lost the focus, we set this variable to
69 // either TRUE or FALSE and an activate event will be sent during the next
70 // OnIdle() call and it is reset to -1: this value means that we shouldn't
71 // send any activate events at all
72 static int g_sendActivateEvent = -1;
73
74 #ifdef GDK_WINDOWING_X11
75 // Whether _NET_REQUEST_FRAME_EXTENTS support is working
76 static enum {
77 RFE_STATUS_UNKNOWN, RFE_STATUS_WORKING, RFE_STATUS_BROKEN
78 } gs_requestFrameExtentsStatus;
79
80 static bool gs_decorCacheValid;
81 #endif
82
83 //-----------------------------------------------------------------------------
84 // RequestUserAttention related functions
85 //-----------------------------------------------------------------------------
86
87 #ifndef __WXGTK3__
88 static void wxgtk_window_set_urgency_hint (GtkWindow *win,
89 gboolean setting)
90 {
91 #if GTK_CHECK_VERSION(2,7,0)
92 if (gtk_check_version(2,7,0) == NULL)
93 gtk_window_set_urgency_hint(win, setting);
94 else
95 #endif
96 {
97 #ifdef GDK_WINDOWING_X11
98 GdkWindow* window = gtk_widget_get_window(GTK_WIDGET(win));
99 wxCHECK_RET(window, "wxgtk_window_set_urgency_hint: GdkWindow not realized");
100
101 Display* dpy = GDK_WINDOW_XDISPLAY(window);
102 Window xid = GDK_WINDOW_XID(window);
103 XWMHints* wm_hints = XGetWMHints(dpy, xid);
104
105 if (!wm_hints)
106 wm_hints = XAllocWMHints();
107
108 if (setting)
109 wm_hints->flags |= XUrgencyHint;
110 else
111 wm_hints->flags &= ~XUrgencyHint;
112
113 XSetWMHints(dpy, xid, wm_hints);
114 XFree(wm_hints);
115 #endif // GDK_WINDOWING_X11
116 }
117 }
118 #define gtk_window_set_urgency_hint wxgtk_window_set_urgency_hint
119 #endif
120
121 extern "C" {
122 static gboolean gtk_frame_urgency_timer_callback( wxTopLevelWindowGTK *win )
123 {
124 gtk_window_set_urgency_hint(GTK_WINDOW(win->m_widget), false);
125
126 win->m_urgency_hint = -2;
127 return FALSE;
128 }
129 }
130
131 //-----------------------------------------------------------------------------
132 // "focus_in_event"
133 //-----------------------------------------------------------------------------
134
135 extern "C" {
136 static gboolean gtk_frame_focus_in_callback( GtkWidget *widget,
137 GdkEvent *WXUNUSED(event),
138 wxTopLevelWindowGTK *win )
139 {
140 switch ( g_sendActivateEvent )
141 {
142 case -1:
143 // we've got focus from outside, synthetize wxActivateEvent
144 g_sendActivateEvent = 1;
145 break;
146
147 case 0:
148 // another our window just lost focus, it was already ours before
149 // - don't send any wxActivateEvent
150 g_sendActivateEvent = -1;
151 break;
152 }
153
154 g_activeFrame = win;
155 g_lastActiveFrame = g_activeFrame;
156
157 // wxPrintf( wxT("active: %s\n"), win->GetTitle().c_str() );
158
159 // MR: wxRequestUserAttention related block
160 switch( win->m_urgency_hint )
161 {
162 default:
163 g_source_remove( win->m_urgency_hint );
164 // no break, fallthrough to remove hint too
165 case -1:
166 gtk_window_set_urgency_hint(GTK_WINDOW(widget), false);
167 win->m_urgency_hint = -2;
168 break;
169
170 case -2: break;
171 }
172
173 wxLogTrace(wxT("activate"), wxT("Activating frame %p (from focus_in)"), g_activeFrame);
174 wxActivateEvent event(wxEVT_ACTIVATE, true, g_activeFrame->GetId());
175 event.SetEventObject(g_activeFrame);
176 g_activeFrame->HandleWindowEvent(event);
177
178 return FALSE;
179 }
180 }
181
182 //-----------------------------------------------------------------------------
183 // "focus_out_event"
184 //-----------------------------------------------------------------------------
185
186 extern "C" {
187 static
188 gboolean gtk_frame_focus_out_callback(GtkWidget * WXUNUSED(widget),
189 GdkEventFocus *WXUNUSED(gdk_event),
190 wxTopLevelWindowGTK * WXUNUSED(win))
191 {
192 // if the focus goes out of our app altogether, OnIdle() will send
193 // wxActivateEvent, otherwise gtk_window_focus_in_callback() will reset
194 // g_sendActivateEvent to -1
195 g_sendActivateEvent = 0;
196
197 // wxASSERT_MSG( (g_activeFrame == win), wxT("TLW deactivatd although it wasn't active") );
198
199 // wxPrintf( wxT("inactive: %s\n"), win->GetTitle().c_str() );
200
201 if (g_activeFrame)
202 {
203 wxLogTrace(wxT("activate"), wxT("Activating frame %p (from focus_in)"), g_activeFrame);
204 wxActivateEvent event(wxEVT_ACTIVATE, false, g_activeFrame->GetId());
205 event.SetEventObject(g_activeFrame);
206 g_activeFrame->HandleWindowEvent(event);
207
208 g_activeFrame = NULL;
209 }
210
211 return FALSE;
212 }
213 }
214
215 // ----------------------------------------------------------------------------
216 // "key_press_event"
217 // ----------------------------------------------------------------------------
218
219 extern "C" {
220 static gboolean
221 wxgtk_tlw_key_press_event(GtkWidget *widget, GdkEventKey *event)
222 {
223 GtkWindow* const window = GTK_WINDOW(widget);
224
225 // By default GTK+ checks for the menu accelerators in this (top level)
226 // window first and then propagates the event to the currently focused
227 // child from where it bubbles up the window parent chain. In wxWidgets,
228 // however, we want the child window to have the event first but still
229 // handle it as an accelerator if it's not processed there, so we need to
230 // customize this by reversing the order of the steps done in the standard
231 // GTK+ gtk_window_key_press_event() handler.
232
233 if ( gtk_window_propagate_key_event(window, event) )
234 return TRUE;
235
236 if ( gtk_window_activate_key(window, event) )
237 return TRUE;
238
239 if (GTK_WIDGET_GET_CLASS(widget)->key_press_event(widget, event))
240 return TRUE;
241
242 return FALSE;
243 }
244 }
245
246 //-----------------------------------------------------------------------------
247 // "size_allocate" from m_wxwindow
248 //-----------------------------------------------------------------------------
249
250 extern "C" {
251 static void
252 size_allocate(GtkWidget*, GtkAllocation* alloc, wxTopLevelWindowGTK* win)
253 {
254 win->m_useCachedClientSize = true;
255 if (win->m_clientWidth != alloc->width ||
256 win->m_clientHeight != alloc->height)
257 {
258 win->m_clientWidth = alloc->width;
259 win->m_clientHeight = alloc->height;
260
261 GtkAllocation a;
262 gtk_widget_get_allocation(win->m_widget, &a);
263 wxSize size(a.width, a.height);
264 size.x += win->m_decorSize.left + win->m_decorSize.right;
265 size.y += win->m_decorSize.top + win->m_decorSize.bottom;
266 win->m_width = size.x;
267 win->m_height = size.y;
268
269 if (!win->IsIconized())
270 {
271 wxSizeEvent event(size, win->GetId());
272 event.SetEventObject(win);
273 win->HandleWindowEvent(event);
274 }
275 // else the window is currently unmapped, don't generate size events
276 }
277 }
278 }
279
280 //-----------------------------------------------------------------------------
281 // "delete_event"
282 //-----------------------------------------------------------------------------
283
284 extern "C" {
285 static gboolean
286 gtk_frame_delete_callback( GtkWidget *WXUNUSED(widget),
287 GdkEvent *WXUNUSED(event),
288 wxTopLevelWindowGTK *win )
289 {
290 if (win->IsEnabled() &&
291 (wxOpenModalDialogsCount == 0 || (win->GetExtraStyle() & wxTOPLEVEL_EX_DIALOG) ||
292 win->IsGrabbed()))
293 win->Close();
294
295 return TRUE;
296 }
297 }
298
299 //-----------------------------------------------------------------------------
300 // "configure_event"
301 //-----------------------------------------------------------------------------
302
303 extern "C" {
304 static gboolean
305 gtk_frame_configure_callback( GtkWidget*,
306 GdkEventConfigure* gdk_event,
307 wxTopLevelWindowGTK *win )
308 {
309 win->GTKConfigureEvent(gdk_event->x, gdk_event->y);
310 return false;
311 }
312 }
313
314 void wxTopLevelWindowGTK::GTKConfigureEvent(int x, int y)
315 {
316 wxPoint point;
317 #ifdef GDK_WINDOWING_X11
318 if (gs_decorCacheValid)
319 {
320 const DecorSize& decorSize = GetCachedDecorSize();
321 point.x = x - decorSize.left;
322 point.y = y - decorSize.top;
323 }
324 else
325 #endif
326 {
327 gtk_window_get_position(GTK_WINDOW(m_widget), &point.x, &point.y);
328 }
329
330 if (m_x != point.x || m_y != point.y)
331 {
332 m_x = point.x;
333 m_y = point.y;
334 wxMoveEvent event(point, GetId());
335 event.SetEventObject(this);
336 HandleWindowEvent(event);
337 }
338 }
339
340 //-----------------------------------------------------------------------------
341 // "realize" from m_widget
342 //-----------------------------------------------------------------------------
343
344 // we cannot the WM hints and icons before the widget has been realized,
345 // so we do this directly after realization
346
347 void wxTopLevelWindowGTK::GTKHandleRealized()
348 {
349 wxNonOwnedWindow::GTKHandleRealized();
350
351 gdk_window_set_decorations(gtk_widget_get_window(m_widget),
352 (GdkWMDecoration)m_gdkDecor);
353 gdk_window_set_functions(gtk_widget_get_window(m_widget),
354 (GdkWMFunction)m_gdkFunc);
355
356 const wxIconBundle& icons = GetIcons();
357 if (icons.GetIconCount())
358 SetIcons(icons);
359
360 #ifdef __WXGTK3__
361 if (gtk_window_get_has_resize_grip(GTK_WINDOW(m_widget)))
362 {
363 // Grip window can end up obscured, probably due to deferred show.
364 // Reset grip to ensure it is visible.
365 gtk_window_set_has_resize_grip(GTK_WINDOW(m_widget), false);
366 gtk_window_set_has_resize_grip(GTK_WINDOW(m_widget), true);
367 }
368 #endif
369 }
370
371 //-----------------------------------------------------------------------------
372 // "map_event" from m_widget
373 //-----------------------------------------------------------------------------
374
375 extern "C" {
376 static gboolean
377 gtk_frame_map_callback( GtkWidget*,
378 GdkEvent * WXUNUSED(event),
379 wxTopLevelWindow *win )
380 {
381 const bool wasIconized = win->IsIconized();
382 if (wasIconized)
383 {
384 // Because GetClientSize() returns (0,0) when IsIconized() is true,
385 // a size event must be generated, just in case GetClientSize() was
386 // called while iconized. This specifically happens when restoring a
387 // tlw that was "rolled up" with some WMs.
388 // Queue a resize rather than sending size event directly to allow
389 // children to be made visible first.
390 win->m_useCachedClientSize = false;
391 win->m_clientWidth = 0;
392 gtk_widget_queue_resize(win->m_wxwindow);
393 }
394 // it is possible for m_isShown to be false here, see bug #9909
395 if (win->wxWindowBase::Show(true))
396 {
397 wxShowEvent eventShow(win->GetId(), true);
398 eventShow.SetEventObject(win);
399 win->GetEventHandler()->ProcessEvent(eventShow);
400 }
401
402 // restore focus-on-map setting in case ShowWithoutActivating() was called
403 gtk_window_set_focus_on_map(GTK_WINDOW(win->m_widget), true);
404
405 return false;
406 }
407 }
408
409 //-----------------------------------------------------------------------------
410 // "window-state-event" from m_widget
411 //-----------------------------------------------------------------------------
412
413 extern "C" {
414 static gboolean
415 gtk_frame_window_state_callback( GtkWidget* WXUNUSED(widget),
416 GdkEventWindowState *event,
417 wxTopLevelWindow *win )
418 {
419 if (event->changed_mask & GDK_WINDOW_STATE_ICONIFIED)
420 win->SetIconizeState((event->new_window_state & GDK_WINDOW_STATE_ICONIFIED) != 0);
421
422 // if maximized bit changed and it is now set
423 if (event->changed_mask & event->new_window_state & GDK_WINDOW_STATE_MAXIMIZED)
424 {
425 wxMaximizeEvent evt(win->GetId());
426 evt.SetEventObject(win);
427 win->HandleWindowEvent(evt);
428 }
429
430 if (event->changed_mask & GDK_WINDOW_STATE_FULLSCREEN)
431 win->m_fsIsShowing = (event->new_window_state & GDK_WINDOW_STATE_FULLSCREEN) != 0;
432
433 return false;
434 }
435 }
436
437 //-----------------------------------------------------------------------------
438
439 bool wxGetFrameExtents(GdkWindow* window, int* left, int* right, int* top, int* bottom)
440 {
441 #ifdef GDK_WINDOWING_X11
442 static GdkAtom property = gdk_atom_intern("_NET_FRAME_EXTENTS", false);
443 GdkDisplay* display = gdk_window_get_display(window);
444 Atom xproperty = gdk_x11_atom_to_xatom_for_display(display, property);
445 Atom type;
446 int format;
447 gulong nitems, bytes_after;
448 guchar* data;
449 Status status = XGetWindowProperty(
450 GDK_DISPLAY_XDISPLAY(display),
451 GDK_WINDOW_XID(window),
452 xproperty,
453 0, 4, false, XA_CARDINAL,
454 &type, &format, &nitems, &bytes_after, &data);
455 const bool success = status == Success && data && nitems == 4;
456 if (success)
457 {
458 long* p = (long*)data;
459 if (left) *left = int(p[0]);
460 if (right) *right = int(p[1]);
461 if (top) *top = int(p[2]);
462 if (bottom) *bottom = int(p[3]);
463 }
464 if (data)
465 XFree(data);
466 return success;
467 #else
468 return false;
469 #endif
470 }
471
472 #ifdef GDK_WINDOWING_X11
473 //-----------------------------------------------------------------------------
474 // "property_notify_event" from m_widget
475 //-----------------------------------------------------------------------------
476
477 extern "C" {
478 static gboolean property_notify_event(
479 GtkWidget*, GdkEventProperty* event, wxTopLevelWindowGTK* win)
480 {
481 // Watch for changes to _NET_FRAME_EXTENTS property
482 static GdkAtom property = gdk_atom_intern("_NET_FRAME_EXTENTS", false);
483 if (event->state == GDK_PROPERTY_NEW_VALUE && event->atom == property)
484 {
485 if (win->m_netFrameExtentsTimerId)
486 {
487 // WM support for _NET_REQUEST_FRAME_EXTENTS is working
488 gs_requestFrameExtentsStatus = RFE_STATUS_WORKING;
489 g_source_remove(win->m_netFrameExtentsTimerId);
490 win->m_netFrameExtentsTimerId = 0;
491 }
492
493 wxTopLevelWindowGTK::DecorSize decorSize = win->m_decorSize;
494 gs_decorCacheValid = wxGetFrameExtents(event->window,
495 &decorSize.left, &decorSize.right, &decorSize.top, &decorSize.bottom);
496
497 win->GTKUpdateDecorSize(decorSize);
498 }
499 return false;
500 }
501 }
502
503 extern "C" {
504 static gboolean request_frame_extents_timeout(void* data)
505 {
506 // WM support for _NET_REQUEST_FRAME_EXTENTS is broken
507 gs_requestFrameExtentsStatus = RFE_STATUS_BROKEN;
508 gdk_threads_enter();
509 wxTopLevelWindowGTK* win = static_cast<wxTopLevelWindowGTK*>(data);
510 win->m_netFrameExtentsTimerId = 0;
511 wxTopLevelWindowGTK::DecorSize decorSize = win->m_decorSize;
512 wxGetFrameExtents(gtk_widget_get_window(win->m_widget),
513 &decorSize.left, &decorSize.right, &decorSize.top, &decorSize.bottom);
514 win->GTKUpdateDecorSize(decorSize);
515 gdk_threads_leave();
516 return false;
517 }
518 }
519 #endif // GDK_WINDOWING_X11
520
521 // ----------------------------------------------------------------------------
522 // wxTopLevelWindowGTK creation
523 // ----------------------------------------------------------------------------
524
525 void wxTopLevelWindowGTK::Init()
526 {
527 m_mainWidget = NULL;
528 m_isIconized = false;
529 m_fsIsShowing = false;
530 m_themeEnabled = true;
531 m_gdkDecor =
532 m_gdkFunc = 0;
533 m_grabbed = false;
534 m_deferShow = true;
535 m_deferShowAllowed = true;
536 m_updateDecorSize = true;
537 m_netFrameExtentsTimerId = 0;
538 m_incWidth = m_incHeight = 0;
539 memset(&m_decorSize, 0, sizeof(m_decorSize));
540
541 m_urgency_hint = -2;
542 }
543
544 bool wxTopLevelWindowGTK::Create( wxWindow *parent,
545 wxWindowID id,
546 const wxString& title,
547 const wxPoint& pos,
548 const wxSize& sizeOrig,
549 long style,
550 const wxString &name )
551 {
552 const wxSize size(WidthDefault(sizeOrig.x), HeightDefault(sizeOrig.y));
553
554 wxTopLevelWindows.Append( this );
555
556 if (!PreCreation( parent, pos, size ) ||
557 !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
558 {
559 wxFAIL_MSG( wxT("wxTopLevelWindowGTK creation failed") );
560 return false;
561 }
562
563 m_title = title;
564
565 // NB: m_widget may be !=NULL if it was created by derived class' Create,
566 // e.g. in wxTaskBarIconAreaGTK
567 if (m_widget == NULL)
568 {
569 #if wxUSE_LIBHILDON || wxUSE_LIBHILDON2
570 // we must create HildonWindow and not a normal GtkWindow as the latter
571 // doesn't look correctly in Maemo environment and it must also be
572 // registered with the main program object
573 m_widget = hildon_window_new();
574 hildon_program_add_window(wxTheApp->GetHildonProgram(),
575 HILDON_WINDOW(m_widget));
576 #else // !wxUSE_LIBHILDON || !wxUSE_LIBHILDON2
577 m_widget = gtk_window_new(GTK_WINDOW_TOPLEVEL);
578 if (GetExtraStyle() & wxTOPLEVEL_EX_DIALOG)
579 {
580 // Tell WM that this is a dialog window and make it center
581 // on parent by default (this is what GtkDialog ctor does):
582 gtk_window_set_type_hint(GTK_WINDOW(m_widget),
583 GDK_WINDOW_TYPE_HINT_DIALOG);
584 gtk_window_set_position(GTK_WINDOW(m_widget),
585 GTK_WIN_POS_CENTER_ON_PARENT);
586 }
587 else
588 {
589 if (style & wxFRAME_TOOL_WINDOW)
590 {
591 gtk_window_set_type_hint(GTK_WINDOW(m_widget),
592 GDK_WINDOW_TYPE_HINT_UTILITY);
593
594 // On some WMs, like KDE, a TOOL_WINDOW will still show
595 // on the taskbar, but on Gnome a TOOL_WINDOW will not.
596 // For consistency between WMs and with Windows, we
597 // should set the NO_TASKBAR flag which will apply
598 // the set_skip_taskbar_hint if it is available,
599 // ensuring no taskbar entry will appear.
600 style |= wxFRAME_NO_TASKBAR;
601 }
602 }
603 #endif // wxUSE_LIBHILDON || wxUSE_LIBHILDON2/!wxUSE_LIBHILDON || !wxUSE_LIBHILDON2
604
605 g_object_ref(m_widget);
606 }
607
608 wxWindow *topParent = wxGetTopLevelParent(m_parent);
609 if (topParent && (((GTK_IS_WINDOW(topParent->m_widget)) &&
610 (GetExtraStyle() & wxTOPLEVEL_EX_DIALOG)) ||
611 (style & wxFRAME_FLOAT_ON_PARENT)))
612 {
613 gtk_window_set_transient_for( GTK_WINDOW(m_widget),
614 GTK_WINDOW(topParent->m_widget) );
615 }
616
617 if (style & wxFRAME_NO_TASKBAR)
618 {
619 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(m_widget), TRUE);
620 }
621
622 if (style & wxSTAY_ON_TOP)
623 {
624 gtk_window_set_keep_above(GTK_WINDOW(m_widget), TRUE);
625 }
626 if (style & wxMAXIMIZE)
627 gtk_window_maximize(GTK_WINDOW(m_widget));
628
629 #if 0
630 if (!name.empty())
631 gtk_window_set_role( GTK_WINDOW(m_widget), wxGTK_CONV( name ) );
632 #endif
633
634 gtk_window_set_title( GTK_WINDOW(m_widget), wxGTK_CONV( title ) );
635 gtk_widget_set_can_focus(m_widget, false);
636
637 g_signal_connect (m_widget, "delete_event",
638 G_CALLBACK (gtk_frame_delete_callback), this);
639
640 // m_mainWidget is a GtkVBox, holding the bars and client area (m_wxwindow)
641 m_mainWidget = gtk_box_new(GTK_ORIENTATION_VERTICAL, 0);
642 gtk_widget_show( m_mainWidget );
643 gtk_widget_set_can_focus(m_mainWidget, false);
644 gtk_container_add( GTK_CONTAINER(m_widget), m_mainWidget );
645
646 // m_wxwindow is the client area
647 m_wxwindow = wxPizza::New();
648 gtk_widget_show( m_wxwindow );
649 gtk_box_pack_start(GTK_BOX(m_mainWidget), m_wxwindow, true, true, 0);
650
651 // we donm't allow the frame to get the focus as otherwise
652 // the frame will grab it at arbitrary focus changes
653 gtk_widget_set_can_focus(m_wxwindow, false);
654
655 if (m_parent) m_parent->AddChild( this );
656
657 g_signal_connect(m_wxwindow, "size_allocate",
658 G_CALLBACK(size_allocate), this);
659
660 PostCreation();
661
662 #ifndef __WXGTK3__
663 if (pos != wxDefaultPosition)
664 gtk_widget_set_uposition( m_widget, m_x, m_y );
665 #endif
666
667 // for some reported size corrections
668 g_signal_connect (m_widget, "map_event",
669 G_CALLBACK (gtk_frame_map_callback), this);
670
671 // for iconized state
672 g_signal_connect (m_widget, "window_state_event",
673 G_CALLBACK (gtk_frame_window_state_callback), this);
674
675
676 // for wxMoveEvent
677 g_signal_connect (m_widget, "configure_event",
678 G_CALLBACK (gtk_frame_configure_callback), this);
679
680 // activation
681 g_signal_connect_after (m_widget, "focus_in_event",
682 G_CALLBACK (gtk_frame_focus_in_callback), this);
683 g_signal_connect_after (m_widget, "focus_out_event",
684 G_CALLBACK (gtk_frame_focus_out_callback), this);
685
686 // We need to customize the default GTK+ logic for key processing to make
687 // it conforming to wxWidgets event processing order.
688 g_signal_connect (m_widget, "key_press_event",
689 G_CALLBACK (wxgtk_tlw_key_press_event), NULL);
690
691 #ifdef GDK_WINDOWING_X11
692 #ifdef __WXGTK3__
693 if (GDK_IS_X11_SCREEN(gtk_window_get_screen(GTK_WINDOW(m_widget))))
694 #endif
695 {
696 gtk_widget_add_events(m_widget, GDK_PROPERTY_CHANGE_MASK);
697 g_signal_connect(m_widget, "property_notify_event",
698 G_CALLBACK(property_notify_event), this);
699 }
700 #endif // GDK_WINDOWING_X11
701
702 // translate wx decorations styles into Motif WM hints (they are recognized
703 // by other WMs as well)
704
705 // always enable moving the window as we have no separate flag for enabling
706 // it
707 m_gdkFunc = GDK_FUNC_MOVE;
708
709 if ( style & wxCLOSE_BOX )
710 m_gdkFunc |= GDK_FUNC_CLOSE;
711
712 if ( style & wxMINIMIZE_BOX )
713 m_gdkFunc |= GDK_FUNC_MINIMIZE;
714
715 if ( style & wxMAXIMIZE_BOX )
716 m_gdkFunc |= GDK_FUNC_MAXIMIZE;
717
718 if ( (style & wxSIMPLE_BORDER) || (style & wxNO_BORDER) )
719 {
720 m_gdkDecor = 0;
721 }
722 else // have border
723 {
724 m_gdkDecor = GDK_DECOR_BORDER;
725
726 if ( style & wxCAPTION )
727 m_gdkDecor |= GDK_DECOR_TITLE;
728
729 if ( style & wxSYSTEM_MENU )
730 m_gdkDecor |= GDK_DECOR_MENU;
731
732 if ( style & wxMINIMIZE_BOX )
733 m_gdkDecor |= GDK_DECOR_MINIMIZE;
734
735 if ( style & wxMAXIMIZE_BOX )
736 m_gdkDecor |= GDK_DECOR_MAXIMIZE;
737
738 if ( style & wxRESIZE_BORDER )
739 {
740 m_gdkFunc |= GDK_FUNC_RESIZE;
741 m_gdkDecor |= GDK_DECOR_RESIZEH;
742 }
743 }
744
745 if ((style & wxRESIZE_BORDER) == 0)
746 gtk_window_set_resizable(GTK_WINDOW(m_widget), false);
747 #ifndef __WXGTK3__
748 else
749 gtk_window_set_policy(GTK_WINDOW(m_widget), 1, 1, 1);
750 #endif
751
752 // GTK sometimes chooses very small size if max size hint is not explicitly set
753 DoSetSizeHints(m_minWidth, m_minHeight, m_maxWidth, m_maxHeight, m_incWidth, m_incHeight);
754
755 m_decorSize = GetCachedDecorSize();
756 int w, h;
757 GTKDoGetSize(&w, &h);
758 gtk_window_set_default_size(GTK_WINDOW(m_widget), w, h);
759
760 return true;
761 }
762
763 wxTopLevelWindowGTK::~wxTopLevelWindowGTK()
764 {
765 if ( m_netFrameExtentsTimerId )
766 {
767 // Don't let the timer callback fire as the window pointer passed to it
768 // will become invalid very soon.
769 g_source_remove(m_netFrameExtentsTimerId);
770 }
771
772 #if wxUSE_LIBHILDON || wxUSE_LIBHILDON2
773 // it can also be a (standard) dialog
774 if ( HILDON_IS_WINDOW(m_widget) )
775 {
776 hildon_program_remove_window(wxTheApp->GetHildonProgram(),
777 HILDON_WINDOW(m_widget));
778 }
779 #endif // wxUSE_LIBHILDON || wxUSE_LIBHILDON2
780
781 if (m_grabbed)
782 {
783 wxFAIL_MSG(wxT("Window still grabbed"));
784 RemoveGrab();
785 }
786
787 SendDestroyEvent();
788
789 // it may also be GtkScrolledWindow in the case of an MDI child
790 if (GTK_IS_WINDOW(m_widget))
791 {
792 gtk_window_set_focus( GTK_WINDOW(m_widget), NULL );
793 }
794
795 if (g_activeFrame == this)
796 g_activeFrame = NULL;
797 if (g_lastActiveFrame == this)
798 g_lastActiveFrame = NULL;
799 }
800
801 bool wxTopLevelWindowGTK::EnableCloseButton( bool enable )
802 {
803 if (enable)
804 m_gdkFunc |= GDK_FUNC_CLOSE;
805 else
806 m_gdkFunc &= ~GDK_FUNC_CLOSE;
807
808 GdkWindow* window = gtk_widget_get_window(m_widget);
809 if (window)
810 gdk_window_set_functions(window, (GdkWMFunction)m_gdkFunc);
811
812 return true;
813 }
814
815 bool wxTopLevelWindowGTK::ShowFullScreen(bool show, long)
816 {
817 if (show == m_fsIsShowing)
818 return false; // return what?
819
820 m_fsIsShowing = show;
821
822 #ifdef GDK_WINDOWING_X11
823 Display* xdpy = GDK_DISPLAY_XDISPLAY(gtk_widget_get_display(m_widget));
824 Window xroot = GDK_WINDOW_XID(gtk_widget_get_root_window(m_widget));
825 wxX11FullScreenMethod method = wxGetFullScreenMethodX11(xdpy, (WXWindow)xroot);
826
827 // NB: gtk_window_fullscreen() uses freedesktop.org's WMspec extensions
828 // to switch to fullscreen, which is not always available. We must
829 // check if WM supports the spec and use legacy methods if it
830 // doesn't.
831 if ( method == wxX11_FS_WMSPEC )
832 #endif // GDK_WINDOWING_X11
833 {
834 if (show)
835 gtk_window_fullscreen( GTK_WINDOW( m_widget ) );
836 else
837 gtk_window_unfullscreen( GTK_WINDOW( m_widget ) );
838 }
839 #ifdef GDK_WINDOWING_X11
840 else
841 {
842 GdkWindow* window = gtk_widget_get_window(m_widget);
843 Window xid = GDK_WINDOW_XID(window);
844
845 if (show)
846 {
847 GetPosition( &m_fsSaveFrame.x, &m_fsSaveFrame.y );
848 GetSize( &m_fsSaveFrame.width, &m_fsSaveFrame.height );
849
850 GdkScreen* screen = gtk_widget_get_screen(m_widget);
851 const int screen_width = gdk_screen_get_width(screen);
852 const int screen_height = gdk_screen_get_height(screen);
853
854 gint client_x, client_y, root_x, root_y;
855 gint width, height;
856
857 m_fsSaveGdkFunc = m_gdkFunc;
858 m_fsSaveGdkDecor = m_gdkDecor;
859 m_gdkFunc = m_gdkDecor = 0;
860 gdk_window_set_decorations(window, (GdkWMDecoration)0);
861 gdk_window_set_functions(window, (GdkWMFunction)0);
862
863 gdk_window_get_origin(window, &root_x, &root_y);
864 gdk_window_get_geometry(window, &client_x, &client_y, &width, &height);
865
866 gdk_window_move_resize(
867 window, -client_x, -client_y, screen_width + 1, screen_height + 1);
868
869 wxSetFullScreenStateX11(xdpy,
870 (WXWindow)xroot,
871 (WXWindow)xid,
872 show, &m_fsSaveFrame, method);
873 }
874 else // hide
875 {
876 m_gdkFunc = m_fsSaveGdkFunc;
877 m_gdkDecor = m_fsSaveGdkDecor;
878 gdk_window_set_decorations(window, (GdkWMDecoration)m_gdkDecor);
879 gdk_window_set_functions(window, (GdkWMFunction)m_gdkFunc);
880
881 wxSetFullScreenStateX11(xdpy,
882 (WXWindow)xroot,
883 (WXWindow)xid,
884 show, &m_fsSaveFrame, method);
885
886 SetSize(m_fsSaveFrame.x, m_fsSaveFrame.y,
887 m_fsSaveFrame.width, m_fsSaveFrame.height);
888 }
889 }
890 #endif // GDK_WINDOWING_X11
891
892 // documented behaviour is to show the window if it's still hidden when
893 // showing it full screen
894 if (show)
895 Show();
896
897 return true;
898 }
899
900 // ----------------------------------------------------------------------------
901 // overridden wxWindow methods
902 // ----------------------------------------------------------------------------
903
904 void wxTopLevelWindowGTK::Refresh( bool WXUNUSED(eraseBackground), const wxRect *WXUNUSED(rect) )
905 {
906 wxCHECK_RET( m_widget, wxT("invalid frame") );
907
908 gtk_widget_queue_draw( m_widget );
909
910 GdkWindow* window = NULL;
911 if (m_wxwindow)
912 window = gtk_widget_get_window(m_wxwindow);
913 if (window)
914 gdk_window_invalidate_rect(window, NULL, true);
915 }
916
917 bool wxTopLevelWindowGTK::Show( bool show )
918 {
919 wxASSERT_MSG( (m_widget != NULL), wxT("invalid frame") );
920
921 #ifdef GDK_WINDOWING_X11
922 bool deferShow = show && !m_isShown && m_deferShow;
923 if (deferShow)
924 {
925 deferShow = m_deferShowAllowed &&
926 gs_requestFrameExtentsStatus != RFE_STATUS_BROKEN &&
927 !gtk_widget_get_realized(m_widget) &&
928 g_signal_handler_find(m_widget,
929 GSignalMatchType(G_SIGNAL_MATCH_ID | G_SIGNAL_MATCH_DATA),
930 g_signal_lookup("property_notify_event", GTK_TYPE_WIDGET),
931 0, NULL, NULL, this);
932 if (deferShow)
933 {
934 GdkScreen* screen = gtk_widget_get_screen(m_widget);
935 GdkAtom atom = gdk_atom_intern("_NET_REQUEST_FRAME_EXTENTS", false);
936 deferShow = gdk_x11_screen_supports_net_wm_hint(screen, atom) != 0;
937
938 // If _NET_REQUEST_FRAME_EXTENTS not supported, don't allow changes
939 // to m_decorSize, it breaks saving/restoring window size with
940 // GetSize()/SetSize() because it makes window bigger between each
941 // restore and save.
942 m_updateDecorSize = deferShow;
943 }
944
945 m_deferShow = deferShow;
946 }
947 if (deferShow)
948 {
949 // Initial show. If WM supports _NET_REQUEST_FRAME_EXTENTS, defer
950 // calling gtk_widget_show() until _NET_FRAME_EXTENTS property
951 // notification is received, so correct frame extents are known.
952 // This allows resizing m_widget to keep the overall size in sync with
953 // what wxWidgets expects it to be without an obvious change in the
954 // window size immediately after it becomes visible.
955
956 // Realize m_widget, so m_widget->window can be used. Realizing normally
957 // causes the widget tree to be size_allocated, which generates size
958 // events in the wrong order. However, the size_allocates will not be
959 // done if the allocation is not the default (1,1).
960 GtkAllocation alloc;
961 gtk_widget_get_allocation(m_widget, &alloc);
962 const int alloc_width = alloc.width;
963 if (alloc_width == 1)
964 {
965 alloc.width = 2;
966 gtk_widget_set_allocation(m_widget, &alloc);
967 }
968 gtk_widget_realize(m_widget);
969 if (alloc_width == 1)
970 {
971 alloc.width = 1;
972 gtk_widget_set_allocation(m_widget, &alloc);
973 }
974
975 // send _NET_REQUEST_FRAME_EXTENTS
976 XClientMessageEvent xevent;
977 memset(&xevent, 0, sizeof(xevent));
978 xevent.type = ClientMessage;
979 GdkWindow* window = gtk_widget_get_window(m_widget);
980 xevent.window = GDK_WINDOW_XID(window);
981 xevent.message_type = gdk_x11_atom_to_xatom_for_display(
982 gdk_window_get_display(window),
983 gdk_atom_intern("_NET_REQUEST_FRAME_EXTENTS", false));
984 xevent.format = 32;
985 Display* display = GDK_DISPLAY_XDISPLAY(gdk_window_get_display(window));
986 XSendEvent(display, DefaultRootWindow(display), false,
987 SubstructureNotifyMask | SubstructureRedirectMask,
988 (XEvent*)&xevent);
989
990 if (gs_requestFrameExtentsStatus == RFE_STATUS_UNKNOWN)
991 {
992 // if WM does not respond to request within 1 second,
993 // we assume support for _NET_REQUEST_FRAME_EXTENTS is not working
994 m_netFrameExtentsTimerId =
995 g_timeout_add(1000, request_frame_extents_timeout, this);
996 }
997
998 // defer calling gtk_widget_show()
999 m_isShown = true;
1000 return true;
1001 }
1002 #endif // GDK_WINDOWING_X11
1003
1004 if (show && !gtk_widget_get_realized(m_widget))
1005 {
1006 // size_allocate signals occur in reverse order (bottom to top).
1007 // Things work better if the initial wxSizeEvents are sent (from the
1008 // top down), before the initial size_allocate signals occur.
1009 wxSizeEvent event(GetSize(), GetId());
1010 event.SetEventObject(this);
1011 HandleWindowEvent(event);
1012 }
1013
1014 bool change = base_type::Show(show);
1015
1016 if (change && !show)
1017 {
1018 // make sure window has a non-default position, so when it is shown
1019 // again, it won't be repositioned by WM as if it were a new window
1020 // Note that this must be done _after_ the window is hidden.
1021 gtk_window_move((GtkWindow*)m_widget, m_x, m_y);
1022 }
1023
1024 return change;
1025 }
1026
1027 void wxTopLevelWindowGTK::ShowWithoutActivating()
1028 {
1029 if (!m_isShown)
1030 {
1031 gtk_window_set_focus_on_map(GTK_WINDOW(m_widget), false);
1032 Show(true);
1033 }
1034 }
1035
1036 void wxTopLevelWindowGTK::Raise()
1037 {
1038 gtk_window_present( GTK_WINDOW( m_widget ) );
1039 }
1040
1041 void wxTopLevelWindowGTK::DoMoveWindow(int WXUNUSED(x), int WXUNUSED(y), int WXUNUSED(width), int WXUNUSED(height) )
1042 {
1043 wxFAIL_MSG( wxT("DoMoveWindow called for wxTopLevelWindowGTK") );
1044 }
1045
1046 // ----------------------------------------------------------------------------
1047 // window geometry
1048 // ----------------------------------------------------------------------------
1049
1050 void wxTopLevelWindowGTK::GTKDoGetSize(int *width, int *height) const
1051 {
1052 wxSize size(m_width, m_height);
1053 size.x -= m_decorSize.left + m_decorSize.right;
1054 size.y -= m_decorSize.top + m_decorSize.bottom;
1055 if (size.x < 0) size.x = 0;
1056 if (size.y < 0) size.y = 0;
1057 #if wxUSE_LIBHILDON2
1058 if (width) {
1059 if (size.x == 720)
1060 *width = 696;
1061 else
1062 *width = size.x;
1063 }
1064 if (height) {
1065 if (size.y == 420)
1066 *height = 396;
1067 else if (size.y == 270)
1068 *height = 246;
1069 else
1070 *height = size.y;
1071 }
1072 #else // wxUSE_LIBHILDON2
1073 if (width) *width = size.x;
1074 if (height) *height = size.y;
1075 #endif // wxUSE_LIBHILDON2 /!wxUSE_LIBHILDON2
1076 }
1077
1078 void wxTopLevelWindowGTK::DoSetSize( int x, int y, int width, int height, int sizeFlags )
1079 {
1080 wxCHECK_RET( m_widget, wxT("invalid frame") );
1081
1082 // deal with the position first
1083 int old_x = m_x;
1084 int old_y = m_y;
1085
1086 if ( !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
1087 {
1088 // -1 means "use existing" unless the flag above is specified
1089 if ( x != -1 )
1090 m_x = x;
1091 if ( y != -1 )
1092 m_y = y;
1093 }
1094 else // wxSIZE_ALLOW_MINUS_ONE
1095 {
1096 m_x = x;
1097 m_y = y;
1098 }
1099
1100 if ( m_x != old_x || m_y != old_y )
1101 {
1102 gtk_window_move( GTK_WINDOW(m_widget), m_x, m_y );
1103 wxMoveEvent event(wxPoint(m_x, m_y), GetId());
1104 event.SetEventObject(this);
1105 HandleWindowEvent(event);
1106 }
1107
1108 const wxSize oldSize(m_width, m_height);
1109 if (width >= 0)
1110 m_width = width;
1111 if (height >= 0)
1112 m_height = height;
1113 ConstrainSize();
1114 if (m_width < 1) m_width = 1;
1115 if (m_height < 1) m_height = 1;
1116 if (m_width != oldSize.x || m_height != oldSize.y)
1117 {
1118 m_deferShowAllowed = true;
1119 m_useCachedClientSize = false;
1120
1121 int w, h;
1122 GTKDoGetSize(&w, &h);
1123 gtk_window_resize(GTK_WINDOW(m_widget), w, h);
1124
1125 DoGetClientSize(&m_clientWidth, &m_clientHeight);
1126 wxSizeEvent event(GetSize(), GetId());
1127 event.SetEventObject(this);
1128 HandleWindowEvent(event);
1129 }
1130 }
1131
1132 void wxTopLevelWindowGTK::DoSetClientSize(int width, int height)
1133 {
1134 base_type::DoSetClientSize(width, height);
1135
1136 // Since client size is being explicitly set, don't change it later
1137 // Has to be done after calling base because it calls SetSize,
1138 // which sets this true
1139 m_deferShowAllowed = false;
1140 }
1141
1142 void wxTopLevelWindowGTK::DoGetClientSize( int *width, int *height ) const
1143 {
1144 wxASSERT_MSG(m_widget, wxT("invalid frame"));
1145
1146 if ( IsIconized() )
1147 {
1148 // for consistency with wxMSW, client area is supposed to be empty for
1149 // the iconized windows
1150 if ( width )
1151 *width = 0;
1152 if ( height )
1153 *height = 0;
1154 }
1155 else if (m_useCachedClientSize)
1156 base_type::DoGetClientSize(width, height);
1157 else
1158 {
1159 GTKDoGetSize(width, height);
1160 }
1161 }
1162
1163 void wxTopLevelWindowGTK::DoSetSizeHints( int minW, int minH,
1164 int maxW, int maxH,
1165 int incW, int incH )
1166 {
1167 base_type::DoSetSizeHints(minW, minH, maxW, maxH, incW, incH);
1168 m_incWidth = incW;
1169 m_incHeight = incH;
1170
1171 const wxSize minSize = GetMinSize();
1172 const wxSize maxSize = GetMaxSize();
1173 GdkGeometry hints;
1174 // always set both min and max hints, otherwise GTK will
1175 // make assumptions we don't want about the unset values
1176 int hints_mask = GDK_HINT_MIN_SIZE | GDK_HINT_MAX_SIZE;
1177 hints.min_width = 1;
1178 hints.min_height = 1;
1179 hints.max_width = INT_MAX;
1180 hints.max_height = INT_MAX;
1181 const int decorSize_x = m_decorSize.left + m_decorSize.right;
1182 const int decorSize_y = m_decorSize.top + m_decorSize.bottom;
1183 if (minSize.x > decorSize_x)
1184 hints.min_width = minSize.x - decorSize_x;
1185 if (minSize.y > decorSize_y)
1186 hints.min_height = minSize.y - decorSize_y;
1187 if (maxSize.x > 0)
1188 {
1189 hints.max_width = maxSize.x - decorSize_x;
1190 if (hints.max_width < hints.min_width)
1191 hints.max_width = hints.min_width;
1192 }
1193 if (maxSize.y > 0)
1194 {
1195 hints.max_height = maxSize.y - decorSize_y;
1196 if (hints.max_height < hints.min_height)
1197 hints.max_height = hints.min_height;
1198 }
1199 if (incW > 0 || incH > 0)
1200 {
1201 hints_mask |= GDK_HINT_RESIZE_INC;
1202 hints.width_inc = incW > 0 ? incW : 1;
1203 hints.height_inc = incH > 0 ? incH : 1;
1204 }
1205 gtk_window_set_geometry_hints(
1206 (GtkWindow*)m_widget, NULL, &hints, (GdkWindowHints)hints_mask);
1207 }
1208
1209 #ifdef GDK_WINDOWING_X11
1210 void wxTopLevelWindowGTK::GTKUpdateDecorSize(const DecorSize& decorSize)
1211 {
1212 if (!IsMaximized() && !IsFullScreen())
1213 GetCachedDecorSize() = decorSize;
1214 if (m_updateDecorSize && memcmp(&m_decorSize, &decorSize, sizeof(DecorSize)))
1215 {
1216 m_useCachedClientSize = false;
1217 const wxSize diff(
1218 decorSize.left - m_decorSize.left + decorSize.right - m_decorSize.right,
1219 decorSize.top - m_decorSize.top + decorSize.bottom - m_decorSize.bottom);
1220 m_decorSize = decorSize;
1221 bool resized = false;
1222 if (m_minWidth > 0 || m_minHeight > 0 || m_maxWidth > 0 || m_maxHeight > 0)
1223 {
1224 // update size hints, they depend on m_decorSize
1225 DoSetSizeHints(m_minWidth, m_minHeight, m_maxWidth, m_maxHeight, m_incWidth, m_incHeight);
1226 }
1227 if (m_deferShow)
1228 {
1229 // keep overall size unchanged by shrinking m_widget
1230 int w, h;
1231 GTKDoGetSize(&w, &h);
1232 // but not if size would be less than minimum, it won't take effect
1233 if (w >= m_minWidth - (decorSize.left + decorSize.right) &&
1234 h >= m_minHeight - (decorSize.top + decorSize.bottom))
1235 {
1236 gtk_window_resize(GTK_WINDOW(m_widget), w, h);
1237 resized = true;
1238 }
1239 }
1240 if (!resized)
1241 {
1242 // adjust overall size to match change in frame extents
1243 m_width += diff.x;
1244 m_height += diff.y;
1245 if (m_width < 1) m_width = 1;
1246 if (m_height < 1) m_height = 1;
1247 m_clientWidth = 0;
1248 gtk_widget_queue_resize(m_wxwindow);
1249 }
1250 }
1251 if (m_deferShow)
1252 {
1253 // gtk_widget_show() was deferred, do it now
1254 m_deferShow = false;
1255 DoGetClientSize(&m_clientWidth, &m_clientHeight);
1256 wxSizeEvent sizeEvent(GetSize(), GetId());
1257 sizeEvent.SetEventObject(this);
1258 HandleWindowEvent(sizeEvent);
1259
1260 gtk_widget_show(m_widget);
1261
1262 wxShowEvent showEvent(GetId(), true);
1263 showEvent.SetEventObject(this);
1264 HandleWindowEvent(showEvent);
1265 }
1266 }
1267 #endif // GDK_WINDOWING_X11
1268
1269 wxTopLevelWindowGTK::DecorSize& wxTopLevelWindowGTK::GetCachedDecorSize()
1270 {
1271 static DecorSize size[8];
1272
1273 int index = 0;
1274 // title bar
1275 if (m_gdkDecor & (GDK_DECOR_MENU | GDK_DECOR_MINIMIZE | GDK_DECOR_MAXIMIZE | GDK_DECOR_TITLE))
1276 index = 1;
1277 // border
1278 if (m_gdkDecor & GDK_DECOR_BORDER)
1279 index |= 2;
1280 // utility window decor can be different
1281 if (m_windowStyle & wxFRAME_TOOL_WINDOW)
1282 index |= 4;
1283 return size[index];
1284 }
1285
1286 void wxTopLevelWindowGTK::OnInternalIdle()
1287 {
1288 wxTopLevelWindowBase::OnInternalIdle();
1289
1290 // Synthetize activate events.
1291 if ( g_sendActivateEvent != -1 )
1292 {
1293 bool activate = g_sendActivateEvent != 0;
1294
1295 // if (!activate) wxPrintf( wxT("de") );
1296 // wxPrintf( wxT("activate\n") );
1297
1298 // do it only once
1299 g_sendActivateEvent = -1;
1300
1301 wxTheApp->SetActive(activate, (wxWindow *)g_lastActiveFrame);
1302 }
1303 }
1304
1305 // ----------------------------------------------------------------------------
1306 // frame title/icon
1307 // ----------------------------------------------------------------------------
1308
1309 void wxTopLevelWindowGTK::SetTitle( const wxString &title )
1310 {
1311 wxASSERT_MSG( (m_widget != NULL), wxT("invalid frame") );
1312
1313 if ( title == m_title )
1314 return;
1315
1316 m_title = title;
1317
1318 gtk_window_set_title( GTK_WINDOW(m_widget), wxGTK_CONV( title ) );
1319 }
1320
1321 void wxTopLevelWindowGTK::SetIcons( const wxIconBundle &icons )
1322 {
1323 wxASSERT_MSG( (m_widget != NULL), wxT("invalid frame") );
1324
1325 base_type::SetIcons(icons);
1326
1327 // Setting icons before window is realized can cause a GTK assertion if
1328 // another TLW is realized before this one, and it has this one as it's
1329 // transient parent. The life demo exibits this problem.
1330 if (gtk_widget_get_realized(m_widget))
1331 {
1332 GList* list = NULL;
1333 for (size_t i = icons.GetIconCount(); i--;)
1334 list = g_list_prepend(list, icons.GetIconByIndex(i).GetPixbuf());
1335 gtk_window_set_icon_list(GTK_WINDOW(m_widget), list);
1336 g_list_free(list);
1337 }
1338 }
1339
1340 // ----------------------------------------------------------------------------
1341 // frame state: maximized/iconized/normal
1342 // ----------------------------------------------------------------------------
1343
1344 void wxTopLevelWindowGTK::Maximize(bool maximize)
1345 {
1346 if (maximize)
1347 gtk_window_maximize( GTK_WINDOW( m_widget ) );
1348 else
1349 gtk_window_unmaximize( GTK_WINDOW( m_widget ) );
1350 }
1351
1352 bool wxTopLevelWindowGTK::IsMaximized() const
1353 {
1354 GdkWindow* window = NULL;
1355 if (m_widget)
1356 window = gtk_widget_get_window(m_widget);
1357 return window && (gdk_window_get_state(window) & GDK_WINDOW_STATE_MAXIMIZED);
1358 }
1359
1360 void wxTopLevelWindowGTK::Restore()
1361 {
1362 // "Present" seems similar enough to "restore"
1363 gtk_window_present( GTK_WINDOW( m_widget ) );
1364 }
1365
1366 void wxTopLevelWindowGTK::Iconize( bool iconize )
1367 {
1368 if (iconize)
1369 gtk_window_iconify( GTK_WINDOW( m_widget ) );
1370 else
1371 gtk_window_deiconify( GTK_WINDOW( m_widget ) );
1372 }
1373
1374 bool wxTopLevelWindowGTK::IsIconized() const
1375 {
1376 return m_isIconized;
1377 }
1378
1379 void wxTopLevelWindowGTK::SetIconizeState(bool iconize)
1380 {
1381 if ( iconize != m_isIconized )
1382 {
1383 m_isIconized = iconize;
1384 (void)SendIconizeEvent(iconize);
1385 }
1386 }
1387
1388 void wxTopLevelWindowGTK::AddGrab()
1389 {
1390 if (!m_grabbed)
1391 {
1392 m_grabbed = true;
1393 gtk_grab_add( m_widget );
1394 wxGUIEventLoop().Run();
1395 gtk_grab_remove( m_widget );
1396 }
1397 }
1398
1399 void wxTopLevelWindowGTK::RemoveGrab()
1400 {
1401 if (m_grabbed)
1402 {
1403 gtk_main_quit();
1404 m_grabbed = false;
1405 }
1406 }
1407
1408 bool wxTopLevelWindowGTK::IsActive()
1409 {
1410 return (this == (wxTopLevelWindowGTK*)g_activeFrame);
1411 }
1412
1413 void wxTopLevelWindowGTK::RequestUserAttention(int flags)
1414 {
1415 bool new_hint_value = false;
1416
1417 // FIXME: This is a workaround to focus handling problem
1418 // If RequestUserAttention is called for example right after a wxSleep, OnInternalIdle
1419 // hasn't yet been processed, and the internal focus system is not up to date yet.
1420 // YieldFor(wxEVT_CATEGORY_UI) ensures the processing of it (hopefully it
1421 // won't have side effects) - MR
1422 wxEventLoopBase::GetActive()->YieldFor(wxEVT_CATEGORY_UI);
1423
1424 if(m_urgency_hint >= 0)
1425 g_source_remove(m_urgency_hint);
1426
1427 m_urgency_hint = -2;
1428
1429 if( gtk_widget_get_realized(m_widget) && !IsActive() )
1430 {
1431 new_hint_value = true;
1432
1433 if (flags & wxUSER_ATTENTION_INFO)
1434 {
1435 m_urgency_hint = g_timeout_add(5000, (GSourceFunc)gtk_frame_urgency_timer_callback, this);
1436 } else {
1437 m_urgency_hint = -1;
1438 }
1439 }
1440
1441 gtk_window_set_urgency_hint(GTK_WINDOW(m_widget), new_hint_value);
1442 }
1443
1444 void wxTopLevelWindowGTK::SetWindowStyleFlag( long style )
1445 {
1446 // Store which styles were changed
1447 long styleChanges = style ^ m_windowStyle;
1448
1449 // Process wxWindow styles. This also updates the internal variable
1450 // Therefore m_windowStyle bits carry now the _new_ style values
1451 wxWindow::SetWindowStyleFlag(style);
1452
1453 // just return for now if widget does not exist yet
1454 if (!m_widget)
1455 return;
1456
1457 if ( styleChanges & wxSTAY_ON_TOP )
1458 {
1459 gtk_window_set_keep_above(GTK_WINDOW(m_widget),
1460 m_windowStyle & wxSTAY_ON_TOP);
1461 }
1462
1463 if ( styleChanges & wxFRAME_NO_TASKBAR )
1464 {
1465 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(m_widget),
1466 m_windowStyle & wxFRAME_NO_TASKBAR);
1467 }
1468 }
1469
1470 bool wxTopLevelWindowGTK::SetTransparent(wxByte alpha)
1471 {
1472 GdkWindow* window = NULL;
1473 if (m_widget)
1474 window = gtk_widget_get_window(m_widget);
1475 if (window == NULL)
1476 return false;
1477
1478 #ifdef GDK_WINDOWING_X11
1479 Display* dpy = GDK_WINDOW_XDISPLAY(window);
1480 Window win = GDK_WINDOW_XID(window);
1481
1482 // Using pure Xlib to not have a GTK version check mess due to gtk2.0 not having GdkDisplay
1483 if (alpha == 0xff)
1484 XDeleteProperty(dpy, win, XInternAtom(dpy, "_NET_WM_WINDOW_OPACITY", False));
1485 else
1486 {
1487 long opacity = alpha * 0x1010101L;
1488 XChangeProperty(dpy, win, XInternAtom(dpy, "_NET_WM_WINDOW_OPACITY", False),
1489 XA_CARDINAL, 32, PropModeReplace,
1490 (unsigned char *) &opacity, 1L);
1491 }
1492 XSync(dpy, False);
1493 return true;
1494 #else // !GDK_WINDOWING_X11
1495 return false;
1496 #endif // GDK_WINDOWING_X11 / !GDK_WINDOWING_X11
1497 }
1498
1499 bool wxTopLevelWindowGTK::CanSetTransparent()
1500 {
1501 // allow to override automatic detection as it's far from perfect
1502 const wxString SYSOPT_TRANSPARENT = "gtk.tlw.can-set-transparent";
1503 if ( wxSystemOptions::HasOption(SYSOPT_TRANSPARENT) )
1504 {
1505 return wxSystemOptions::GetOptionInt(SYSOPT_TRANSPARENT) != 0;
1506 }
1507
1508 #ifdef __WXGTK3__
1509 return gtk_widget_is_composited(m_widget) != 0;
1510 #else
1511 #if GTK_CHECK_VERSION(2,10,0)
1512 if (!gtk_check_version(2,10,0))
1513 {
1514 return gtk_widget_is_composited(m_widget) != 0;
1515 }
1516 else
1517 #endif // In case of lower versions than gtk+-2.10.0 we could look for _NET_WM_CM_Sn ourselves
1518 {
1519 return false;
1520 }
1521 #endif // !__WXGTK3__
1522
1523 #if 0 // Don't be optimistic here for the sake of wxAUI
1524 int opcode, event, error;
1525 // Check for the existence of a RGBA visual instead?
1526 return XQueryExtension(gdk_x11_get_default_xdisplay (),
1527 "Composite", &opcode, &event, &error);
1528 #endif
1529 }