SWT Mac OSX - Unread Message Count (like Mac Mail or Skype)
I've written an SWT app, that on Windows just sits in the System T开发者_Go百科ray and changes its icon with a message count. This is fine for Windows, but when it comes to the Mac i'd like to make it look a little more native.
I can get an icon to pop itself into the doc area, which is fine, but not i'd like to get an unread message count like those found on Skype or Mac Mail. Is there a way of doing this using SWT?
Cheers
See Snippet336.java, from the SWT snippets page. TaskBar and TaskItem will do what you want. TaskItem#setOverlayText(String) will put a badge on your application's icon.
精彩评论