outspline icon indicating copy to clipboard operation
outspline copied to clipboard

Alarm notifications

Open kynikos opened this issue 13 years ago • 3 comments

wxPython 2.8 doesn't provide a multi-platform library for native notifications; it has however wx.lib.agw.toasterbox http://www.wxpython.org/docs/api/wx.lib.agw.toasterbox-module.html

wxPython 3.0 will have wx.NotificationMessage http://docs.wxwidgets.org/trunk/classwx_notification_message.html

Otherwise wx.TaskBarIcon has a hidden ShowBalloon method available only for MSW, see http://wiki.wxwidgets.org/WxTaskBarIcon

For a Linux-only solution use libnotify, see also https://wiki.archlinux.org/index.php/Libnotify

kynikos avatar Jan 18 '13 04:01 kynikos

Implemented for Linux through libnotify (notify plugin)

kynikos avatar Oct 19 '13 10:10 kynikos

NotificationMessage is available now

http://wxpython.org/Phoenix/docs/html/adv.NotificationMessage.html

kynikos avatar Feb 11 '14 16:02 kynikos

Using NotificationMessage should allow removing the python2-gobject optional dependency, as it should use libnotify directly.

kynikos avatar Jun 28 '14 06:06 kynikos