SDK
SDK

Reputation: 79

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.

Upvotes: 4

Views: 2915

Answers (3)

FogleBird
FogleBird

Reputation: 76792

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.

Upvotes: 4

Mike Driscoll
Mike Driscoll

Reputation: 33071

I second the ToasterBox suggestion. You can also create your own Dialog though and position it by grabbing the screen resolution and the size of the dialog and setting its position. I've done the latter for a custom popup. On Macs, you can access Growl through a Python API that's mentioned on their website.

Upvotes: 0

user225312
user225312

Reputation: 131687

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

Upvotes: 4

Related Questions