Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What Java GUI library IDEA IntelliJ uses? [duplicate]

I'm looking for Java GUI library especially on Mac OS X.

I checked SWT/JFace, and I tested eclipse and RCP which is customized eclipse as an example. I also checked SWING, and for the example I tested NetBeans.

I found that Jetbrains tools such as IDEA ntelliJ, RubyMine, and PyCharm seem to fit my needs, but I'm not sure what GUI tools they are using.

They don't seem like a RCP application as I see no OSGi libraries, and the GUI seems to be a little bit different from SWING.

What Java GUI library IDEA IntelliJ uses? Further more, what options do I have when I make GUI program on Mac OS X using Java other than SWT/JFace and SWING?

like image 446
prosseek Avatar asked Dec 09 '12 18:12

prosseek


1 Answers

It uses Swing. I know because you can set those old school look and feels Swing ships with.

You could also use JavaFX.

like image 103
sorencito Avatar answered Oct 19 '22 05:10

sorencito