views:

400

answers:

2

In a Java project (SWT desktop app), I want to inform the user about events through animated notification box (actually, it's not required to be animated). Something like MSN or any other IM client.

There is JToaster for Swing, but I wonder if there isn't any other implementation based on SWT.

Thanks!

+2  A: 

The MyLyn plugin for Eclipse does this. Since it's open source, maybe you can check the MyLyn code to see how it's done there?

PEZ
+1  A: 

Check the BallonWindow from Novocode, it does something similar to what you need, without delving deep into an open source project. It is not animated, but it does show a notification as a separate window with an irregular background.

I have a blog post that explains its usage.

Mario Ortegón