How would a system tray application be accomplished on other platforms?

后端 未结 5 1096
不知归路
不知归路 2021-02-03 10:39

Windows has the \"system tray\" that houses the clock and alway-running services like MSN, Steam, etc.

I\'d like to develop a wxPython tray application but I\'m wonderin

相关标签:
5条回答
  • 2021-02-03 11:13

    Use Qt: Qt Systray Example

    That'll show a systray icon on all platforms that Qt runs on and that support such icons. You'll need to come up with a strategy when systray functionality isn't supported, though.

    0 讨论(0)
  • 2021-02-03 11:19

    Under OS X you have the Status Menu bar - the right-most items are often status-related things (like battery status, WiFi connections, etc).

    Try searching for NSStatusBar and NSMenuExtra. It's almost trivial to turn an application into one that has an NSStatusBar menu and doesn't appear in the Dock. There are tutorials around on how to do it.

    0 讨论(0)
  • 2021-02-03 11:22

    On Linux it really depends - you got diffrent programming environments there, and some window managers don't even have a tray area. Altho, if you use Gtk (and wx is Gtk really), the gtk.StatusIcon is your friend.

    Here are some examples of that (haven't checked if they actually work, but should show you the path).

    For wx I found some example code here.

    0 讨论(0)
  • 2021-02-03 11:29

    wx is a cross-platform GUI and tools library that supports Win32, Mac OS X, GTK+, X11, Motif, WinCE, and more. And if you use it's classes then your application should work on all these platforms. For system tray look at wxTaskBarIcon (http://docs.wxwidgets.org/stable/wx_wxtaskbaricon.html#wxtaskbaricon).

    0 讨论(0)
  • 2021-02-03 11:32

    For many Linux desktop systems (Gnome, KDE, etc.) a Freedesktop's SysTray Protocol is implemented. You can try that if any other solution fails.

    0 讨论(0)
提交回复
热议问题