Python wx.TaskBarIcon() Examples
The following are 11
code examples of wx.TaskBarIcon().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
wx
, or try the search function
.
Example #1
Source File: systray.py From p2ptv-pi with MIT License | 6 votes |
def __init__(self, wxapp, bgapp, iconfilename): wx.TaskBarIcon.__init__(self) self.bgapp = bgapp self.wxapp = wxapp self.icons = wx.IconBundle() self.icon = wx.Icon(iconfilename, wx.BITMAP_TYPE_ICO) self.icons.AddIcon(self.icon) self.Bind(wx.EVT_TASKBAR_LEFT_UP, self.OnLeftClicked) if sys.platform != 'darwin': self.SetIcon(self.icon, self.bgapp.appname) else: menuBar = wx.MenuBar() filemenu = wx.Menu() item = filemenu.Append(-1, 'E&xit', 'Terminate the program') self.Bind(wx.EVT_MENU, self.OnExit, item) wx.App.SetMacExitMenuItemId(item.GetId())
Example #2
Source File: chronolapse.py From chronolapse with MIT License | 6 votes |
def __init__(self, parent, MainFrame, workingdir): wx.TaskBarIcon.__init__(self) self.parentApp = parent self.MainFrame = MainFrame self.wx_id = wx.NewId() if ON_WINDOWS: icon_file = os.path.join( os.path.abspath(workingdir), 'chronolapse.ico' ) else: icon_file = os.path.join( os.path.abspath(workingdir), 'chronolapse_24.ico' ) self.SetIcon(wx.Icon(icon_file, wx.BITMAP_TYPE_ICO), 'Chronolapse') self.CreateMenu()
Example #3
Source File: Beremiz_service.py From OpenPLC_Editor with GNU General Public License v3.0 | 6 votes |
def __init__(self, pyroserver): wx.TaskBarIcon.__init__(self) self.pyroserver = pyroserver # Set the image self.UpdateIcon(None) # bind some events self.Bind(wx.EVT_MENU, self.OnTaskBarStartPLC, id=self.TBMENU_START) self.Bind(wx.EVT_MENU, self.OnTaskBarStopPLC, id=self.TBMENU_STOP) self.Bind(wx.EVT_MENU, self.OnTaskBarChangeName, id=self.TBMENU_CHANGE_NAME) self.Bind(wx.EVT_MENU, self.OnTaskBarChangeInterface, id=self.TBMENU_CHANGE_INTERFACE) self.Bind(wx.EVT_MENU, self.OnTaskBarLiveShell, id=self.TBMENU_LIVE_SHELL) self.Bind(wx.EVT_MENU, self.OnTaskBarWXInspector, id=self.TBMENU_WXINSPECTOR) self.Bind(wx.EVT_MENU, self.OnTaskBarChangePort, id=self.TBMENU_CHANGE_PORT) self.Bind(wx.EVT_MENU, self.OnTaskBarChangeWorkingDir, id=self.TBMENU_CHANGE_WD) self.Bind(wx.EVT_MENU, self.OnTaskBarQuit, id=self.TBMENU_QUIT)
Example #4
Source File: guiminer.py From poclbm with GNU General Public License v3.0 | 5 votes |
def __init__(self, frame): wx.TaskBarIcon.__init__(self) self.frame = frame self.icon = get_taskbar_icon() self.timer = wx.Timer(self) self.timer.Start(REFRESH_RATE_MILLIS) self.is_paused = False self.SetIcon(self.icon, "GUIMiner") self.imgidx = 1 self.Bind(wx.EVT_TASKBAR_LEFT_DCLICK, self.on_taskbar_activate) self.Bind(wx.EVT_MENU, self.on_taskbar_activate, id=self.TBMENU_RESTORE) self.Bind(wx.EVT_MENU, self.on_taskbar_close, id=self.TBMENU_CLOSE) self.Bind(wx.EVT_MENU, self.on_pause, id=self.TBMENU_PAUSE) self.Bind(wx.EVT_TIMER, self.on_timer)
Example #5
Source File: guiminer.py From poclbm with GNU General Public License v3.0 | 5 votes |
def CreatePopupMenu(self): """Override from wx.TaskBarIcon. Creates the right-click menu.""" menu = wx.Menu() menu.AppendCheckItem(self.TBMENU_PAUSE, _("Pause all")) menu.Check(self.TBMENU_PAUSE, self.is_paused) menu.Append(self.TBMENU_RESTORE, _("Restore")) menu.Append(self.TBMENU_CLOSE, _("Close")) return menu
Example #6
Source File: createlivestream_wx.py From p2ptv-pi with MIT License | 5 votes |
def __init__(self, wxapp, bgapp, iconfilename): wx.TaskBarIcon.__init__(self) self.bgapp = bgapp self.wxapp = wxapp self.icons = wx.IconBundle() self.icon = wx.Icon(iconfilename, wx.BITMAP_TYPE_ICO) self.icons.AddIcon(self.icon) if sys.platform != 'darwin': self.SetIcon(self.icon, self.bgapp.appname) else: menuBar = wx.MenuBar() filemenu = wx.Menu() item = filemenu.Append(-1, 'E&xit', 'Terminate the program') self.Bind(wx.EVT_MENU, self.OnExit, item) wx.App.SetMacExitMenuItemId(item.GetId())
Example #7
Source File: chronolapse.py From chronolapse with MIT License | 5 votes |
def __init__(self, parent, MainFrame, id, title, workingdir): wx.Frame.__init__(self, parent, -1, title, size = (1, 1), style=wx.FRAME_NO_TASKBAR|wx.NO_FULL_REPAINT_ON_RESIZE) self.tbicon = TaskBarIcon(self, MainFrame, workingdir) self.Show(True) self.MainFrame = MainFrame
Example #8
Source File: DownloadManager.py From BitTorrent with GNU General Public License v3.0 | 5 votes |
def __init__(self, frame): wx.TaskBarIcon.__init__(self) self.frame = frame self._update_task = TaskSingleton() self.tooltip = None self.set_tooltip(app_name) self.Bind(wx.EVT_TASKBAR_LEFT_DCLICK, self.OnTaskBarActivate) self.Bind(wx.EVT_MENU, self.Toggle, id=self.TBMENU_TOGGLE) self.Bind(wx.EVT_MENU, wx.the_app.quit, id=self.TBMENU_CLOSE)
Example #9
Source File: Dock_Bar_Example.py From topoflow with MIT License | 5 votes |
def __init__(self, frame): wx.TaskBarIcon.__init__(self) self.frame = frame # Set the image icon = self.MakeIcon(WXPdemo.GetImage()) self.SetIcon(icon, "wxPython Demo") self.imgidx = 1 # bind some events self.Bind(wx.EVT_TASKBAR_LEFT_DCLICK, self.OnTaskBarActivate) self.Bind(wx.EVT_MENU, self.OnTaskBarActivate, id=self.TBMENU_RESTORE) self.Bind(wx.EVT_MENU, self.OnTaskBarClose, id=self.TBMENU_CLOSE)
Example #10
Source File: TaskBarIcon.py From EventGhost with GNU General Public License v2.0 | 5 votes |
def __init__(self, show): self.stateIcons = ( wx.Icon(join(eg.imagesDir, "Tray1.png"), wx.BITMAP_TYPE_PNG), wx.Icon(join(eg.imagesDir, "Tray3.png"), wx.BITMAP_TYPE_PNG), wx.Icon(join(eg.imagesDir, "Tray2.png"), wx.BITMAP_TYPE_PNG), ) self.tooltip = eg.APP_NAME + " " + eg.Version.string wx.TaskBarIcon.__init__(self) # SetIcon *must* be called immediately after creation, as otherwise # it won't appear on Vista restricted user accounts. (who knows why?) if show: self.Show() self.currentEvent = None self.processingEvent = None self.currentState = 0 self.reentrantLock = threading.Lock() eg.Bind("ProcessingChange", self.OnProcessingChange) menu = self.menu = wx.Menu() text = eg.text.MainFrame.TaskBarMenu menu.Append(ID_SHOW, text.Show) menu.Append(ID_HIDE, text.Hide) menu.AppendSeparator() menu.Append(ID_EXIT, text.Exit) self.Bind(wx.EVT_MENU, self.OnCmdShow, id=ID_SHOW) self.Bind(wx.EVT_MENU, self.OnCmdHide, id=ID_HIDE) self.Bind(wx.EVT_MENU, self.OnCmdExit, id=ID_EXIT) self.Bind(wx.EVT_TASKBAR_RIGHT_UP, self.OnTaskBarMenu) self.Bind(wx.EVT_TASKBAR_LEFT_DCLICK, self.OnCmdShow)
Example #11
Source File: __init__.py From EventGhost with GNU General Public License v2.0 | 5 votes |
def __call__(self, hwnd = None): # Gather info about the target window hwnd = GetBestHwnd(hwnd) icon = GetHwndIcon(hwnd) title = unicode(GetWindowText(hwnd)) # If valid, minimize target to the systray if hwnd in eg.WinApi.GetTopLevelWindowList(False) and isinstance(icon, wx._gdi.Icon): trayIcon = wx.TaskBarIcon() trayIcon.SetIcon(icon, title) self.plugin.iconDict[hwnd] = trayIcon def OnClick2(): # Remove our tray icon and restore the window try: BringHwndToFront(hwnd) del self.plugin.iconDict[hwnd] except: pass finally: trayIcon.RemoveIcon() trayIcon.Destroy() def OnClick(*dummyArgs): wx.CallAfter(OnClick2) trayIcon.Bind(wx.EVT_TASKBAR_LEFT_UP, OnClick) wx.CallAfter(ShowWindow, hwnd, 0)