vote up 4 vote down star
4

I'm developing a small tray-icon application for Windows and I need to display non-intrusive visual notifications similar to those that appear when you receive a new message in MSN Messenger or any other IM application.

I have looked at Snarl, but it seems to be a separate application that I need to install. I want something that could be bundled with my application in one installer, a library.

Which one do you recommend?

Python support is a huge plus.

flag

5 Answers

vote up 1 vote down check

You can do it by depending on a GUI library.

For example, with PyQt,it is possible :

link|flag
vote up 2 vote down

Are you developing the application in Python? It depends what GUI toolkit you're using.

If you're using wxPython, you could try ToasterBox, or the wxPopupWindow.

link|flag
I haven't started the applications yet, wxPython seems to be a nice option but I prefer pyGTK – Manuel Ceron Dec 5 '08 at 18:01
vote up 1 vote down

You don't need anyhting. Just use toasters windows with Win32 api

link|flag
vote up 2 vote down

I wrote one for .NET for the Genghis project (link here) a while back. Looks like it is over at MS CodePlex now. Look for the "AniForm" class. Here is a screenshot.

It has more of an older MSN Messenger look and feel but should get you started.

link|flag
vote up 0 vote down

Can you just use those default tray-icon bubble notifications, or are you looking for a totally custom notification library? (sorry, this should be a comment instead of an answer, but I don't have enough rep)

link|flag
A bubble notification is ok. – Manuel Ceron Dec 5 '08 at 17:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.