Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Please recommend pretty Java Swing components library [closed]

I am right now working on a job of retouching the user interface of a software which is coded in Java. The interface is now built using Swing. I am looking for a library of Java Swing components, which should look better than the original JComponents.

I have already found SlickerBox; the components there look much better than the originals. However, I don't like the color of the components in SlickerBox, and I can't find the way to customize the color. I am looking for a better library.

I would appreciate your answer!

like image 909
Qinlong Guo Avatar asked Sep 07 '12 16:09

Qinlong Guo


People also ask

What has replaced Java Swing?

Swing is a newer way of making a GUI. All objects in Swing are derived from AWT, and most objects in Swing start with the letter J. Hint: Oracle has developed JavaFX to replace both Swing and AWT. Since Java SE 7, update 6 it is bundled with Java SE.

What are the five Java Swing components?

In Java Swing, there are a number of components like a scroll bar, button, text field, text area, checkbox, radio button, etc. All these components together, form a GUI that offers a rich set of functionalities and also allows high-level customization.

What is Java Swing library?

Swing is a Java Foundation Classes [JFC] library and an extension of the Abstract Window Toolkit [AWT]. Swing offers much-improved functionality over AWT, new components, expanded components features, excellent event handling with drag and drop support.


1 Answers

Why not use the standard java Look and Feels there are plenty:

  • JGoodies
  • JTatoo
  • Jide look and feel
  • Liquidlnf
  • Napkin LaF
  • PgsLookAndFeel
  • Quaqua (looks like aqua from MacOS X)
  • Seaglass
  • The Alloy Look and Feel
  • The native for your system
  • The nimbus LaF
  • The substance project (forked into the Insubstantial project)
  • WebLookAndFeel

Also see here for more free L&Fs:

  • javootoo.com
  • Synthetica Themes - Custom L&Fs

Alternatively you may want to know how to create your own:

  • How to Write a Custom Look and Feel

Or Modifying the Look and Feel might be what you need

Java Look And Feel Libraries/Engines:

  • Cezanne L&F engine

References :

  • Best Java Swing Look and Feel Themes | Top 10
  • oracle.com - Modifying the Look and Feel
  • wikipedia.org - Pluggable look and feel
  • Java2s.com - Look and feel
  • Java Look and Feel (L&F)
like image 74
David Kroukamp Avatar answered Sep 23 '22 10:09

David Kroukamp