1 /////////////////////////////////////////////////////////////////////////
3 // Purpose: wxTaskBarIcon (src/unix/taskbarx11.cpp) helper for GTK2
4 // Author: Vaclav Slavik
8 // Copyright: (c) Vaclav Slavik, 2004
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "taskbarpriv.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
19 #include "wx/gtk/taskbarpriv.h"
27 #include <gtk/gtkversion.h>
28 #if GTK_CHECK_VERSION(2, 1, 0)
32 #include "eggtrayicon.h"
34 wxTaskBarIconAreaBase::wxTaskBarIconAreaBase()
36 if (IsProtocolSupported())
38 m_widget
= GTK_WIDGET(egg_tray_icon_new("systray icon"));
39 gtk_window_set_resizable(GTK_WINDOW(m_widget
), false);
41 wxLogTrace(_T("systray"), _T("using freedesktop.org systray spec"));
44 wxTopLevelWindow::Create(
45 NULL
, wxID_ANY
, _T("systray icon"),
46 wxDefaultPosition
, wxDefaultSize
,
47 wxDEFAULT_FRAME_STYLE
| wxFRAME_NO_TASKBAR
| wxSIMPLE_BORDER
|
49 wxEmptyString
/*eggtray doesn't like setting wmclass*/);
51 m_invokingWindow
= NULL
;
54 bool wxTaskBarIconAreaBase::IsProtocolSupported()
56 static int s_supported
= -1;
57 if (s_supported
== -1)
59 Display
*display
= GDK_DISPLAY();
60 Screen
*screen
= DefaultScreenOfDisplay(display
);
63 name
.Printf(_T("_NET_SYSTEM_TRAY_S%d"), XScreenNumberOfScreen(screen
));
64 Atom atom
= XInternAtom(display
, name
.ToAscii(), False
);
66 Window manager
= XGetSelectionOwner(display
, atom
);
68 s_supported
= (manager
!= None
);
71 return (bool)s_supported
;
74 //-----------------------------------------------------------------------------
76 //-----------------------------------------------------------------------------
78 extern "C" WXDLLIMPEXP_CORE
void gtk_pop_hide_callback( GtkWidget
*widget
, bool* is_waiting
);
80 extern WXDLLIMPEXP_CORE
void SetInvokingWindow( wxMenu
*menu
, wxWindow
* win
);
82 extern "C" WXDLLIMPEXP_CORE
83 void wxPopupMenuPositionCallback( GtkMenu
*menu
,
85 gboolean
* WXUNUSED(whatever
),
88 #if wxUSE_MENUS_NATIVE
89 bool wxTaskBarIconAreaBase::DoPopupMenu( wxMenu
*menu
, int x
, int y
)
91 wxCHECK_MSG( m_widget
!= NULL
, false, wxT("invalid window") );
93 wxCHECK_MSG( menu
!= NULL
, false, wxT("invalid popup-menu") );
95 // NOTE: if you change this code, you need to update
96 // the same code in window.cpp as well. This
97 // is ugly code duplication, I know,
99 SetInvokingWindow( menu
, this );
101 menu
->UpdateUI( m_invokingWindow
);
103 bool is_waiting
= true;
105 gulong handler
= gtk_signal_connect( GTK_OBJECT(menu
->m_menu
),
107 GTK_SIGNAL_FUNC(gtk_pop_hide_callback
),
108 (gpointer
)&is_waiting
);
112 GtkMenuPositionFunc posfunc
;
113 if ( x
== -1 && y
== -1 )
115 // use GTK's default positioning algorithm
121 pos
= ClientToScreen(wxPoint(x
, y
));
123 posfunc
= wxPopupMenuPositionCallback
;
127 GTK_MENU(menu
->m_menu
),
128 (GtkWidget
*) NULL
, // parent menu shell
129 (GtkWidget
*) NULL
, // parent menu item
130 posfunc
, // function to position it
131 userdata
, // client data
132 0, // button used to activate it
133 gtk_get_current_event_time()
138 gtk_main_iteration();
141 gtk_signal_disconnect(GTK_OBJECT(menu
->m_menu
), handler
);
145 #endif // wxUSE_MENUS_NATIVE
147 #endif // __WXGTK20__
148 #endif // GTK_CHECK_VERSION(2, 1, 0)