Modal status dialog
Hallo Experts,
Could you please help me in my problem. I want to have Modal dialog, which shows a progress of any action (e.g. login process). This dialog should have no buttons and should run in separate thread to not stop main process.
I tried DialogWrapper and found that it is not exactly what I need. Is there any intelliJ feature or should I do that using SWING?
Thank you in advance,
Please sign in to leave a comment.
There is no special support for that in IDEA API. Please use Swing.
--
Valentin Kipiatkov
JetBrains, Inc
http://www.intellij.com
"Develop with pleasure!"
"Serge" <no_mail@jetbrains.com> wrote in message
news:19947505.1061816339042.JavaMail.itn@is.intellij.net...
>
shows a progress of any action (e.g. login process). This dialog should have
no buttons and should run in separate thread to not stop main process.
>
there any intelliJ feature or should I do that using SWING?
>
I use status in APIComparator plugin. Maybe it not clearly as expertise
about such things but works fine.
You can look at here:
http://www.intellij.org/twiki/bin/view/Main/APIComparatorPlugin
The code look like:
Hope this help you a little...
Good luck!
--
Alexey Efimov, Software Engineer
Sputnik Labs,
http://www.spklabs.com
"Serge" <no_mail@jetbrains.com> wrote in message
news:19947505.1061816339042.JavaMail.itn@is.intellij.net...
>
shows a progress of any action (e.g. login process). This dialog should have
no buttons and should run in separate thread to not stop main process.
>
there any intelliJ feature or should I do that using SWING?
>
I have already understood. :) Anyway thanks!
Thanks! I do the same and it works fine!