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