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