Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

wxPython PopUp notifications

We are building an app where in there will be a need to display the updates/notification (ex : like status updates/wall posts on FB). These needs to be displyed at the lower right corner of the window(like any other notifications). So was trying on some alternatives to best display the updates. Some option explored are PopupWindow (which was not that great for status update) and dialog (seems ok). Are there any other good options for this and is there any pre-defined end corners position constants? Plz suggest.

like image 866
SDK Avatar asked Feb 25 '23 08:02

SDK


2 Answers

FWIW, you can check out ToasterBox - MSN style popups, which should be perfect for your case. (And yes, it is cross platform)

like image 117
user225312 Avatar answered Mar 06 '23 00:03

user225312


Check out the source code for my RSS notifier application. Example screenshot shown below. Yes, this is implemented with wxPython.

http://www.feednotifier.com/

enter image description here

The modules to look at are popups.py and theme_default.py. It's not really written to be a drop-in module, but you can get ideas from it.

like image 27
FogleBird Avatar answered Mar 05 '23 23:03

FogleBird