web-dev-qa-db-ja.com

早くて簡単:Python付きのトレイアイコン?

pythonでアイコンをシステムトレイに簡単に配置する方法の簡単な例が必要です。つまり、プログラムを実行すると、ウィンドウが表示されず、トレイアイコンだけが表示されます( veはpngファイルを取得しました)をシステムトレイに表示し、それを右クリックするとメニューにいくつかのオプションが表示されます(オプションをクリックすると関数が実行されます)。それは可能ですか?必要ありません。ウィンドウで...

例/コードスニペットは本当に感謝しています! :D

35

WindowsおよびGnomeの場合

やった! wxPythonは爆弾です。 Feed Notifier アプリケーションのソースから適応。

import wx

TRAY_TOOLTIP = 'System Tray Demo'
TRAY_ICON = 'icon.png'


def create_menu_item(menu, label, func):
    item = wx.MenuItem(menu, -1, label)
    menu.Bind(wx.EVT_MENU, func, id=item.GetId())
    menu.AppendItem(item)
    return item


class TaskBarIcon(wx.TaskBarIcon):
    def __init__(self):
        super(TaskBarIcon, self).__init__()
        self.set_icon(TRAY_ICON)
        self.Bind(wx.EVT_TASKBAR_LEFT_DOWN, self.on_left_down)

    def CreatePopupMenu(self):
        menu = wx.Menu()
        create_menu_item(menu, 'Say Hello', self.on_hello)
        menu.AppendSeparator()
        create_menu_item(menu, 'Exit', self.on_exit)
        return menu

    def set_icon(self, path):
        icon = wx.IconFromBitmap(wx.Bitmap(path))
        self.SetIcon(icon, TRAY_TOOLTIP)

    def on_left_down(self, event):
        print 'Tray icon was left-clicked.'

    def on_hello(self, event):
        print 'Hello, world!'

    def on_exit(self, event):
        wx.CallAfter(self.Destroy)


def main():
    app = wx.PySimpleApp()
    TaskBarIcon()
    app.MainLoop()


if __name__ == '__main__':
    main()
59
FogleBird

wx.PySimpleAppは非推奨です。代わりにwx.Appを使用する方法を次に示します

これを理解するのに時間がかかったので、共有したいと思いました。 wx.PySimpleAppはwxPython 2.9以降では非推奨です。代わりにwx.Appを使用したFogleBirdの元のスクリプトを次に示します。

import wx

TRAY_TOOLTIP = 'System Tray Demo'
TRAY_ICON = 'icon.png'

def create_menu_item(menu, label, func):
    item = wx.MenuItem(menu, -1, label)
    menu.Bind(wx.EVT_MENU, func, id=item.GetId())
    menu.AppendItem(item)
    return item

class TaskBarIcon(wx.TaskBarIcon):
    def __init__(self, frame):
        self.frame = frame
        super(TaskBarIcon, self).__init__()
        self.set_icon(TRAY_ICON)
        self.Bind(wx.EVT_TASKBAR_LEFT_DOWN, self.on_left_down)

    def CreatePopupMenu(self):
        menu = wx.Menu()
        create_menu_item(menu, 'Say Hello', self.on_hello)
        menu.AppendSeparator()
        create_menu_item(menu, 'Exit', self.on_exit)
        return menu

    def set_icon(self, path):
        icon = wx.IconFromBitmap(wx.Bitmap(path))
        self.SetIcon(icon, TRAY_TOOLTIP)

    def on_left_down(self, event):
        print 'Tray icon was left-clicked.'

    def on_hello(self, event):
        print 'Hello, world!'

    def on_exit(self, event):
        wx.CallAfter(self.Destroy)
        self.frame.Close()

class App(wx.App):
    def OnInit(self):
        frame=wx.Frame(None)
        self.SetTopWindow(frame)
        TaskBarIcon(frame)
        return True

def main():
    app = App(False)
    app.MainLoop()


if __name__ == '__main__':
    main()
14
dlk

2018バージョン

import wx.adv
import wx
TRAY_TOOLTIP = 'Name' 
TRAY_ICON = 'icon.png' 


def create_menu_item(menu, label, func):
    item = wx.MenuItem(menu, -1, label)
    menu.Bind(wx.EVT_MENU, func, id=item.GetId())
    menu.Append(item)
    return item


class TaskBarIcon(wx.adv.TaskBarIcon):
    def __init__(self, frame):
        self.frame = frame
        super(TaskBarIcon, self).__init__()
        self.set_icon(TRAY_ICON)
        self.Bind(wx.adv.EVT_TASKBAR_LEFT_DOWN, self.on_left_down)

    def CreatePopupMenu(self):
        menu = wx.Menu()
        create_menu_item(menu, 'Site', self.on_hello)
        menu.AppendSeparator()
        create_menu_item(menu, 'Exit', self.on_exit)
        return menu

    def set_icon(self, path):
        icon = wx.Icon(path)
        self.SetIcon(icon, TRAY_TOOLTIP)

    def on_left_down(self, event):      
        print ('Tray icon was left-clicked.')

    def on_hello(self, event):
        print ('Hello, world!')

    def on_exit(self, event):
        wx.CallAfter(self.Destroy)
        self.frame.Close()

class App(wx.App):
    def OnInit(self):
        frame=wx.Frame(None)
        self.SetTopWindow(frame)
        TaskBarIcon(frame)
        return True

def main():
    app = App(False)
    app.MainLoop()


if __name__ == '__main__':
    main()

ウィンドウを保証でき、wxの重い依存関係を導入したくない場合は、 pywin32 extensions を使用してこれを行うことができます。

こちらもご覧ください 質問

5
Mark

Ubuntuの場合

class TrayIcon:
    def init():


iconPath = {"Windows":os.path.expandvars("%PROGRAMFILES%/MyProgram/icon.png"),
                  "Linux":"/usr/share/icons/myprogramicon.png"}        
    if platform.system()=="Linux":
        import gtk
        import appindicator # Ubuntu apt-get install python-appindicator 

    # Create an application indicator
    try:
        gtk.gdk.threads_init()
        gtk.threads_enter()
        icon = iconPath[platform.system()]
        indicator = appindicator.Indicator("example-simple-client", "indicator-messages", appindicator.CATEGORY_APPLICATION_STATUS)
        indicator.set_icon(icon)
        indicator.set_status (appindicator.STATUS_ACTIVE)
        indicator.set_attention_icon ("indicator-messages-new")
        menu = gtk.Menu()

        menuTitle = "Quit"   
        menu_items = gtk.MenuItem(menuTitle)
        menu.append(menu_items)
        menu_items.connect("activate", TrayIcon.QuitApp, menuTitle)
        menu_items.show()

        menuTitle = "About My Program"
        menu_items = gtk.MenuItem(menuTitle)
        menu.append(menu_items)
        menu_items.connect("activate", TrayIcon.AboutApp, menuTitle)
        menu_items.show()   

        indicator.set_menu(menu)    
    except:
        pass

    # Run the app indicator on the main thread.
    try:

        t = threading.Thread(target=gtk.main)
        t.daemon = True # this means it'll die when the program dies.
        t.start()
        #gtk.main()

    except:
        pass
    finally:
        gtk.threads_leave()     

@staticmethod
def AboutApp(a1,a2):
    gtk.threads_enter()
    dialog = gtk.Dialog("About",
                        None,
                        gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,
                        (gtk.STOCK_OK, gtk.RESPONSE_ACCEPT))
    label = gtk.Label("My Program v0.0.1, (C)opyright ME 2015. All rights reserved.")
    dialog.vbox.pack_start(label)
    label.show()
    label2 = gtk.Label("example.com\n\nFor more support contact [email protected]")
    label2.show()
    dialog.action_area.pack_end(label2)
    response = dialog.run()
    dialog.destroy()
    gtk.threads_leave()

@staticmethod
def QuitApp(a1, a2):
    sys.exit(0)

クロスプラットフォーム

参照 PyQt:システムトレイアプリケーションでメニューを表示

5
Jonathan

はい。 macOS High Sierra(10.13.3)、Windows 7、およびgnome 3でpython 2.7(minconda install))を使用してテストしたwiki.wxpython.orgにクロスプラットフォームの例があります/ centos7。ここにあります(ページタイトルは無視してください): https://wiki.wxpython.org/Custom%20Mac%20OsX%20Dock%20Bar%20Icon

python 3.6には小さな改造が必要です:

  • wx.advをインポートする必要があります
  • wx.TaskBarIconはwx.adv.TaskBarIconになります
  • wx.IconFromBitmapはwx.Iconになります

Gnome 3ではTopIcons Plusのインストールが必要でした。

ウィンドウを表示したくないので(「ウィンドウは表示されず、トレイアイコンだけが表示されます」)、次の行をコメント化します(ただし、wx.Frameを親のままにしておきます)。

frame.Show(True)

そして、独自の.pngアイコンを使用したいので、WXPdemo画像とembeddedimageものを削除して置き換えます

icon = self.MakeIcon(WXPdemo.GetImage())

たとえば

icon = wx.Icon('icon.png')

私の経験では、これはさらに適応または拡張するための良い出発点となります。

2

pythonベースのプログラムをバックグラウンドで実行しようとしている場合の代替策として、サービスとして実行できます。このアクティブな状態のレシピをチェックして、かなり便利です。オプションの1つは、 py2exeまたはpyinstallを使用して、アプリケーションをexeに変換します。

http://code.activestate.com/recipes/551780/

2
jkdba

例については、このスレッドを参照してください-> wx question。

wxPython "classic" -> [new API] wxPython 'Phoenix' (Py3)

1
viteck