WxPython popup notifications

We are creating an application in which it will be necessary to display updates / notifications (for example: for example, status updates / wall messages on FB). They should be allowed in the lower right corner of the window (like any other notifications). So I tried to use some alternatives to better display updates. Some of them are PopupWindow (which is not very good for updating status) and dialogue (it seems good). Are there any other good options for this and are there any predefined constant constants of finite angles? Plz offers.

+4
source share
3 answers

FWIW, you can check out ToasterBox - MSN-style pop-ups that should be perfect for your business. (And yes, this is a cross platform)

+4
source

Check out the source code of my RSS notification application. Example screenshot shown below. Yes, this is implemented using wxPython.

http://www.feednotifier.com/

enter image description here

The modules to view are popups.py and theme_default.py . It is not really written as an insertion module, but you can get ideas from it.

+2
source

Second ToasterBox Offer. You can also create your own dialog and place it by capturing the screen resolution, the size of the dialog box and setting its position. I made the latter for a custom popup. On a Mac, you can access Growl through the Python API mentioned on their website.

0
source

Source: https://habr.com/ru/post/1336423/


All Articles