Swing is the name for the GUI toolkit that is packaged with the standard Java SDK. (since 1.2)
86
votes
12answers
109k views
Best GUI designer for eclipse? [closed]
I'm looking for a good GUI designer for swing in eclipse. My preference is for a free/open-source plugin.
66
votes
13answers
36k views
Java Swing or Java Qt? [closed]
Can someone with extensive experience with both Qt and Java Swing please discuss whether you would use Swing or Qt under Java, and why?
Secondly, what is the business impact of using Qt? Is it ...
52
votes
10answers
170k views
Java Swing: how to add an image to a JPanel?
I have a JPanel to which I'd like to add JPEG and PNG images that I generate on the fly.
All the examples I've seen so far in the Swing Tutorials, specially in the Swing examples use ImageIcons.
I'm ...
39
votes
10answers
18k views
Java Desktop application: SWT vs. Swing
I'm a web developer at day and thinking about building my first real desktop application. The idea is to build a tool that automates a very repetitive task in a web application where no API is ...
36
votes
13answers
3k views
suggestions for declarative GUI programming in Java
I wonder if there are any suggestions for declarative GUI programming in Java. (I abhor visual-based GUI creator/editor software, but am getting a little tired of manually instantiating JPanels and ...
34
votes
3answers
18k views
Java Swing revalidate() vs repaint()
I'm putting together a Swing application where I often want to replace the contents of a JPanel. To do this, I'm calling removeAll(), then adding my new content, then calling revalidate().
However ...
29
votes
9answers
19k views
Howto bring a Java window to the front?
We have a Java-application that needs to be brought to the foreground when a telecontrol mechanism activates something in the application.
In order to get this we have realised in the called method ...
27
votes
4answers
960 views
How to organize a Swing GUI application?
I've written a few GUI's using Swing and I know about MVC, but I never found a good way to really organize my code somehow. What I am looking for is something like the folder structure that maven ...
27
votes
3answers
14k views
BoxLayout can't be shared error
I have this Java JFrame class, in which I want to use a boxlayout, but I get an error saying java.awt.AWTError: BoxLayout can't be shared. I've seen others with this problem, but they solved it by ...
27
votes
6answers
8k views
Java: Swing --> Maximize window
I'm putting together a quick and dirty animation using swing. I would like the window to be maximized. How can I do that?
Thanks in advance :)
26
votes
1answer
12k views
“Always on Top” Windows with Java
In Java, is there a way to have a window that is "Always on top" regardless if the user switches focus to another application? I've searched the web, and all of the solutions lean to some sort of JNI ...
26
votes
14answers
26k views
Which GUI Library is the best in Java? [closed]
Which GUI Library is the best in Java? I'm very confused. Swing is very slow and very ugly. Can you guys tell me about a good GUI library that I can use in Java?
25
votes
5answers
22k views
Creating a custom button in Java
Is there a way to create a JButton with your own button graphic and not just with an image inside the button?
If not, is there another way to create a custom button in java?
24
votes
8answers
2k views
Java GUI frameworks. What to choose? Swing, SWT, AWT, SwingX, JGoodies, JavaFX, Apache Pivot?
There is quite a lot of gui frameworks out there for java, but what is reckognized as todays framework of choice?
The following is my understanding of the different frameworks, please correct me if ...
23
votes
16answers
6k views
What are your best Swing design patterns and tips? [closed]
I'm writing a GUI for an application using Swing, and in the interests of code maintenance and readability, I want to follow a consistent pattern throughout the whole system.
Most of the articles and ...
20
votes
7answers
1k views
Does Swing support Windows 7-style file choosers?
I just added a standard "Open file" dialog to a small desktop app I'm writing, based on the JFileChooser entry of the Swing Tutorial. It's generating a window that looks like this:
but I would ...
20
votes
9answers
20k views
How to programmatically close a JFrame
What's the correct way to get a JFrame to close, the same as if the user had hit the [x] button, or pressed Alt+F4 (on windows)?
I have my default close operation set the way I want, via
...
20
votes
4answers
7k views
Multi-line tooltips in Java?
I'm trying to display tooltips in Java which may or may not be paragraph-length. How can I word-wrap long tooltips?
20
votes
10answers
52k views
How to close a Java Swing application from the code
What is the proper way to terminate a Swing application from the code, and what are the pitfalls?
I'd tried to close my application automatically after a timer fires. But just calling dispose() on ...
19
votes
6answers
527 views
Make the java systray look prettier in Linux
I'm making a Java Application on Linux that uses sytray using Java 6 and Swing. The app looks great (uses the system look and feel) but the systray looks awful. I mean the systray menu looks like old ...
19
votes
3answers
2k views
How can a Swing JWindow be resized without flickering?
I am trying to make a custom UI based on a JWindow for the purpose of selecting an area of the screen to be shared. I have extended JWindow and added code to make it resizable and to 'cut out' the ...
19
votes
5answers
13k views
Can anyone recommend a Java rich text editor?
The rich text editor must be implemented in Java, provide Swing support, and preferably be open source.
I'm looking to integrate it into an existing Java/Swing application.
Thanks.
18
votes
3answers
683 views
Swing UI Testing Library Comparisons: FEST, WindowTester Pro, etc
I'm not trying duplicate questions such as this one:
Unit testing framework for a Swing UI
What I'd like to know is, does anyone have any good comparisons for the various Swing Unit testing ...
18
votes
3answers
18k views
How do I create a right click context menu in Java Swing?
I'm working on a school project and we want to implement a right click pop-up menu in the gui.
Currently we are doing something like creating a JMenu on right click and setting its location to that ...
18
votes
7answers
9k views
Is there any good and free Date AND Time Picker available for Java Swing?
Is there any good and free Date AND Time Picker available for Java Swing?
There are a lot date pickers available but no date AND time picker. This is the closest I came across so far: Looking for a ...
18
votes
11answers
1k views
Top tips for designing GUIs?
A while back I read (before I lost it) a great book called GUI Bloopers which was full of examples of bad GUI design but also full of useful tidbits like Don't call something a Dialog one minute and a ...
17
votes
4answers
504 views
Should I avoid the use of set[Preferred|Maximum|Minimum]Size methods in Java Swing?
I received several times a critic for having suggested the use of the following methods:
setPreferredSize
setMinimumSize
setMaximumSize
on Swing components. I couldn't see any alternative to their ...
17
votes
2answers
2k views
Look and feel in java
I am developing an desktop application for my personal use. I use Java as programming language and I use Swing to develop GUI. I need some beautiful look and feel. How can I do it in Java or with any ...
17
votes
5answers
3k views
Swing data binding frameworks
Almost the same question has been asked a year ago, but the there has been some new development in this area.
Selecting a (data binding) framework for swing application seems to be quite difficult. ...
17
votes
18answers
5k views
IDE for Swing
Is there any IDE that simplifies creating Swing applications (ideally something along the lines of Visual Studio)
16
votes
6answers
423 views
Why does the JTable header not appear in the image?
I was offering advice on capturing an image of tabular data on Java API or Tool to convert tabular data into PNG image file - when the OP requested a code sample. Turns out to be harder than I ...
16
votes
1answer
396 views
How to best position Swing GUI's
In another thread I stated that I liked to center my GUI's by doing something like this:
JFrame frame = new JFrame("Foo");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
...
16
votes
4answers
9k views
Remove “X” button in Swing JDialog
Is there a way to remove the close button ("X") from the JDialog title bar?
16
votes
8answers
15k views
How to add hyperlink in JLabel
Which is the best way to add a hyperlink in jLabel? I can get the view using html tags, but how to open the browser when the user clicks on it?
16
votes
7answers
3k views
Java Swing: Libraries, Tools, Layout Managers
What libraries/tools do you have in your Java Swing Tool set?
XUL
Layout Managers
Packagers/Installers
Books
etc.....
16
votes
5answers
16k views
Best Java/Swing browser component?
What's the best cross platform Java Swing browser component at least able to play nicely in a swing interface (lightweight component ?) and able to run on MacOSX and Windows ?
Things like : ...
16
votes
5answers
4k views
Recommend a Java wizard library?
I'm looking for a wizard library/framework for Java, but it seems all the ones I can find are abandoned and/or lacking in enough documentation to use quickly. Here's the ones I've found, and all ...
16
votes
5answers
4k views
How to implement draggable tab using Java Swing?
How do I implement a draggable tab using Java Swing? Instead of the static JTabbedPane I would like to drag-and-drop a tab to different position to rearrange the tabs.
EDIT: The Java Tutorials - Drag ...
15
votes
2answers
235 views
How to get the icon for a file extension or filetype without creating a temp file?
I list some filenames with their icons (like the ones in the Windows Explorer) in a JTable. I know the two ways to get the icon if I have a File object from the local file system:
...
15
votes
4answers
9k views
Scala and Swing GUI applications
From reading parts of the Programming in Scala book, I realize that Scala can work with the Java Swing components to create GUI applications.
My question is if there are any projects or released ...
15
votes
6answers
3k views
Java GUI alternatives
I write applications in Java, and I'm looking for ways to speedup GUI programming. Binding frameworks help, but the particular application I'm working on now wouldn't benefit too much from that (it ...
15
votes
2answers
1k views
Is it safe to construct Swing/AWT widgets NOT on the Event Dispatch Thread?
I've been integrating the Substance look and feel into my application and ran into several problems regarding it's internal EDT (Event Dispatch Thread) checking routines. Substance absolutely refuses ...
15
votes
9answers
6k views
How could I implement autocompletion using Swing?
I'm interested in providing an autocompletion box in a JFrame. The triggering mechanism will be based on mnemonics (I think), but I'm not really sure what to use for the "autocompletion box" (I would ...
15
votes
2answers
11k views
JFileChooser.showSaveDialog(…) - how to set suggested file name
The bloated JFileChooser seems to be missing one feature: a way to suggest the file name when saving a file (the thing that usually gets selected so that it would get replaced when user starts ...
14
votes
3answers
245 views
3 Swing applications designs : which is the best?
I'm quite new in desktop applications developpment and I have a pretty big project do deliver this summer. The thing is that the code has to be very clear, so I won't go in (much) trouble when I will ...
14
votes
5answers
1k views
set JFrame Orientation from right to left!
To align my JFrame from righ-to-left, I use:
setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
but this works only if I use the following style (decoration) of the JFrame:
public class ...
14
votes
2answers
5k views
How do I set a JLabel's background color?
In my JPanel, I set the background of a JLabel to a different color. I can see the word "Test" and it's blue, but the background doesn't change at all. How can I get it to show?
...
14
votes
6answers
514 views
If Swing models' getters aren't thread-safe, how do you handle them?
It is well known that updating a Swing GUI must be done exclusively in the EDT. Less is advertised that reading stuff from the GUI must/should also be done in the EDT. For instance, let's take ...
14
votes
6answers
10k views
Why is itemStateChanged on JComboBox is called twice when changed?
I'm using a JComboBox with an ItemListener on it. When the value is changed, the itemStateChanged event is called twice. The first call, the ItemEvent is showing the original item selected. On the ...
14
votes
4answers
11k views
Java Swing - Using JScrollPane and Having it scroll back to top
I'm using JScrollPane to allow scrolling in a JFrame that has a text component that's serving as a text editor. What I want to do, after setting the text in this editor, is have it scroll back up to ...