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