IDE Notifications

Can plugins generate there own notifications that blink in the bottom of
IDEA like the exceptions, facet notifications, and blog-post
notifications?

I had thought maybe something might have been added to the
com.intellij.openapi.ui.Messages class for such background notifications
but doesn't seem to be anything there.

Cheers,
Mark

0
3 comments
Official comment

Use com.intellij.openapi.wm.StatusBarWidgetProvider

Avatar
Permanently deleted user

Hello Mark,

Can plugins generate there own notifications that blink in the bottom of
IDEA like the exceptions, facet notifications, and blog-post
notifications?
I had thought maybe something might have been added to the
com.intellij.openapi.ui.Messages class for such background
notifications but doesn't seem to be anything there.


There is no standard API for blinking, but you can add your custom components
through StatusBar.addCustomIndicationComponent().

--
Dmitry Jemerov
Software Developer
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"


0
Avatar
Permanently deleted user

You might also find com.intellij.util.ui.AnimatedIcon & friends helpful.

Sascha

1

Please sign in to leave a comment.