Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Notification Library for Windows [closed]

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.

like image 674
Manuel Ceron Avatar asked Dec 05 '08 16:12

Manuel Ceron


2 Answers

You can do it by depending on a GUI library.

For example, with PyQt,it is possible :

  • PyQt QSystemTrayIcon Documentation

  • QSystemTrayIcon Class Reference

  • Example of QSystemTrayIcon (in C++, easy to adapt to python)

like image 186
Philippe F Avatar answered Oct 13 '22 01:10

Philippe F


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.

like image 23
Mike Marshall Avatar answered Oct 13 '22 01:10

Mike Marshall