What is the proper way to create a non-dialog window?
I need to create a non-dialog window (like IDEA's standard diff window) in a plugin. Is there a suggested way to do it? I've found that diff window is created with the help of FrameWrapper class, but it seems not to be available in openapi.
Please sign in to leave a comment.
Hello Dmitry,
There's no real distinction between OpenAPI and not-OpenAPI at the moment.
Just add idea.jar to the IDEA SDK classpath and use the FrameWrapper class.
--
Dmitry Jemerov
Development Lead
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"
Thanks for help!