Get the source code
Download the source code
You can get the source code in different ways:
- Check out the sources with your Subversion client
svn checkout http://src.paralint.com/notifu/trunk/ Notifu
- Download zipped sources
API used
There are two ways that I know of that will let you display a yellow pop-up ballon. Whether you should use one or the other depends on the application you are using. Notifu is written in C++ but I always keep reuse in mind. The code is small and porting to your language should not be difficult.
IUserNotification or Shell_NotifyIcon ?
That's the first question I wanted to answer when I started this project. The answer is simple. If you have a message loop, you are probably better off with Shell_NotifyIcon. If your application is command line or somewhat capabale of blocking, the IUserNotification interface should be used.
I will not talk about Shell_NotifyIcon, there are plenty of examples available for every language, and then some. Suffice to say that IUserNotification gives you more control on the pop-up. Not all of the features of IUserNotification are available in Notifu's command line.
One thing that IUserNotification provides is a clean way for an application to close the popup ballon without any user intervention. You must implement IQueryContinue with your closing logic. This is how Notifu handles timeouts and replacing a popup with another.
How is the source organized
Five files can be reused directly in you project : NotifyUser.cpp, it's header NotifyUser.h and NOTIFU_PARAM.h provide the small wrapper for the API, while QueryContinue.cpp and it's header QueryContinue.h provide a sample implementation of a IQueryContinue callback. Since IUserNotification is a COM interface, you must also call CoInitialize or CoInitializeEx before calling NotifyUser. Just fill a NOTIFU_PARAM structure and call NotifyUser.
To start, just add those five files to your project and build it. It should work as is.
Notifu has no dependencies on anything, but you might need the platform SDK.
If you need a feature that Notifu doesn't provide,
Compiled binary
If you haven't already, you can take a look at the documentation and get the compiled binary.

