wxTaskBarIcon works on wxGTK now too.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24968 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-12-22 21:25:58 +00:00
parent a253aa2044
commit 4a9067b921

View File

@@ -439,8 +439,10 @@ class wxPythonDemo(wx.Frame):
icon = images.getMondrianIcon()
self.SetIcon(icon)
if wx.Platform == '__WXMSW__':
if wx.Platform != '__WXMAC__':
# setup a taskbar icon, and catch some events from it
icon = wx.IconFromBitmap(
images.getMondrianImage().Scale(16,16).ConvertToBitmap() )
self.tbicon = wx.TaskBarIcon()
self.tbicon.SetIcon(icon, "wxPython Demo")
self.tbicon.Bind(wx.EVT_TASKBAR_LEFT_DCLICK, self.OnTaskBarActivate)