]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/toplevel.cpp
fix a few hundreds of harmless unused parameters warnings and a couple of real bugs...
[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 368 decorSize = size;
cca410b3
PC
369 wxSizeEvent event(win->GetSize(), win->GetId());
370 event.SetEventObject(win);
371 win->GetEventHandler()->ProcessEvent(event);
290cd301
PC
372 }
373 }
374
0a164d4c 375 win->SetIconizeState(false);
0e795b05 376 return false;
7d9f12f3 377}
865bb325 378}
7d9f12f3
VS
379
380//-----------------------------------------------------------------------------
381// "unmap_event" from m_widget
382//-----------------------------------------------------------------------------
383
865bb325 384extern "C" {
0e795b05 385static gboolean
7d9f12f3
VS
386gtk_frame_unmap_callback( GtkWidget * WXUNUSED(widget),
387 GdkEvent * WXUNUSED(event),
388 wxTopLevelWindow *win )
389{
cb8cc250 390 win->SetIconizeState(true);
0e795b05 391 return false;
7d9f12f3 392}
865bb325 393}
7d9f12f3 394
290cd301
PC
395//-----------------------------------------------------------------------------
396// "property_notify_event" from m_widget
397//-----------------------------------------------------------------------------
398
399extern "C" {
400static gboolean property_notify_event(
401 GtkWidget*, GdkEventProperty* event, wxTopLevelWindowGTK* win)
402{
403 // Watch for changes to _NET_FRAME_EXTENTS property
404 static GdkAtom property = gdk_atom_intern("_NET_FRAME_EXTENTS", false);
405 if (event->state == GDK_PROPERTY_NEW_VALUE && event->atom == property &&
406 win->IsDecorCacheable() && !win->IsFullScreen())
407 {
408 Atom xproperty;
409#if GTK_CHECK_VERSION(2, 2, 0)
410 if (gtk_check_version(2, 2, 0) == NULL)
411 {
412 xproperty = gdk_x11_atom_to_xatom_for_display(
413 gdk_drawable_get_display(event->window), property);
414 }
415 else
416#endif
417 {
418 xproperty = gdk_x11_atom_to_xatom(property);
419 }
420 Atom type;
421 int format;
422 gulong nitems, bytes_after;
423 long* data = NULL;
424 Status status = XGetWindowProperty(
425 gdk_x11_drawable_get_xdisplay(event->window),
426 gdk_x11_drawable_get_xid(event->window),
427 xproperty,
428 0, 4, false, XA_CARDINAL,
429 &type, &format, &nitems, &bytes_after, (guchar**)&data);
430 if (status == Success && data && nitems == 4)
431 {
432 wxSize& decorSize = GetDecorSize(win->m_gdkDecor);
433 const wxSize size =
434 wxSize(int(data[0] + data[1]), int(data[2] + data[3]));
435 if (decorSize.x != size.x || decorSize.y != size.y)
436 {
437 // Update window size and frame extents cache
438 win->m_width += size.x - decorSize.x;
439 win->m_height += size.y - decorSize.y;
440 if (win->m_width < 0) win->m_width = 0;
441 if (win->m_height < 0) win->m_height = 0;
290cd301 442 decorSize = size;
cca410b3
PC
443 wxSizeEvent event(win->GetSize(), win->GetId());
444 event.SetEventObject(win);
445 win->GetEventHandler()->ProcessEvent(event);
290cd301
PC
446 }
447 }
448 if (data)
449 XFree(data);
450 }
451 return false;
452}
453}
454
013151c7
JS
455BEGIN_EVENT_TABLE(wxTopLevelWindowGTK, wxTopLevelWindowBase)
456 EVT_SYS_COLOUR_CHANGED(wxTopLevelWindowGTK::OnSysColourChanged)
457END_EVENT_TABLE()
458
459
7d9f12f3
VS
460// ----------------------------------------------------------------------------
461// wxTopLevelWindowGTK creation
462// ----------------------------------------------------------------------------
463
464void wxTopLevelWindowGTK::Init()
465{
7d9f12f3 466 m_mainWidget = (GtkWidget*) NULL;
0a164d4c
WS
467 m_isIconized = false;
468 m_fsIsShowing = false;
469 m_themeEnabled = true;
f819b4a3 470 m_gdkDecor = m_gdkFunc = 0;
0a164d4c 471 m_grabbed = false;
dca92ddf 472
ef1a9be4 473 m_urgency_hint = -2;
7d9f12f3
VS
474}
475
476bool wxTopLevelWindowGTK::Create( wxWindow *parent,
f819b4a3
VS
477 wxWindowID id,
478 const wxString& title,
479 const wxPoint& pos,
480 const wxSize& sizeOrig,
481 long style,
482 const wxString &name )
7d9f12f3
VS
483{
484 // always create a frame of some reasonable, even if arbitrary, size (at
485 // least for MSW compatibility)
486 wxSize size = sizeOrig;
1111cedc 487 size.x = WidthDefault(size.x);
66202a7e 488 size.y = HeightDefault(size.y);
7d9f12f3
VS
489
490 wxTopLevelWindows.Append( this );
491
7d9f12f3
VS
492 if (!PreCreation( parent, pos, size ) ||
493 !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
494 {
495 wxFAIL_MSG( wxT("wxTopLevelWindowGTK creation failed") );
0a164d4c 496 return false;
7d9f12f3
VS
497 }
498
499 m_title = title;
500
63c5efa3
VS
501 // NB: m_widget may be !=NULL if it was created by derived class' Create,
502 // e.g. in wxTaskBarIconAreaGTK
503 if (m_widget == NULL)
504 {
cca410b3 505 m_widget = gtk_window_new(GTK_WINDOW_TOPLEVEL);
63c5efa3
VS
506 if (GetExtraStyle() & wxTOPLEVEL_EX_DIALOG)
507 {
4d8d6490
VS
508 // Tell WM that this is a dialog window and make it center
509 // on parent by default (this is what GtkDialog ctor does):
510 gtk_window_set_type_hint(GTK_WINDOW(m_widget),
511 GDK_WINDOW_TYPE_HINT_DIALOG);
512 gtk_window_set_position(GTK_WINDOW(m_widget),
513 GTK_WIN_POS_CENTER_ON_PARENT);
63c5efa3 514 }
4d8d6490
VS
515 else
516 {
606ce80c 517#if GTK_CHECK_VERSION(2,1,0)
caf3e97f 518 if (!gtk_check_version(2,1,0))
11475235 519 {
caf3e97f
KH
520 if (style & wxFRAME_TOOL_WINDOW)
521 {
522 gtk_window_set_type_hint(GTK_WINDOW(m_widget),
523 GDK_WINDOW_TYPE_HINT_UTILITY);
0a164d4c 524
caf3e97f
KH
525 // On some WMs, like KDE, a TOOL_WINDOW will still show
526 // on the taskbar, but on Gnome a TOOL_WINDOW will not.
0a164d4c 527 // For consistency between WMs and with Windows, we
caf3e97f
KH
528 // should set the NO_TASKBAR flag which will apply
529 // the set_skip_taskbar_hint if it is available,
530 // ensuring no taskbar entry will appear.
531 style |= wxFRAME_NO_TASKBAR;
532 }
11475235 533 }
cf49c955 534#endif
4d8d6490 535 }
63c5efa3 536 }
7d9f12f3 537
e25c7537
VS
538 wxWindow *topParent = wxGetTopLevelParent(m_parent);
539 if (topParent && (((GTK_IS_WINDOW(topParent->m_widget)) &&
0a164d4c
WS
540 (GetExtraStyle() & wxTOPLEVEL_EX_DIALOG)) ||
541 (style & wxFRAME_FLOAT_ON_PARENT)))
7cd95599 542 {
e25c7537
VS
543 gtk_window_set_transient_for( GTK_WINDOW(m_widget),
544 GTK_WINDOW(topParent->m_widget) );
7cd95599 545 }
7d9f12f3 546
2be125e6 547#if GTK_CHECK_VERSION(2,2,0)
caf3e97f 548 if (!gtk_check_version(2,2,0))
2be125e6 549 {
caf3e97f
KH
550 if (style & wxFRAME_NO_TASKBAR)
551 {
552 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(m_widget), TRUE);
553 }
2be125e6
VS
554 }
555#endif
556
015dca24 557#ifdef __WXGTK24__
81a3313a 558 if (!gtk_check_version(2,4,0))
2fca39c9 559 {
81a3313a
RR
560 if (style & wxSTAY_ON_TOP)
561 {
562 gtk_window_set_keep_above(GTK_WINDOW(m_widget), TRUE);
563 }
2fca39c9
KH
564 }
565#endif
566
5503a51c 567#if 0
0a164d4c 568 if (!name.empty())
5503a51c
MR
569 gtk_window_set_role( GTK_WINDOW(m_widget), wxGTK_CONV( name ) );
570#endif
7d9f12f3 571
fab591c5 572 gtk_window_set_title( GTK_WINDOW(m_widget), wxGTK_CONV( title ) );
7d9f12f3
VS
573 GTK_WIDGET_UNSET_FLAGS( m_widget, GTK_CAN_FOCUS );
574
9fa72bd2
MR
575 g_signal_connect (m_widget, "delete_event",
576 G_CALLBACK (gtk_frame_delete_callback), this);
7d9f12f3 577
cca410b3
PC
578 // m_mainWidget is a GtkVBox, holding the bars and client area (m_wxwindow)
579 m_mainWidget = gtk_vbox_new(false, 0);
7d9f12f3
VS
580 gtk_widget_show( m_mainWidget );
581 GTK_WIDGET_UNSET_FLAGS( m_mainWidget, GTK_CAN_FOCUS );
582 gtk_container_add( GTK_CONTAINER(m_widget), m_mainWidget );
583
cca410b3
PC
584 // m_wxwindow is the client area
585 m_wxwindow = gtk_pizza_new_no_scroll();
7d9f12f3
VS
586 gtk_widget_show( m_wxwindow );
587 gtk_container_add( GTK_CONTAINER(m_mainWidget), m_wxwindow );
588
e1f14d22
RR
589 // we donm't allow the frame to get the focus as otherwise
590 // the frame will grab it at arbitrary focus changes
7d9f12f3
VS
591 GTK_WIDGET_UNSET_FLAGS( m_wxwindow, GTK_CAN_FOCUS );
592
593 if (m_parent) m_parent->AddChild( this );
594
cca410b3
PC
595 g_signal_connect(m_wxwindow, "size_allocate",
596 G_CALLBACK(size_allocate), this);
7d9f12f3 597
6e264997
VZ
598 g_signal_connect (m_widget, "size_request",
599 G_CALLBACK (wxgtk_tlw_size_request_callback), this);
7d9f12f3
VS
600 PostCreation();
601
602 if ((m_x != -1) || (m_y != -1))
603 gtk_widget_set_uposition( m_widget, m_x, m_y );
6aeb6f2a 604
e1f14d22
RR
605 // we cannot set MWM hints and icons before the widget has
606 // been realized, so we do this directly after realization
9fa72bd2
MR
607 g_signal_connect (m_widget, "realize",
608 G_CALLBACK (gtk_frame_realized_callback), this);
7d9f12f3 609
e1f14d22 610 // map and unmap for iconized state
9fa72bd2
MR
611 g_signal_connect (m_widget, "map_event",
612 G_CALLBACK (gtk_frame_map_callback), this);
613 g_signal_connect (m_widget, "unmap_event",
614 G_CALLBACK (gtk_frame_unmap_callback), this);
7d9f12f3 615
dc89b7bf 616 // for wxMoveEvent
9fa72bd2
MR
617 g_signal_connect (m_widget, "configure_event",
618 G_CALLBACK (gtk_frame_configure_callback), this);
7d9f12f3 619
06fda9e8 620 // activation
4c20ee63 621 g_signal_connect_after (m_widget, "focus_in_event",
9fa72bd2 622 G_CALLBACK (gtk_frame_focus_in_callback), this);
4c20ee63 623 g_signal_connect_after (m_widget, "focus_out_event",
9fa72bd2 624 G_CALLBACK (gtk_frame_focus_out_callback), this);
0a164d4c 625
290cd301
PC
626 gtk_widget_add_events(m_widget, GDK_PROPERTY_CHANGE_MASK);
627 g_signal_connect(m_widget, "property_notify_event",
628 G_CALLBACK(property_notify_event), this);
629
e1f14d22 630 // decorations
85a0a12a 631 if ((style & wxSIMPLE_BORDER) || (style & wxNO_BORDER))
f819b4a3
VS
632 {
633 m_gdkDecor = 0;
634 m_gdkFunc = 0;
635 }
636 else
637 {
290cd301
PC
638 m_gdkDecor = GDK_DECOR_BORDER;
639 m_gdkFunc = GDK_FUNC_MOVE;
82c9f85c 640
f819b4a3 641 // All this is for Motif Window Manager "hints" and is supposed to be
e1f14d22 642 // recognized by other WMs as well.
f819b4a3 643 if ((style & wxCAPTION) != 0)
c3d8ee42 644 {
f819b4a3 645 m_gdkDecor |= GDK_DECOR_TITLE;
c3d8ee42 646 }
850c6ed4 647 if ((style & wxCLOSE_BOX) != 0)
f819b4a3
VS
648 {
649 m_gdkFunc |= GDK_FUNC_CLOSE;
c3d8ee42
VS
650 }
651 if ((style & wxSYSTEM_MENU) != 0)
652 {
f819b4a3
VS
653 m_gdkDecor |= GDK_DECOR_MENU;
654 }
655 if ((style & wxMINIMIZE_BOX) != 0)
656 {
657 m_gdkFunc |= GDK_FUNC_MINIMIZE;
658 m_gdkDecor |= GDK_DECOR_MINIMIZE;
659 }
660 if ((style & wxMAXIMIZE_BOX) != 0)
661 {
662 m_gdkFunc |= GDK_FUNC_MAXIMIZE;
663 m_gdkDecor |= GDK_DECOR_MAXIMIZE;
664 }
665 if ((style & wxRESIZE_BORDER) != 0)
666 {
667 m_gdkFunc |= GDK_FUNC_RESIZE;
668 m_gdkDecor |= GDK_DECOR_RESIZEH;
669 }
670 }
671
290cd301
PC
672 // m_gdkDecor needs to be set before calling GTKDoGetSize
673 int w, h;
674 GTKDoGetSize(&w, &h);
675 gtk_window_set_default_size(GTK_WINDOW(m_widget), w, h);
676
0a164d4c 677 return true;
7d9f12f3
VS
678}
679
680wxTopLevelWindowGTK::~wxTopLevelWindowGTK()
681{
5152b0e5
JS
682 if (m_grabbed)
683 {
4362c705 684 wxFAIL_MSG(_T("Window still grabbed"));
5152b0e5
JS
685 RemoveGrab();
686 }
1cbee0b4 687
0a164d4c 688 m_isBeingDeleted = true;
6aeb6f2a 689
710968c3
VZ
690 // it may also be GtkScrolledWindow in the case of an MDI child
691 if (GTK_IS_WINDOW(m_widget))
692 {
693 gtk_window_set_focus( GTK_WINDOW(m_widget), NULL );
694 }
0a164d4c 695
06fda9e8
RR
696 if (g_activeFrame == this)
697 g_activeFrame = NULL;
698 if (g_lastActiveFrame == this)
699 g_lastActiveFrame = NULL;
7d9f12f3
VS
700}
701
0d635035
RR
702bool wxTopLevelWindowGTK::EnableCloseButton( bool enable )
703{
704 if (enable)
705 m_gdkFunc |= GDK_FUNC_CLOSE;
706 else
707 m_gdkFunc &= ~GDK_FUNC_CLOSE;
a6cdd521 708
0d635035
RR
709 if (GTK_WIDGET_REALIZED(m_widget) && (m_widget->window))
710 gdk_window_set_functions( m_widget->window, (GdkWMFunction)m_gdkFunc );
a6cdd521 711
0d635035
RR
712 return true;
713}
8a9650ea 714
1529bc41 715bool wxTopLevelWindowGTK::ShowFullScreen(bool show, long)
7d9f12f3 716{
8a8997c3 717 if (show == m_fsIsShowing)
0a164d4c 718 return false; // return what?
7d9f12f3
VS
719
720 m_fsIsShowing = show;
0a164d4c 721
1542ea39 722 wxX11FullScreenMethod method =
8166ab43
VS
723 wxGetFullScreenMethodX11((WXDisplay*)GDK_DISPLAY(),
724 (WXWindow)GDK_ROOT_WINDOW());
1542ea39 725
feb1c9fb
VS
726#if GTK_CHECK_VERSION(2,2,0)
727 // NB: gtk_window_fullscreen() uses freedesktop.org's WMspec extensions
728 // to switch to fullscreen, which is not always available. We must
729 // check if WM supports the spec and use legacy methods if it
730 // doesn't.
cc35003a 731 if ( (method == wxX11_FS_WMSPEC) && !gtk_check_version(2,2,0) )
7d9f12f3 732 {
feb1c9fb
VS
733 if (show)
734 gtk_window_fullscreen( GTK_WINDOW( m_widget ) );
735 else
736 gtk_window_unfullscreen( GTK_WINDOW( m_widget ) );
7d9f12f3
VS
737 }
738 else
8a8997c3 739#endif // GTK+ >= 2.2.0
7d9f12f3 740 {
feb1c9fb
VS
741 GdkWindow *window = m_widget->window;
742
743 if (show)
8166ab43 744 {
feb1c9fb
VS
745 GetPosition( &m_fsSaveFrame.x, &m_fsSaveFrame.y );
746 GetSize( &m_fsSaveFrame.width, &m_fsSaveFrame.height );
747
748 int screen_width,screen_height;
749 wxDisplaySize( &screen_width, &screen_height );
750
751 gint client_x, client_y, root_x, root_y;
752 gint width, height;
753
754 if (method != wxX11_FS_WMSPEC)
755 {
756 // don't do it always, Metacity hates it
757 m_fsSaveGdkFunc = m_gdkFunc;
758 m_fsSaveGdkDecor = m_gdkDecor;
759 m_gdkFunc = m_gdkDecor = 0;
760 gdk_window_set_decorations(window, (GdkWMDecoration)0);
761 gdk_window_set_functions(window, (GdkWMFunction)0);
762 }
763
764 gdk_window_get_origin (m_widget->window, &root_x, &root_y);
765 gdk_window_get_geometry (m_widget->window, &client_x, &client_y,
766 &width, &height, NULL);
767
768 gdk_window_move_resize (m_widget->window, -client_x, -client_y,
769 screen_width + 1, screen_height + 1);
770
771 wxSetFullScreenStateX11((WXDisplay*)GDK_DISPLAY(),
772 (WXWindow)GDK_ROOT_WINDOW(),
773 (WXWindow)GDK_WINDOW_XWINDOW(window),
774 show, &m_fsSaveFrame, method);
775 }
3b2931fb 776 else // hide
feb1c9fb
VS
777 {
778 if (method != wxX11_FS_WMSPEC)
779 {
780 // don't do it always, Metacity hates it
781 m_gdkFunc = m_fsSaveGdkFunc;
782 m_gdkDecor = m_fsSaveGdkDecor;
783 gdk_window_set_decorations(window, (GdkWMDecoration)m_gdkDecor);
784 gdk_window_set_functions(window, (GdkWMFunction)m_gdkFunc);
785 }
786
787 wxSetFullScreenStateX11((WXDisplay*)GDK_DISPLAY(),
788 (WXWindow)GDK_ROOT_WINDOW(),
789 (WXWindow)GDK_WINDOW_XWINDOW(window),
790 show, &m_fsSaveFrame, method);
791
792 SetSize(m_fsSaveFrame.x, m_fsSaveFrame.y,
793 m_fsSaveFrame.width, m_fsSaveFrame.height);
8166ab43 794 }
7d9f12f3 795 }
8166ab43 796
3b2931fb
VZ
797 // documented behaviour is to show the window if it's still hidden when
798 // showing it full screen
1529bc41 799 if (show)
3b2931fb
VZ
800 Show();
801
0a164d4c 802 return true;
7d9f12f3
VS
803}
804
805// ----------------------------------------------------------------------------
806// overridden wxWindow methods
807// ----------------------------------------------------------------------------
808
809bool wxTopLevelWindowGTK::Show( bool show )
810{
82b978d7 811 wxASSERT_MSG( (m_widget != NULL), wxT("invalid frame") );
7d9f12f3 812
cca410b3 813 if (show && !IsShown())
7d9f12f3 814 {
cca410b3
PC
815 // size_allocate signals occur in reverse order (bottom to top).
816 // Things work better if the initial wxSizeEvents are sent (from the
817 // top down), before the initial size_allocate signals occur.
818 wxSizeEvent event(GetSize(), GetId());
819 event.SetEventObject(this);
820 GetEventHandler()->ProcessEvent(event);
7d9f12f3 821 }
0a164d4c 822
cca410b3 823 bool change = wxTopLevelWindowBase::Show(show);
aa34396c 824
cca410b3 825 if (change && !show)
aa34396c
PC
826 {
827 // make sure window has a non-default position, so when it is shown
828 // again, it won't be repositioned by WM as if it were a new window
829 // Note that this must be done _after_ the window is hidden.
830 gtk_window_move((GtkWindow*)m_widget, m_x, m_y);
831 }
832
cca410b3 833 return change;
7d9f12f3
VS
834}
835
a2ac55f5
RR
836void wxTopLevelWindowGTK::Raise()
837{
a2ac55f5 838 gtk_window_present( GTK_WINDOW( m_widget ) );
a2ac55f5
RR
839}
840
7d9f12f3
VS
841void wxTopLevelWindowGTK::DoMoveWindow(int WXUNUSED(x), int WXUNUSED(y), int WXUNUSED(width), int WXUNUSED(height) )
842{
843 wxFAIL_MSG( wxT("DoMoveWindow called for wxTopLevelWindowGTK") );
844}
845
a6cdd521
VZ
846// ----------------------------------------------------------------------------
847// window geometry
848// ----------------------------------------------------------------------------
849
6e264997
VZ
850void wxTopLevelWindowGTK::GTKDoGetSize(int *width, int *height) const
851{
290cd301
PC
852 wxSize size(m_width, m_height);
853 if (!IsFullScreen())
a6cdd521 854 {
290cd301
PC
855 size -= GetDecorSize(m_gdkDecor);
856 if (size.x < 0) size.x = 0;
857 if (size.y < 0) size.y = 0;
a6cdd521 858 }
290cd301
PC
859 if (width) *width = size.x;
860 if (height) *height = size.y;
a6cdd521
VZ
861}
862
7d9f12f3
VS
863void wxTopLevelWindowGTK::DoSetSize( int x, int y, int width, int height, int sizeFlags )
864{
a6cdd521 865 wxCHECK_RET( m_widget, wxT("invalid frame") );
82b978d7 866
e1f14d22 867 // this shouldn't happen: wxFrame, wxMDIParentFrame and wxMDIChildFrame have m_wxwindow
7d9f12f3
VS
868 wxASSERT_MSG( (m_wxwindow != NULL), wxT("invalid frame") );
869
7d9f12f3 870
a6cdd521 871 // deal with the position first
7d9f12f3
VS
872 int old_x = m_x;
873 int old_y = m_y;
874
a6cdd521 875 if ( !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
7d9f12f3 876 {
a6cdd521
VZ
877 // -1 means "use existing" unless the flag above is specified
878 if ( x != -1 )
879 m_x = x;
880 if ( y != -1 )
881 m_y = y;
7d9f12f3 882 }
a6cdd521 883 else // wxSIZE_ALLOW_MINUS_ONE
7d9f12f3
VS
884 {
885 m_x = x;
886 m_y = y;
7d9f12f3 887 }
7d9f12f3 888
a6cdd521 889 if ( m_x != old_x || m_y != old_y )
7d9f12f3 890 {
a6cdd521 891 gtk_window_move( GTK_WINDOW(m_widget), m_x, m_y );
7d9f12f3 892 }
7d9f12f3 893
290cd301
PC
894 const wxSize oldSize(m_width, m_height);
895 if (width >= 0)
896 m_width = width;
897 if (height >= 0)
898 m_height = height;
899 ConstrainSize();
900 if (m_width != oldSize.x || m_height != oldSize.y)
a6cdd521 901 {
290cd301
PC
902 int w, h;
903 GTKDoGetSize(&w, &h);
904 gtk_window_resize(GTK_WINDOW(m_widget), w, h);
cca410b3
PC
905
906 GetClientSize(&m_oldClientWidth, &m_oldClientHeight);
907 wxSizeEvent event(GetSize(), GetId());
908 event.SetEventObject(this);
909 GetEventHandler()->ProcessEvent(event);
7d9f12f3 910 }
7d9f12f3
VS
911}
912
913void wxTopLevelWindowGTK::DoGetClientSize( int *width, int *height ) const
914{
cca410b3
PC
915 wxASSERT_MSG(m_widget, wxT("invalid frame"));
916
bb596005
VZ
917 if ( IsIconized() )
918 {
919 // for consistency with wxMSW, client area is supposed to be empty for
920 // the iconized windows
921 if ( width )
922 *width = 0;
923 if ( height )
924 *height = 0;
bb596005 925 }
cca410b3 926 else
290cd301 927 {
cca410b3 928 GTKDoGetSize(width, height);
290cd301 929 }
7d9f12f3
VS
930}
931
9379c0d7
RR
932void wxTopLevelWindowGTK::DoSetSizeHints( int minW, int minH,
933 int maxW, int maxH,
934 int incW, int incH )
7d9f12f3 935{
9379c0d7 936 wxTopLevelWindowBase::DoSetSizeHints( minW, minH, maxW, maxH, incW, incH );
d6c11fa9
PC
937
938 const wxSize minSize = GetMinSize();
939 const wxSize maxSize = GetMaxSize();
940 GdkGeometry hints;
941 int hints_mask = 0;
290cd301 942 const wxSize sizeDecor = GetDecorSize(m_gdkDecor);
d6c11fa9
PC
943 if (minSize.x > 0 || minSize.y > 0)
944 {
945 hints_mask |= GDK_HINT_MIN_SIZE;
290cd301
PC
946 hints.min_width = minSize.x - sizeDecor.x;
947 if (hints.min_width < 0)
948 hints.min_width = 0;
949 hints.min_height = minSize.y - sizeDecor.y;
950 if (hints.min_height < 0)
951 hints.min_height = 0;
d6c11fa9
PC
952 }
953 if (maxSize.x > 0 || maxSize.y > 0)
954 {
955 hints_mask |= GDK_HINT_MAX_SIZE;
290cd301
PC
956 hints.max_width = maxSize.x - sizeDecor.x;
957 if (hints.max_width < 0)
958 hints.max_width = INT_MAX;
959 hints.max_height = maxSize.y - sizeDecor.y;
960 if (hints.max_height < 0)
961 hints.max_height = INT_MAX;
d6c11fa9
PC
962 }
963 if (incW > 0 || incH > 0)
7d9f12f3 964 {
d6c11fa9
PC
965 hints_mask |= GDK_HINT_RESIZE_INC;
966 hints.width_inc = incW > 0 ? incW : 1;
967 hints.height_inc = incH > 0 ? incH : 1;
9379c0d7 968 }
d6c11fa9
PC
969 gtk_window_set_geometry_hints(
970 (GtkWindow*)m_widget, NULL, &hints, (GdkWindowHints)hints_mask);
9379c0d7 971}
7d9f12f3 972
290cd301
PC
973bool wxTopLevelWindowGTK::IsDecorCacheable() const
974{
975 return true;
976}
977
7d9f12f3
VS
978void wxTopLevelWindowGTK::OnInternalIdle()
979{
6aeb6f2a
VZ
980 // set the focus if not done yet and if we can already do it
981 if ( GTK_WIDGET_REALIZED(m_wxwindow) )
982 {
cc06fe74
MB
983 if ( g_delayedFocus &&
984 wxGetTopLevelParent((wxWindow*)g_delayedFocus) == this )
6aeb6f2a 985 {
2b5f62a0
VZ
986 wxLogTrace(_T("focus"),
987 _T("Setting focus from wxTLW::OnIdle() to %s(%s)"),
988 g_delayedFocus->GetClassInfo()->GetClassName(),
989 g_delayedFocus->GetLabel().c_str());
990
6aeb6f2a
VZ
991 g_delayedFocus->SetFocus();
992 g_delayedFocus = NULL;
993 }
994 }
995
7d9f12f3 996 wxWindow::OnInternalIdle();
0a164d4c 997
06fda9e8
RR
998 // Synthetize activate events.
999 if ( g_sendActivateEvent != -1 )
1000 {
1001 bool activate = g_sendActivateEvent != 0;
0a164d4c 1002
576f7127
RR
1003 // if (!activate) wxPrintf( wxT("de") );
1004 // wxPrintf( wxT("activate\n") );
0a164d4c 1005
06fda9e8
RR
1006 // do it only once
1007 g_sendActivateEvent = -1;
1008
1009 wxTheApp->SetActive(activate, (wxWindow *)g_lastActiveFrame);
1010 }
7d9f12f3
VS
1011}
1012
7d9f12f3
VS
1013// ----------------------------------------------------------------------------
1014// frame title/icon
1015// ----------------------------------------------------------------------------
1016
1017void wxTopLevelWindowGTK::SetTitle( const wxString &title )
1018{
82b978d7
RD
1019 wxASSERT_MSG( (m_widget != NULL), wxT("invalid frame") );
1020
cb8cc250
WS
1021 if ( title == m_title )
1022 return;
1023
7d9f12f3 1024 m_title = title;
cb8cc250 1025
fab591c5 1026 gtk_window_set_title( GTK_WINDOW(m_widget), wxGTK_CONV( title ) );
7d9f12f3
VS
1027}
1028
f618020a
MB
1029void wxTopLevelWindowGTK::SetIcons( const wxIconBundle &icons )
1030{
82b978d7 1031 wxASSERT_MSG( (m_widget != NULL), wxT("invalid frame") );
f618020a
MB
1032
1033 wxTopLevelWindowBase::SetIcons( icons );
1034
87e53e2a 1035 GList *list = NULL;
87e53e2a 1036
52734360
VZ
1037 const size_t numIcons = icons.GetIconCount();
1038 for ( size_t i = 0; i < numIcons; i++ )
52d6235d 1039 {
52734360 1040 list = g_list_prepend(list, icons.GetIconByIndex(i).GetPixbuf());
87e53e2a 1041 }
52734360 1042
87e53e2a
VS
1043 gtk_window_set_icon_list(GTK_WINDOW(m_widget), list);
1044 g_list_free(list);
f618020a
MB
1045}
1046
7d9f12f3
VS
1047// ----------------------------------------------------------------------------
1048// frame state: maximized/iconized/normal
1049// ----------------------------------------------------------------------------
1050
8805e155 1051void wxTopLevelWindowGTK::Maximize(bool maximize)
7d9f12f3 1052{
8805e155
RR
1053 if (maximize)
1054 gtk_window_maximize( GTK_WINDOW( m_widget ) );
1055 else
1056 gtk_window_unmaximize( GTK_WINDOW( m_widget ) );
7d9f12f3
VS
1057}
1058
1059bool wxTopLevelWindowGTK::IsMaximized() const
1060{
d8e1fe80
VS
1061 if(!m_widget->window)
1062 return false;
1063
1064 return gdk_window_get_state(m_widget->window) & GDK_WINDOW_STATE_MAXIMIZED;
7d9f12f3
VS
1065}
1066
1067void wxTopLevelWindowGTK::Restore()
1068{
8805e155
RR
1069 // "Present" seems similar enough to "restore"
1070 gtk_window_present( GTK_WINDOW( m_widget ) );
7d9f12f3
VS
1071}
1072
1073void wxTopLevelWindowGTK::Iconize( bool iconize )
1074{
8805e155
RR
1075 if (iconize)
1076 gtk_window_iconify( GTK_WINDOW( m_widget ) );
1077 else
1078 gtk_window_deiconify( GTK_WINDOW( m_widget ) );
7d9f12f3
VS
1079}
1080
1081bool wxTopLevelWindowGTK::IsIconized() const
1082{
1083 return m_isIconized;
1084}
1085
1086void wxTopLevelWindowGTK::SetIconizeState(bool iconize)
1087{
1088 if ( iconize != m_isIconized )
1089 {
1090 m_isIconized = iconize;
1091 (void)SendIconizeEvent(iconize);
1092 }
1093}
1094
5152b0e5
JS
1095void wxTopLevelWindowGTK::AddGrab()
1096{
1097 if (!m_grabbed)
1098 {
0a164d4c 1099 m_grabbed = true;
5152b0e5 1100 gtk_grab_add( m_widget );
b46b1d59 1101 wxGUIEventLoop().Run();
5152b0e5
JS
1102 gtk_grab_remove( m_widget );
1103 }
1104}
1105
1106void wxTopLevelWindowGTK::RemoveGrab()
1107{
1108 if (m_grabbed)
1109 {
1110 gtk_main_quit();
0a164d4c 1111 m_grabbed = false;
5152b0e5
JS
1112 }
1113}
801225c1 1114
1542ea39
RD
1115
1116// helper
1117static bool do_shape_combine_region(GdkWindow* window, const wxRegion& region)
1118{
1119 if (window)
1120 {
1121 if (region.IsEmpty())
1122 {
1123 gdk_window_shape_combine_mask(window, NULL, 0, 0);
1124 }
1125 else
1126 {
0a164d4c 1127 gdk_window_shape_combine_region(window, region.GetRegion(), 0, 0);
0a164d4c 1128 return true;
1542ea39
RD
1129 }
1130 }
0a164d4c 1131 return false;
1542ea39
RD
1132}
1133
1134
1135bool wxTopLevelWindowGTK::SetShape(const wxRegion& region)
1136{
0a164d4c 1137 wxCHECK_MSG( HasFlag(wxFRAME_SHAPED), false,
6a7e6411
RD
1138 _T("Shaped windows must be created with the wxFRAME_SHAPED style."));
1139
1542ea39
RD
1140 GdkWindow *window = NULL;
1141 if (m_wxwindow)
1142 {
1143 window = GTK_PIZZA(m_wxwindow)->bin_window;
1144 do_shape_combine_region(window, region);
1145 }
1146 window = m_widget->window;
1147 return do_shape_combine_region(window, region);
1148}
1149
6b30a44e 1150bool wxTopLevelWindowGTK::IsActive()
35ff90a0 1151{
06fda9e8 1152 return (this == (wxTopLevelWindowGTK*)g_activeFrame);
35ff90a0 1153}
dca92ddf
MR
1154
1155void wxTopLevelWindowGTK::RequestUserAttention(int flags)
1156{
1157 bool new_hint_value = false;
1158
1159 // FIXME: This is a workaround to focus handling problem
1160 // If RequestUserAttention is called for example right after a wxSleep, OnInternalIdle hasn't
1161 // yet been processed, and the internal focus system is not up to date yet.
1162 // wxYieldIfNeeded ensures the processing of it, but can have unwanted side effects - MR
1163 ::wxYieldIfNeeded();
1164
dca92ddf 1165 if(m_urgency_hint >= 0)
92ed8bec 1166 g_source_remove(m_urgency_hint);
dca92ddf 1167
ef1a9be4 1168 m_urgency_hint = -2;
dca92ddf
MR
1169
1170 if( GTK_WIDGET_REALIZED(m_widget) && !IsActive() )
1171 {
1172 new_hint_value = true;
1173
1174 if (flags & wxUSER_ATTENTION_INFO)
1175 {
92ed8bec 1176 m_urgency_hint = g_timeout_add(5000, (GSourceFunc)gtk_frame_urgency_timer_callback, this);
dca92ddf 1177 } else {
ef1a9be4 1178 m_urgency_hint = -1;
dca92ddf
MR
1179 }
1180 }
1181
2ec371fd 1182#if GTK_CHECK_VERSION(2,7,0)
dca92ddf
MR
1183 if(!gtk_check_version(2,7,0))
1184 gtk_window_set_urgency_hint(GTK_WINDOW( m_widget ), new_hint_value);
1185 else
1186#endif
1187 wxgtk_window_set_urgency_hint(GTK_WINDOW( m_widget ), new_hint_value);
1188}
015dca24
MR
1189
1190void wxTopLevelWindowGTK::SetWindowStyleFlag( long style )
1191{
7e3edf92 1192#if defined(__WXGTK24__) || GTK_CHECK_VERSION(2,2,0)
015dca24
MR
1193 // Store which styles were changed
1194 long styleChanges = style ^ m_windowStyle;
7e3edf92 1195#endif
015dca24
MR
1196
1197 // Process wxWindow styles. This also updates the internal variable
1198 // Therefore m_windowStyle bits carry now the _new_ style values
1199 wxWindow::SetWindowStyleFlag(style);
1200
1201 // just return for now if widget does not exist yet
1202 if (!m_widget)
1203 return;
1204
1205#ifdef __WXGTK24__
1206 if ( (styleChanges & wxSTAY_ON_TOP) && !gtk_check_version(2,4,0) )
1207 gtk_window_set_keep_above(GTK_WINDOW(m_widget), m_windowStyle & wxSTAY_ON_TOP);
defdd888 1208#endif // GTK+ 2.4
8fb82418
MR
1209#if GTK_CHECK_VERSION(2,2,0)
1210 if ( (styleChanges & wxFRAME_NO_TASKBAR) && !gtk_check_version(2,2,0) )
1211 {
1212 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(m_widget), m_windowStyle & wxFRAME_NO_TASKBAR);
1213 }
defdd888 1214#endif // GTK+ 2.2
015dca24 1215}
07e49707 1216
07e49707
MR
1217/* Get the X Window between child and the root window.
1218 This should usually be the WM managed XID */
1219static Window wxGetTopmostWindowX11(Display *dpy, Window child)
1220{
1221 Window root, parent;
1222 Window* children;
1223 unsigned int nchildren;
1224
1225 XQueryTree(dpy, child, &root, &parent, &children, &nchildren);
1226 XFree(children);
1227
1228 while (parent != root) {
1229 child = parent;
1230 XQueryTree(dpy, child, &root, &parent, &children, &nchildren);
1231 XFree(children);
1232 }
1233
1234 return child;
1235}
1236
1237bool wxTopLevelWindowGTK::SetTransparent(wxByte alpha)
1238{
3eecbda8 1239 if (!m_widget || !m_widget->window)
07e49707
MR
1240 return false;
1241
1242 Display* dpy = GDK_WINDOW_XDISPLAY (m_widget->window);
1243 // We need to get the X Window that has the root window as the immediate parent
1244 // and m_widget->window as a child. This should be the X Window that the WM manages and
1245 // from which the opacity property is checked from.
1246 Window win = wxGetTopmostWindowX11(dpy, GDK_WINDOW_XID (m_widget->window));
1247
07e49707
MR
1248
1249 // Using pure Xlib to not have a GTK version check mess due to gtk2.0 not having GdkDisplay
1250 if (alpha == 0xff)
1251 XDeleteProperty(dpy, win, XInternAtom(dpy, "_NET_WM_WINDOW_OPACITY", False));
1252 else
d48687a0
PC
1253 {
1254 long opacity = alpha * 0x1010101L;
07e49707
MR
1255 XChangeProperty(dpy, win, XInternAtom(dpy, "_NET_WM_WINDOW_OPACITY", False),
1256 XA_CARDINAL, 32, PropModeReplace,
1257 (unsigned char *) &opacity, 1L);
d48687a0 1258 }
07e49707
MR
1259 XSync(dpy, False);
1260 return true;
1261}
1262
1263bool wxTopLevelWindowGTK::CanSetTransparent()
1264{
a95a6eb4
VZ
1265 // allow to override automatic detection as it's far from perfect
1266 static const wxChar *SYSOPT_TRANSPARENT = wxT("gtk.tlw.can-set-transparent");
1267 if ( wxSystemOptions::HasOption(SYSOPT_TRANSPARENT) )
1268 {
1269 return wxSystemOptions::GetOptionInt(SYSOPT_TRANSPARENT) != 0;
1270 }
1271
60169b7a
MR
1272#if GTK_CHECK_VERSION(2,10,0)
1273 if (!gtk_check_version(2,10,0))
1274 {
0b241226 1275 return (gtk_widget_is_composited (m_widget));
60169b7a
MR
1276 }
1277 else
1278#endif // In case of lower versions than gtk+-2.10.0 we could look for _NET_WM_CM_Sn ourselves
1279 {
1280 return false;
1281 }
1282
1283#if 0 // Don't be optimistic here for the sake of wxAUI
07e49707
MR
1284 int opcode, event, error;
1285 // Check for the existence of a RGBA visual instead?
1286 return XQueryExtension(gdk_x11_get_default_xdisplay (),
1287 "Composite", &opcode, &event, &error);
60169b7a 1288#endif
07e49707 1289}
013151c7
JS
1290
1291void wxTopLevelWindowGTK::OnSysColourChanged(wxSysColourChangedEvent& event)
1292{
1293 // We don't know the order in which top-level windows will
1294 // be notified, so we need to clear the system objects
1295 // for each top-level window.
1296 extern void wxClearGtkSystemObjects();
1297 wxClearGtkSystemObjects();
1298
1299 // wxWindowBase::OnSysColourChanged will propagate event
1300 // to children
1301 event.Skip();
1302}