1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/toplevel.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
13 // ============================================================================
15 // ============================================================================
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
22 #define XIconifyWindow XICONIFYWINDOW
25 #include "wx/toplevel.h"
34 #include "wx/gtk/private.h"
35 #include "wx/evtloop.h"
36 #include "wx/sysopt.h"
41 #include "wx/gtk/win_gtk.h"
43 #include "wx/unix/utilsx11.h"
46 #include <X11/Xatom.h>
48 // ----------------------------------------------------------------------------
50 // ----------------------------------------------------------------------------
52 extern int g_openDialogs
;
53 extern wxWindowGTK
*g_delayedFocus
;
55 // the frame that is currently active (i.e. its child has focus). It is
56 // used to generate wxActivateEvents
57 static wxTopLevelWindowGTK
*g_activeFrame
= (wxTopLevelWindowGTK
*) NULL
;
58 static wxTopLevelWindowGTK
*g_lastActiveFrame
= (wxTopLevelWindowGTK
*) NULL
;
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
64 static int g_sendActivateEvent
= -1;
66 //-----------------------------------------------------------------------------
67 // RequestUserAttention related functions
68 //-----------------------------------------------------------------------------
71 static void wxgtk_window_set_urgency_hint (GtkWindow
*win
,
74 wxASSERT_MSG( GTK_WIDGET_REALIZED(win
), wxT("wxgtk_window_set_urgency_hint: GdkWindow not realized") );
75 GdkWindow
*window
= GTK_WIDGET(win
)->window
;
78 wm_hints
= XGetWMHints(GDK_WINDOW_XDISPLAY(window
), GDK_WINDOW_XWINDOW(window
));
81 wm_hints
= XAllocWMHints();
84 wm_hints
->flags
|= XUrgencyHint
;
86 wm_hints
->flags
&= ~XUrgencyHint
;
88 XSetWMHints(GDK_WINDOW_XDISPLAY(window
), GDK_WINDOW_XWINDOW(window
), wm_hints
);
92 static gboolean
gtk_frame_urgency_timer_callback( wxTopLevelWindowGTK
*win
)
94 #if GTK_CHECK_VERSION(2,7,0)
95 if(!gtk_check_version(2,7,0))
96 gtk_window_set_urgency_hint(GTK_WINDOW( win
->m_widget
), FALSE
);
99 wxgtk_window_set_urgency_hint(GTK_WINDOW( win
->m_widget
), FALSE
);
101 win
->m_urgency_hint
= -2;
106 //-----------------------------------------------------------------------------
108 //-----------------------------------------------------------------------------
111 static gboolean
gtk_frame_focus_in_callback( GtkWidget
*widget
,
112 GdkEvent
*WXUNUSED(event
),
113 wxTopLevelWindowGTK
*win
)
115 switch ( g_sendActivateEvent
)
118 // we've got focus from outside, synthetize wxActivateEvent
119 g_sendActivateEvent
= 1;
123 // another our window just lost focus, it was already ours before
124 // - don't send any wxActivateEvent
125 g_sendActivateEvent
= -1;
130 g_lastActiveFrame
= g_activeFrame
;
132 // wxPrintf( wxT("active: %s\n"), win->GetTitle().c_str() );
134 // MR: wxRequestUserAttention related block
135 switch( win
->m_urgency_hint
)
138 g_source_remove( win
->m_urgency_hint
);
139 // no break, fallthrough to remove hint too
141 #if GTK_CHECK_VERSION(2,7,0)
142 if(!gtk_check_version(2,7,0))
143 gtk_window_set_urgency_hint(GTK_WINDOW( widget
), FALSE
);
147 wxgtk_window_set_urgency_hint(GTK_WINDOW( widget
), FALSE
);
150 win
->m_urgency_hint
= -2;
156 wxLogTrace(wxT("activate"), wxT("Activating frame %p (from focus_in)"), g_activeFrame
);
157 wxActivateEvent
event(wxEVT_ACTIVATE
, true, g_activeFrame
->GetId());
158 event
.SetEventObject(g_activeFrame
);
159 g_activeFrame
->GetEventHandler()->ProcessEvent(event
);
165 //-----------------------------------------------------------------------------
167 //-----------------------------------------------------------------------------
170 static gboolean
gtk_frame_focus_out_callback( GtkWidget
*widget
,
171 GdkEventFocus
*WXUNUSED(gdk_event
),
172 wxTopLevelWindowGTK
*win
)
174 // if the focus goes out of our app alltogether, OnIdle() will send
175 // wxActivateEvent, otherwise gtk_window_focus_in_callback() will reset
176 // g_sendActivateEvent to -1
177 g_sendActivateEvent
= 0;
179 // wxASSERT_MSG( (g_activeFrame == win), wxT("TLW deactivatd although it wasn't active") );
181 // wxPrintf( wxT("inactive: %s\n"), win->GetTitle().c_str() );
185 wxLogTrace(wxT("activate"), wxT("Activating frame %p (from focus_in)"), g_activeFrame
);
186 wxActivateEvent
event(wxEVT_ACTIVATE
, false, g_activeFrame
->GetId());
187 event
.SetEventObject(g_activeFrame
);
188 g_activeFrame
->GetEventHandler()->ProcessEvent(event
);
190 g_activeFrame
= NULL
;
197 //-----------------------------------------------------------------------------
199 // Get cached size of WM decorations for given GdkWMDecoration.
200 static wxSize
& GetDecorSize(int decor
)
202 // In testing, only the title bar and GDK_DECOR_BORDER made a difference.
203 // 4 possible combinations of title bar and border
204 static wxSize size
[4];
208 if (decor
& (GDK_DECOR_MENU
| GDK_DECOR_MINIMIZE
| GDK_DECOR_MAXIMIZE
| GDK_DECOR_TITLE
))
211 if (decor
& GDK_DECOR_BORDER
)
216 //-----------------------------------------------------------------------------
218 //-----------------------------------------------------------------------------
221 static void gtk_frame_size_callback( GtkWidget
*WXUNUSED(widget
), GtkAllocation
* alloc
, wxTopLevelWindowGTK
*win
)
227 if (!win
->IsFullScreen())
228 sizeDecor
= GetDecorSize(win
->m_gdkDecor
);
229 const int w
= alloc
->width
+ sizeDecor
.x
;
230 const int h
= alloc
->height
+ sizeDecor
.y
;
232 if (win
->m_width
!= w
|| win
->m_height
!= h
)
237 win
->GtkUpdateSize();
242 // ----------------------------------------------------------------------------
244 // ----------------------------------------------------------------------------
248 void wxgtk_tlw_size_request_callback(GtkWidget
* WXUNUSED(widget
),
249 GtkRequisition
*requisition
,
250 wxTopLevelWindowGTK
*win
)
252 // we must return the size of the window without WM decorations, otherwise
253 // GTK+ gets confused, so don't call just GetSize() here
254 win
->GTKDoGetSize(&requisition
->width
, &requisition
->height
);
258 //-----------------------------------------------------------------------------
260 //-----------------------------------------------------------------------------
264 gtk_frame_delete_callback( GtkWidget
*WXUNUSED(widget
),
265 GdkEvent
*WXUNUSED(event
),
266 wxTopLevelWindowGTK
*win
)
268 if (win
->IsEnabled() &&
269 (g_openDialogs
== 0 || (win
->GetExtraStyle() & wxTOPLEVEL_EX_DIALOG
) ||
278 //-----------------------------------------------------------------------------
280 //-----------------------------------------------------------------------------
284 gtk_frame_configure_callback( GtkWidget
* widget
,
285 GdkEventConfigure
*WXUNUSED(event
),
286 wxTopLevelWindowGTK
*win
)
288 if (!win
->m_hasVMT
|| !win
->IsShown())
292 gtk_window_get_position((GtkWindow
*)widget
, &point
.x
, &point
.y
);
296 wxMoveEvent
mevent(point
, win
->GetId());
297 mevent
.SetEventObject( win
);
298 win
->GetEventHandler()->ProcessEvent( mevent
);
304 //-----------------------------------------------------------------------------
305 // "realize" from m_widget
306 //-----------------------------------------------------------------------------
308 // we cannot MWM hints and icons before the widget has been realized,
309 // so we do this directly after realization
313 gtk_frame_realized_callback( GtkWidget
* WXUNUSED(widget
),
314 wxTopLevelWindowGTK
*win
)
316 // All this is for Motif Window Manager "hints" and is supposed to be
317 // recognized by other WM as well. Not tested.
318 gdk_window_set_decorations(win
->m_widget
->window
,
319 (GdkWMDecoration
)win
->m_gdkDecor
);
320 gdk_window_set_functions(win
->m_widget
->window
,
321 (GdkWMFunction
)win
->m_gdkFunc
);
323 // GTK's shrinking/growing policy
324 if ((win
->m_gdkFunc
& GDK_FUNC_RESIZE
) == 0)
325 gtk_window_set_resizable(GTK_WINDOW(win
->m_widget
), FALSE
);
327 gtk_window_set_policy(GTK_WINDOW(win
->m_widget
), 1, 1, 1);
330 wxIconBundle iconsOld
= win
->GetIcons();
331 if ( !iconsOld
.IsEmpty() )
333 win
->SetIcon( wxNullIcon
);
334 win
->SetIcons( iconsOld
);
339 //-----------------------------------------------------------------------------
340 // "map_event" from m_widget
341 //-----------------------------------------------------------------------------
345 gtk_frame_map_callback( GtkWidget
* widget
,
346 GdkEvent
* WXUNUSED(event
),
347 wxTopLevelWindow
*win
)
349 // Calculate size of WM decorations.
350 // Done here in case WM does not support the _NET_FRAME_EXTENTS property.
351 if (win
->IsDecorCacheable() && !win
->IsFullScreen())
354 gdk_window_get_frame_extents(widget
->window
, &rect
);
356 gdk_drawable_get_size(widget
->window
, &w
, &h
);
357 wxSize
& decorSize
= GetDecorSize(win
->m_gdkDecor
);
358 const wxSize size
= wxSize(rect
.width
- w
, rect
.height
- h
);
359 if (decorSize
.x
!= size
.x
|| decorSize
.y
!= size
.y
)
361 // Update window size and frame extents cache
362 win
->m_width
= rect
.width
;
363 win
->m_height
= rect
.height
;
364 win
->GtkUpdateSize();
369 win
->SetIconizeState(false);
374 //-----------------------------------------------------------------------------
375 // "unmap_event" from m_widget
376 //-----------------------------------------------------------------------------
380 gtk_frame_unmap_callback( GtkWidget
* WXUNUSED(widget
),
381 GdkEvent
* WXUNUSED(event
),
382 wxTopLevelWindow
*win
)
384 win
->SetIconizeState(true);
389 //-----------------------------------------------------------------------------
390 // "property_notify_event" from m_widget
391 //-----------------------------------------------------------------------------
394 static gboolean
property_notify_event(
395 GtkWidget
*, GdkEventProperty
* event
, wxTopLevelWindowGTK
* win
)
397 // Watch for changes to _NET_FRAME_EXTENTS property
398 static GdkAtom property
= gdk_atom_intern("_NET_FRAME_EXTENTS", false);
399 if (event
->state
== GDK_PROPERTY_NEW_VALUE
&& event
->atom
== property
&&
400 win
->IsDecorCacheable() && !win
->IsFullScreen())
403 #if GTK_CHECK_VERSION(2, 2, 0)
404 if (gtk_check_version(2, 2, 0) == NULL
)
406 xproperty
= gdk_x11_atom_to_xatom_for_display(
407 gdk_drawable_get_display(event
->window
), property
);
412 xproperty
= gdk_x11_atom_to_xatom(property
);
416 gulong nitems
, bytes_after
;
418 Status status
= XGetWindowProperty(
419 gdk_x11_drawable_get_xdisplay(event
->window
),
420 gdk_x11_drawable_get_xid(event
->window
),
422 0, 4, false, XA_CARDINAL
,
423 &type
, &format
, &nitems
, &bytes_after
, (guchar
**)&data
);
424 if (status
== Success
&& data
&& nitems
== 4)
426 wxSize
& decorSize
= GetDecorSize(win
->m_gdkDecor
);
428 wxSize(int(data
[0] + data
[1]), int(data
[2] + data
[3]));
429 if (decorSize
.x
!= size
.x
|| decorSize
.y
!= size
.y
)
431 // Update window size and frame extents cache
432 win
->m_width
+= size
.x
- decorSize
.x
;
433 win
->m_height
+= size
.y
- decorSize
.y
;
434 if (win
->m_width
< 0) win
->m_width
= 0;
435 if (win
->m_height
< 0) win
->m_height
= 0;
436 win
->GtkUpdateSize();
447 //-----------------------------------------------------------------------------
448 // "expose_event" of m_client
449 //-----------------------------------------------------------------------------
453 gtk_window_expose_callback( GtkWidget
*widget
,
454 GdkEventExpose
*gdk_event
,
457 GtkPizza
*pizza
= GTK_PIZZA(widget
);
459 gtk_paint_flat_box (win
->m_widget
->style
,
460 pizza
->bin_window
, GTK_STATE_NORMAL
,
471 // ----------------------------------------------------------------------------
472 // wxTopLevelWindowGTK creation
473 // ----------------------------------------------------------------------------
475 void wxTopLevelWindowGTK::Init()
480 m_mainWidget
= (GtkWidget
*) NULL
;
481 m_isIconized
= false;
482 m_fsIsShowing
= false;
483 m_themeEnabled
= true;
484 m_gdkDecor
= m_gdkFunc
= 0;
490 bool wxTopLevelWindowGTK::Create( wxWindow
*parent
,
492 const wxString
& title
,
494 const wxSize
& sizeOrig
,
496 const wxString
&name
)
498 // always create a frame of some reasonable, even if arbitrary, size (at
499 // least for MSW compatibility)
500 wxSize size
= sizeOrig
;
501 size
.x
= WidthDefault(size
.x
);
502 size
.y
= HeightDefault(size
.y
);
504 wxTopLevelWindows
.Append( this );
506 if (!PreCreation( parent
, pos
, size
) ||
507 !CreateBase( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
509 wxFAIL_MSG( wxT("wxTopLevelWindowGTK creation failed") );
515 // NB: m_widget may be !=NULL if it was created by derived class' Create,
516 // e.g. in wxTaskBarIconAreaGTK
517 if (m_widget
== NULL
)
519 if (GetExtraStyle() & wxTOPLEVEL_EX_DIALOG
)
521 m_widget
= gtk_window_new(GTK_WINDOW_TOPLEVEL
);
522 // Tell WM that this is a dialog window and make it center
523 // on parent by default (this is what GtkDialog ctor does):
524 gtk_window_set_type_hint(GTK_WINDOW(m_widget
),
525 GDK_WINDOW_TYPE_HINT_DIALOG
);
526 gtk_window_set_position(GTK_WINDOW(m_widget
),
527 GTK_WIN_POS_CENTER_ON_PARENT
);
531 m_widget
= gtk_window_new(GTK_WINDOW_TOPLEVEL
);
532 #if GTK_CHECK_VERSION(2,1,0)
533 if (!gtk_check_version(2,1,0))
535 if (style
& wxFRAME_TOOL_WINDOW
)
537 gtk_window_set_type_hint(GTK_WINDOW(m_widget
),
538 GDK_WINDOW_TYPE_HINT_UTILITY
);
540 // On some WMs, like KDE, a TOOL_WINDOW will still show
541 // on the taskbar, but on Gnome a TOOL_WINDOW will not.
542 // For consistency between WMs and with Windows, we
543 // should set the NO_TASKBAR flag which will apply
544 // the set_skip_taskbar_hint if it is available,
545 // ensuring no taskbar entry will appear.
546 style
|= wxFRAME_NO_TASKBAR
;
553 wxWindow
*topParent
= wxGetTopLevelParent(m_parent
);
554 if (topParent
&& (((GTK_IS_WINDOW(topParent
->m_widget
)) &&
555 (GetExtraStyle() & wxTOPLEVEL_EX_DIALOG
)) ||
556 (style
& wxFRAME_FLOAT_ON_PARENT
)))
558 gtk_window_set_transient_for( GTK_WINDOW(m_widget
),
559 GTK_WINDOW(topParent
->m_widget
) );
562 #if GTK_CHECK_VERSION(2,2,0)
563 if (!gtk_check_version(2,2,0))
565 if (style
& wxFRAME_NO_TASKBAR
)
567 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(m_widget
), TRUE
);
573 if (!gtk_check_version(2,4,0))
575 if (style
& wxSTAY_ON_TOP
)
577 gtk_window_set_keep_above(GTK_WINDOW(m_widget
), TRUE
);
584 gtk_window_set_role( GTK_WINDOW(m_widget
), wxGTK_CONV( name
) );
587 gtk_window_set_title( GTK_WINDOW(m_widget
), wxGTK_CONV( title
) );
588 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
590 g_signal_connect (m_widget
, "delete_event",
591 G_CALLBACK (gtk_frame_delete_callback
), this);
593 // m_mainWidget holds the toolbar, the menubar and the client area
594 m_mainWidget
= gtk_pizza_new();
595 gtk_widget_show( m_mainWidget
);
596 GTK_WIDGET_UNSET_FLAGS( m_mainWidget
, GTK_CAN_FOCUS
);
597 gtk_container_add( GTK_CONTAINER(m_widget
), m_mainWidget
);
599 if (m_miniEdge
== 0) // wxMiniFrame has its own version.
601 // For m_mainWidget themes
602 g_signal_connect (m_mainWidget
, "expose_event",
603 G_CALLBACK (gtk_window_expose_callback
), this);
606 // m_wxwindow only represents the client area without toolbar and menubar
607 m_wxwindow
= gtk_pizza_new();
608 gtk_widget_show( m_wxwindow
);
609 gtk_container_add( GTK_CONTAINER(m_mainWidget
), m_wxwindow
);
611 // we donm't allow the frame to get the focus as otherwise
612 // the frame will grab it at arbitrary focus changes
613 GTK_WIDGET_UNSET_FLAGS( m_wxwindow
, GTK_CAN_FOCUS
);
615 if (m_parent
) m_parent
->AddChild( this );
617 // the user resized the frame by dragging etc.
618 g_signal_connect (m_widget
, "size_allocate",
619 G_CALLBACK (gtk_frame_size_callback
), this);
621 g_signal_connect (m_widget
, "size_request",
622 G_CALLBACK (wxgtk_tlw_size_request_callback
), this);
625 if ((m_x
!= -1) || (m_y
!= -1))
626 gtk_widget_set_uposition( m_widget
, m_x
, m_y
);
628 // we cannot set MWM hints and icons before the widget has
629 // been realized, so we do this directly after realization
630 g_signal_connect (m_widget
, "realize",
631 G_CALLBACK (gtk_frame_realized_callback
), this);
633 // map and unmap for iconized state
634 g_signal_connect (m_widget
, "map_event",
635 G_CALLBACK (gtk_frame_map_callback
), this);
636 g_signal_connect (m_widget
, "unmap_event",
637 G_CALLBACK (gtk_frame_unmap_callback
), this);
640 g_signal_connect (m_widget
, "configure_event",
641 G_CALLBACK (gtk_frame_configure_callback
), this);
644 g_signal_connect_after (m_widget
, "focus_in_event",
645 G_CALLBACK (gtk_frame_focus_in_callback
), this);
646 g_signal_connect_after (m_widget
, "focus_out_event",
647 G_CALLBACK (gtk_frame_focus_out_callback
), this);
649 gtk_widget_add_events(m_widget
, GDK_PROPERTY_CHANGE_MASK
);
650 g_signal_connect(m_widget
, "property_notify_event",
651 G_CALLBACK(property_notify_event
), this);
654 if ((style
& wxSIMPLE_BORDER
) || (style
& wxNO_BORDER
))
665 if ((style
& wxRESIZE_BORDER
) != 0)
666 m_gdkFunc
|= GDK_FUNC_RESIZE
;
670 m_gdkDecor
= GDK_DECOR_BORDER
;
671 m_gdkFunc
= GDK_FUNC_MOVE
;
673 // All this is for Motif Window Manager "hints" and is supposed to be
674 // recognized by other WMs as well.
675 if ((style
& wxCAPTION
) != 0)
677 m_gdkDecor
|= GDK_DECOR_TITLE
;
679 if ((style
& wxCLOSE_BOX
) != 0)
681 m_gdkFunc
|= GDK_FUNC_CLOSE
;
683 if ((style
& wxSYSTEM_MENU
) != 0)
685 m_gdkDecor
|= GDK_DECOR_MENU
;
687 if ((style
& wxMINIMIZE_BOX
) != 0)
689 m_gdkFunc
|= GDK_FUNC_MINIMIZE
;
690 m_gdkDecor
|= GDK_DECOR_MINIMIZE
;
692 if ((style
& wxMAXIMIZE_BOX
) != 0)
694 m_gdkFunc
|= GDK_FUNC_MAXIMIZE
;
695 m_gdkDecor
|= GDK_DECOR_MAXIMIZE
;
697 if ((style
& wxRESIZE_BORDER
) != 0)
699 m_gdkFunc
|= GDK_FUNC_RESIZE
;
700 m_gdkDecor
|= GDK_DECOR_RESIZEH
;
704 // m_gdkDecor needs to be set before calling GTKDoGetSize
706 GTKDoGetSize(&w
, &h
);
707 gtk_window_set_default_size(GTK_WINDOW(m_widget
), w
, h
);
712 wxTopLevelWindowGTK::~wxTopLevelWindowGTK()
716 wxFAIL_MSG(_T("Window still grabbed"));
720 m_isBeingDeleted
= true;
722 // it may also be GtkScrolledWindow in the case of an MDI child
723 if (GTK_IS_WINDOW(m_widget
))
725 gtk_window_set_focus( GTK_WINDOW(m_widget
), NULL
);
728 if (g_activeFrame
== this)
729 g_activeFrame
= NULL
;
730 if (g_lastActiveFrame
== this)
731 g_lastActiveFrame
= NULL
;
734 bool wxTopLevelWindowGTK::EnableCloseButton( bool enable
)
737 m_gdkFunc
|= GDK_FUNC_CLOSE
;
739 m_gdkFunc
&= ~GDK_FUNC_CLOSE
;
741 if (GTK_WIDGET_REALIZED(m_widget
) && (m_widget
->window
))
742 gdk_window_set_functions( m_widget
->window
, (GdkWMFunction
)m_gdkFunc
);
747 bool wxTopLevelWindowGTK::ShowFullScreen(bool show
, long)
749 if (show
== m_fsIsShowing
)
750 return false; // return what?
752 m_fsIsShowing
= show
;
754 wxX11FullScreenMethod method
=
755 wxGetFullScreenMethodX11((WXDisplay
*)GDK_DISPLAY(),
756 (WXWindow
)GDK_ROOT_WINDOW());
758 #if GTK_CHECK_VERSION(2,2,0)
759 // NB: gtk_window_fullscreen() uses freedesktop.org's WMspec extensions
760 // to switch to fullscreen, which is not always available. We must
761 // check if WM supports the spec and use legacy methods if it
763 if ( (method
== wxX11_FS_WMSPEC
) && !gtk_check_version(2,2,0) )
766 gtk_window_fullscreen( GTK_WINDOW( m_widget
) );
768 gtk_window_unfullscreen( GTK_WINDOW( m_widget
) );
771 #endif // GTK+ >= 2.2.0
773 GdkWindow
*window
= m_widget
->window
;
777 GetPosition( &m_fsSaveFrame
.x
, &m_fsSaveFrame
.y
);
778 GetSize( &m_fsSaveFrame
.width
, &m_fsSaveFrame
.height
);
780 int screen_width
,screen_height
;
781 wxDisplaySize( &screen_width
, &screen_height
);
783 gint client_x
, client_y
, root_x
, root_y
;
786 if (method
!= wxX11_FS_WMSPEC
)
788 // don't do it always, Metacity hates it
789 m_fsSaveGdkFunc
= m_gdkFunc
;
790 m_fsSaveGdkDecor
= m_gdkDecor
;
791 m_gdkFunc
= m_gdkDecor
= 0;
792 gdk_window_set_decorations(window
, (GdkWMDecoration
)0);
793 gdk_window_set_functions(window
, (GdkWMFunction
)0);
796 gdk_window_get_origin (m_widget
->window
, &root_x
, &root_y
);
797 gdk_window_get_geometry (m_widget
->window
, &client_x
, &client_y
,
798 &width
, &height
, NULL
);
800 gdk_window_move_resize (m_widget
->window
, -client_x
, -client_y
,
801 screen_width
+ 1, screen_height
+ 1);
803 wxSetFullScreenStateX11((WXDisplay
*)GDK_DISPLAY(),
804 (WXWindow
)GDK_ROOT_WINDOW(),
805 (WXWindow
)GDK_WINDOW_XWINDOW(window
),
806 show
, &m_fsSaveFrame
, method
);
810 if (method
!= wxX11_FS_WMSPEC
)
812 // don't do it always, Metacity hates it
813 m_gdkFunc
= m_fsSaveGdkFunc
;
814 m_gdkDecor
= m_fsSaveGdkDecor
;
815 gdk_window_set_decorations(window
, (GdkWMDecoration
)m_gdkDecor
);
816 gdk_window_set_functions(window
, (GdkWMFunction
)m_gdkFunc
);
819 wxSetFullScreenStateX11((WXDisplay
*)GDK_DISPLAY(),
820 (WXWindow
)GDK_ROOT_WINDOW(),
821 (WXWindow
)GDK_WINDOW_XWINDOW(window
),
822 show
, &m_fsSaveFrame
, method
);
824 SetSize(m_fsSaveFrame
.x
, m_fsSaveFrame
.y
,
825 m_fsSaveFrame
.width
, m_fsSaveFrame
.height
);
829 // documented behaviour is to show the window if it's still hidden when
830 // showing it full screen
837 // ----------------------------------------------------------------------------
838 // overridden wxWindow methods
839 // ----------------------------------------------------------------------------
841 bool wxTopLevelWindowGTK::Show( bool show
)
843 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
845 if (show
== IsShown())
848 if (show
&& !m_sizeSet
)
850 /* by calling GtkOnSize here, we don't have to call
851 either after showing the frame, which would entail
852 much ugly flicker or from within the size_allocate
853 handler, because GTK 1.1.X forbids that. */
858 wxTopLevelWindowBase::Show(show
);
862 // make sure window has a non-default position, so when it is shown
863 // again, it won't be repositioned by WM as if it were a new window
864 // Note that this must be done _after_ the window is hidden.
865 gtk_window_move((GtkWindow
*)m_widget
, m_x
, m_y
);
871 void wxTopLevelWindowGTK::Raise()
873 gtk_window_present( GTK_WINDOW( m_widget
) );
876 void wxTopLevelWindowGTK::DoMoveWindow(int WXUNUSED(x
), int WXUNUSED(y
), int WXUNUSED(width
), int WXUNUSED(height
) )
878 wxFAIL_MSG( wxT("DoMoveWindow called for wxTopLevelWindowGTK") );
881 // ----------------------------------------------------------------------------
883 // ----------------------------------------------------------------------------
885 void wxTopLevelWindowGTK::GTKDoGetSize(int *width
, int *height
) const
887 wxSize
size(m_width
, m_height
);
890 size
-= GetDecorSize(m_gdkDecor
);
891 if (size
.x
< 0) size
.x
= 0;
892 if (size
.y
< 0) size
.y
= 0;
894 if (width
) *width
= size
.x
;
895 if (height
) *height
= size
.y
;
898 void wxTopLevelWindowGTK::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
900 wxCHECK_RET( m_widget
, wxT("invalid frame") );
902 // this shouldn't happen: wxFrame, wxMDIParentFrame and wxMDIChildFrame have m_wxwindow
903 wxASSERT_MSG( (m_wxwindow
!= NULL
), wxT("invalid frame") );
906 // deal with the position first
910 if ( !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
912 // -1 means "use existing" unless the flag above is specified
918 else // wxSIZE_ALLOW_MINUS_ONE
924 if ( m_x
!= old_x
|| m_y
!= old_y
)
926 gtk_window_move( GTK_WINDOW(m_widget
), m_x
, m_y
);
931 const wxSize
oldSize(m_width
, m_height
);
937 if (m_width
!= oldSize
.x
|| m_height
!= oldSize
.y
)
940 GTKDoGetSize(&w
, &h
);
941 gtk_window_resize(GTK_WINDOW(m_widget
), w
, h
);
947 void wxTopLevelWindowGTK::DoGetClientSize( int *width
, int *height
) const
951 // for consistency with wxMSW, client area is supposed to be empty for
952 // the iconized windows
961 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
964 GTKDoGetSize(&w
, &h
);
967 *width
= w
- 2 * m_miniEdge
;
973 *height
= h
- 2 * m_miniEdge
- m_miniTitle
;
979 void wxTopLevelWindowGTK::DoSetSizeHints( int minW
, int minH
,
983 wxTopLevelWindowBase::DoSetSizeHints( minW
, minH
, maxW
, maxH
, incW
, incH
);
985 const wxSize minSize
= GetMinSize();
986 const wxSize maxSize
= GetMaxSize();
989 const wxSize sizeDecor
= GetDecorSize(m_gdkDecor
);
990 if (minSize
.x
> 0 || minSize
.y
> 0)
992 hints_mask
|= GDK_HINT_MIN_SIZE
;
993 hints
.min_width
= minSize
.x
- sizeDecor
.x
;
994 if (hints
.min_width
< 0)
996 hints
.min_height
= minSize
.y
- sizeDecor
.y
;
997 if (hints
.min_height
< 0)
998 hints
.min_height
= 0;
1000 if (maxSize
.x
> 0 || maxSize
.y
> 0)
1002 hints_mask
|= GDK_HINT_MAX_SIZE
;
1003 hints
.max_width
= maxSize
.x
- sizeDecor
.x
;
1004 if (hints
.max_width
< 0)
1005 hints
.max_width
= INT_MAX
;
1006 hints
.max_height
= maxSize
.y
- sizeDecor
.y
;
1007 if (hints
.max_height
< 0)
1008 hints
.max_height
= INT_MAX
;
1010 if (incW
> 0 || incH
> 0)
1012 hints_mask
|= GDK_HINT_RESIZE_INC
;
1013 hints
.width_inc
= incW
> 0 ? incW
: 1;
1014 hints
.height_inc
= incH
> 0 ? incH
: 1;
1016 gtk_window_set_geometry_hints(
1017 (GtkWindow
*)m_widget
, NULL
, &hints
, (GdkWindowHints
)hints_mask
);
1020 void wxTopLevelWindowGTK::GtkOnSize()
1023 if (m_resizing
) return;
1026 if ( m_wxwindow
== NULL
) return;
1033 GTKDoGetSize(&w
, &h
);
1034 gtk_pizza_set_size( GTK_PIZZA(m_mainWidget
),
1041 // send size event to frame
1042 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
1043 event
.SetEventObject( this );
1044 GetEventHandler()->ProcessEvent( event
);
1049 bool wxTopLevelWindowGTK::IsDecorCacheable() const
1054 void wxTopLevelWindowGTK::OnInternalIdle()
1056 if (!m_sizeSet
&& GTK_WIDGET_REALIZED(m_wxwindow
))
1060 // we'll come back later
1064 // set the focus if not done yet and if we can already do it
1065 if ( GTK_WIDGET_REALIZED(m_wxwindow
) )
1067 if ( g_delayedFocus
&&
1068 wxGetTopLevelParent((wxWindow
*)g_delayedFocus
) == this )
1070 wxLogTrace(_T("focus"),
1071 _T("Setting focus from wxTLW::OnIdle() to %s(%s)"),
1072 g_delayedFocus
->GetClassInfo()->GetClassName(),
1073 g_delayedFocus
->GetLabel().c_str());
1075 g_delayedFocus
->SetFocus();
1076 g_delayedFocus
= NULL
;
1080 wxWindow::OnInternalIdle();
1082 // Synthetize activate events.
1083 if ( g_sendActivateEvent
!= -1 )
1085 bool activate
= g_sendActivateEvent
!= 0;
1087 // if (!activate) wxPrintf( wxT("de") );
1088 // wxPrintf( wxT("activate\n") );
1091 g_sendActivateEvent
= -1;
1093 wxTheApp
->SetActive(activate
, (wxWindow
*)g_lastActiveFrame
);
1097 // ----------------------------------------------------------------------------
1099 // ----------------------------------------------------------------------------
1101 void wxTopLevelWindowGTK::SetTitle( const wxString
&title
)
1103 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
1105 if ( title
== m_title
)
1110 gtk_window_set_title( GTK_WINDOW(m_widget
), wxGTK_CONV( title
) );
1113 void wxTopLevelWindowGTK::SetIcons( const wxIconBundle
&icons
)
1115 wxASSERT_MSG( (m_widget
!= NULL
), wxT("invalid frame") );
1117 wxTopLevelWindowBase::SetIcons( icons
);
1121 const size_t numIcons
= icons
.GetIconCount();
1122 for ( size_t i
= 0; i
< numIcons
; i
++ )
1124 list
= g_list_prepend(list
, icons
.GetIconByIndex(i
).GetPixbuf());
1127 gtk_window_set_icon_list(GTK_WINDOW(m_widget
), list
);
1131 // ----------------------------------------------------------------------------
1132 // frame state: maximized/iconized/normal
1133 // ----------------------------------------------------------------------------
1135 void wxTopLevelWindowGTK::Maximize(bool maximize
)
1138 gtk_window_maximize( GTK_WINDOW( m_widget
) );
1140 gtk_window_unmaximize( GTK_WINDOW( m_widget
) );
1143 bool wxTopLevelWindowGTK::IsMaximized() const
1145 if(!m_widget
->window
)
1148 return gdk_window_get_state(m_widget
->window
) & GDK_WINDOW_STATE_MAXIMIZED
;
1151 void wxTopLevelWindowGTK::Restore()
1153 // "Present" seems similar enough to "restore"
1154 gtk_window_present( GTK_WINDOW( m_widget
) );
1157 void wxTopLevelWindowGTK::Iconize( bool iconize
)
1160 gtk_window_iconify( GTK_WINDOW( m_widget
) );
1162 gtk_window_deiconify( GTK_WINDOW( m_widget
) );
1165 bool wxTopLevelWindowGTK::IsIconized() const
1167 return m_isIconized
;
1170 void wxTopLevelWindowGTK::SetIconizeState(bool iconize
)
1172 if ( iconize
!= m_isIconized
)
1174 m_isIconized
= iconize
;
1175 (void)SendIconizeEvent(iconize
);
1179 void wxTopLevelWindowGTK::AddGrab()
1184 gtk_grab_add( m_widget
);
1185 wxGUIEventLoop().Run();
1186 gtk_grab_remove( m_widget
);
1190 void wxTopLevelWindowGTK::RemoveGrab()
1201 static bool do_shape_combine_region(GdkWindow
* window
, const wxRegion
& region
)
1205 if (region
.IsEmpty())
1207 gdk_window_shape_combine_mask(window
, NULL
, 0, 0);
1211 gdk_window_shape_combine_region(window
, region
.GetRegion(), 0, 0);
1219 bool wxTopLevelWindowGTK::SetShape(const wxRegion
& region
)
1221 wxCHECK_MSG( HasFlag(wxFRAME_SHAPED
), false,
1222 _T("Shaped windows must be created with the wxFRAME_SHAPED style."));
1224 GdkWindow
*window
= NULL
;
1227 window
= GTK_PIZZA(m_wxwindow
)->bin_window
;
1228 do_shape_combine_region(window
, region
);
1230 window
= m_widget
->window
;
1231 return do_shape_combine_region(window
, region
);
1234 bool wxTopLevelWindowGTK::IsActive()
1236 return (this == (wxTopLevelWindowGTK
*)g_activeFrame
);
1239 void wxTopLevelWindowGTK::RequestUserAttention(int flags
)
1241 bool new_hint_value
= false;
1243 // FIXME: This is a workaround to focus handling problem
1244 // If RequestUserAttention is called for example right after a wxSleep, OnInternalIdle hasn't
1245 // yet been processed, and the internal focus system is not up to date yet.
1246 // wxYieldIfNeeded ensures the processing of it, but can have unwanted side effects - MR
1247 ::wxYieldIfNeeded();
1249 if(m_urgency_hint
>= 0)
1250 g_source_remove(m_urgency_hint
);
1252 m_urgency_hint
= -2;
1254 if( GTK_WIDGET_REALIZED(m_widget
) && !IsActive() )
1256 new_hint_value
= true;
1258 if (flags
& wxUSER_ATTENTION_INFO
)
1260 m_urgency_hint
= g_timeout_add(5000, (GSourceFunc
)gtk_frame_urgency_timer_callback
, this);
1262 m_urgency_hint
= -1;
1266 #if GTK_CHECK_VERSION(2,7,0)
1267 if(!gtk_check_version(2,7,0))
1268 gtk_window_set_urgency_hint(GTK_WINDOW( m_widget
), new_hint_value
);
1271 wxgtk_window_set_urgency_hint(GTK_WINDOW( m_widget
), new_hint_value
);
1274 void wxTopLevelWindowGTK::SetWindowStyleFlag( long style
)
1276 #if defined(__WXGTK24__) || GTK_CHECK_VERSION(2,2,0)
1277 // Store which styles were changed
1278 long styleChanges
= style
^ m_windowStyle
;
1281 // Process wxWindow styles. This also updates the internal variable
1282 // Therefore m_windowStyle bits carry now the _new_ style values
1283 wxWindow::SetWindowStyleFlag(style
);
1285 // just return for now if widget does not exist yet
1290 if ( (styleChanges
& wxSTAY_ON_TOP
) && !gtk_check_version(2,4,0) )
1291 gtk_window_set_keep_above(GTK_WINDOW(m_widget
), m_windowStyle
& wxSTAY_ON_TOP
);
1293 #if GTK_CHECK_VERSION(2,2,0)
1294 if ( (styleChanges
& wxFRAME_NO_TASKBAR
) && !gtk_check_version(2,2,0) )
1296 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(m_widget
), m_windowStyle
& wxFRAME_NO_TASKBAR
);
1301 /* Get the X Window between child and the root window.
1302 This should usually be the WM managed XID */
1303 static Window
wxGetTopmostWindowX11(Display
*dpy
, Window child
)
1305 Window root
, parent
;
1307 unsigned int nchildren
;
1309 XQueryTree(dpy
, child
, &root
, &parent
, &children
, &nchildren
);
1312 while (parent
!= root
) {
1314 XQueryTree(dpy
, child
, &root
, &parent
, &children
, &nchildren
);
1321 bool wxTopLevelWindowGTK::SetTransparent(wxByte alpha
)
1323 if (!m_widget
|| !m_widget
->window
)
1326 Display
* dpy
= GDK_WINDOW_XDISPLAY (m_widget
->window
);
1327 // We need to get the X Window that has the root window as the immediate parent
1328 // and m_widget->window as a child. This should be the X Window that the WM manages and
1329 // from which the opacity property is checked from.
1330 Window win
= wxGetTopmostWindowX11(dpy
, GDK_WINDOW_XID (m_widget
->window
));
1333 // Using pure Xlib to not have a GTK version check mess due to gtk2.0 not having GdkDisplay
1335 XDeleteProperty(dpy
, win
, XInternAtom(dpy
, "_NET_WM_WINDOW_OPACITY", False
));
1338 long opacity
= alpha
* 0x1010101L
;
1339 XChangeProperty(dpy
, win
, XInternAtom(dpy
, "_NET_WM_WINDOW_OPACITY", False
),
1340 XA_CARDINAL
, 32, PropModeReplace
,
1341 (unsigned char *) &opacity
, 1L);
1347 bool wxTopLevelWindowGTK::CanSetTransparent()
1349 // allow to override automatic detection as it's far from perfect
1350 static const wxChar
*SYSOPT_TRANSPARENT
= wxT("gtk.tlw.can-set-transparent");
1351 if ( wxSystemOptions::HasOption(SYSOPT_TRANSPARENT
) )
1353 return wxSystemOptions::GetOptionInt(SYSOPT_TRANSPARENT
) != 0;
1356 #if GTK_CHECK_VERSION(2,10,0)
1357 if (!gtk_check_version(2,10,0))
1359 return (gtk_widget_is_composited (m_widget
));
1362 #endif // In case of lower versions than gtk+-2.10.0 we could look for _NET_WM_CM_Sn ourselves
1367 #if 0 // Don't be optimistic here for the sake of wxAUI
1368 int opcode
, event
, error
;
1369 // Check for the existence of a RGBA visual instead?
1370 return XQueryExtension(gdk_x11_get_default_xdisplay (),
1371 "Composite", &opcode
, &event
, &error
);