the main Java GUI widget toolkit that is packaged with the standard Java SDK. Contained in the package `javax.swing`
60
votes
4answers
6k views
The Use of Multiple JFrames, Good/Bad Practice?
I'm developing an application which displays images, and plays sounds from a database. I'm trying to decide, whether to use a separate JFrame to add Images to the Database from the GUI. I'm just ...
80
votes
6answers
5k views
Should I avoid the use of set[Preferred|Maximum|Minimum]Size methods in Java Swing?
Several times I've been criticized for having suggested the use of the following methods:
setPreferredSize
setMinimumSize
setMaximumSize
on Swing components. I don't see any alternative to their ...
42
votes
2answers
10k views
GUI not working after rewriting to MVC
I'm practicing MVC style programming. I have a Mastermind game in a single file, working fine (maybe apart of the fact that "Check" button is invisible at start).
http://paste.pocoo.org/show/226726/
...
13
votes
6answers
5k views
How to add JTable in JPanel
I want to add JTable into JPanel whose layout is null. JPanel contains other components. I have to add JTable at proper position.
63
votes
4answers
19k views
Java Look and Feel (L&F)
I am developing a desktop application with Java Swing for my personal use.I am in need of some beautiful Look and Feel for my application. How can I do it using Java or a 3rd party API?
12
votes
3answers
5k views
Can a progress bar be used in a class outside main?
Right now, my main just calls a gui with 10 rows. Based on how many of those rows have text, 1 of 9 classes is called (two rows must have text). The called class performs calculations that I'd like ...
23
votes
1answer
9k views
Swing: Obtain Image of JFrame
How do I obtain a java.awt.Image of a JFrame?
I want to obtain a screen shot of a JFrame (for later use within my application). This is presently accomplished using the robot to take a screen shot ...
21
votes
4answers
11k views
Creating a custom button in Java with JButton
I am trying to create a button that has a custom shape (hexagon), but otherwise acts like a normal JButton would (that is, works with an ActionListener).
I have created a class that extends ...
8
votes
2answers
4k views
Socket using in a swing applet
I should made a server & client in Java,based on Swing and gui.I neeed to make somehow a socket that will go from the server to the client and from the client to the server, and will pass some ...
2
votes
3answers
3k views
Load Icon Image Exception
I am having a error for my GUI. Trying to set title bar icon then be included in a Runnable JAR.
BufferedImage image = null;
try
{
image = ...
46
votes
2answers
4k views
How to best position Swing GUIs
In another thread I stated that I liked to center my GUIs by doing something like this:
JFrame frame = new JFrame("Foo");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
...
6
votes
3answers
10k views
Draw a line in a JPanel with button click in Java
I want to draw a line in a JPanel.
This is my GUI and I want a line in the JPanel in white.
I find many examples but the problem is the how to use it.
In many exmples, always they draw in a JFrame ...
7
votes
5answers
2k views
Remove Top-Level Container on Runtime
Unfortunately, it looks like this recently closed question was not well understood. Here is the typical output:
run:
Trying to Remove JDialog
Remove Cycle Done :-)
Checking if still ...
3
votes
2answers
3k views
JTextFields on top of active drawing on JPanel, threading problems
Has anyone ever tried to use Swing to construct a proper multi-buffered rendering environment on top of which Swing user interface elements can be added?
In this case I have an animating red ...
10
votes
2answers
2k views
Can't get ArrayIndexOutOfBoundsException from Future<?> and SwingWorker if thread starts Executor
I play with multitreading for SwingWorker by using Executor, and I'm there by mistake identified wrong elements from the Vector, looks like as this code pretty ignores that element in Vector doesn't ...
9
votes
1answer
9k views
How can I update a JFreeChart's appearance after it's been made visible?
How can I use JFreeChart to dynamically update a chart's appearance after it's been made visible?
3
votes
3answers
2k views
JTable duplicate values in row
I have a JTable populated with a custom DataModel (pasted below) and when I call the populate() method, it appears to populate the table with duplicate data - each row is filled with the same value ...
8
votes
1answer
2k views
Swing: link toggle buttons together with a button group, along with corresponding menu items
For a school project, I need to make a simple paint application that can draw lines, ovals, and rectangles.
The assignment specifies that I need toolbar buttons and menu items for each type of shape.
...
8
votes
2answers
2k views
How can I put a control in the JTableHeader of a JTable?
Given a JTable with a column of type Boolean.class, the default renderer is a JCheckBox. It's easy enough to select individual cells based on a user selection, but it may be convenient to select all ...
7
votes
4answers
5k views
Implementing back/forward buttons in Swing
I have a quick question.
I'm getting a little bit of experience with Swing and the easiest way to do this was to draw up a reasonably big GUI.
As part of the GUI, I want to have Forward and Back ...
5
votes
4answers
1k views
Something seems wrong with the layout, JButton showing unexpected behaviour at resize of the window
JRE Version 1.7 Update 3
EXPECTED BEHAVIOUR
As I run the program, it works as expected, everything works smoothly. As when I click on STOP JButton the animation stops and the text on the same ...
2
votes
4answers
2k views
Update JLabel every X seconds from ArrayList<List> - Java
I have a simple Java program that reads in a text file, splits it by " " (spaces), displays the first word, waits 2 seconds, displays the next... etc... I would like to do this in Spring or some other ...
1
vote
1answer
2k views
How do I get the CellRow when there is an ItemEvent in the JComboBox within the cell
I have a JTable with a column containing a JComboBox.
I have an ItemListener attached to the JComboBox which acts upon any changes.
However, ItemListener does not have a method for obtaining the Row ...
6
votes
1answer
2k views
How to handle events from keyboard and mouse in full screen exclusive mode in java?
In passive rendering mode one can use KeyListener and ActionListener interfaces to handle events from user.
What is the correct way of event handling in full screen mode? Please extend this ...
9
votes
4answers
7k views
java wait cursor display problem
I am having issues displaying a wait cursor in my application. Whenever the mouse is above a panel that defines its own cursor, the wait cursor does not appear. If a panel does not change the cursor, ...
6
votes
3answers
6k views
Re-paint problem on translucent frame/panel/component
I'm trying to create a translucent window with Java on OSX and add a JLabel to it.
This JLabel changes its text every second....
However the component is not repainting well.
How can I solve ...
6
votes
2answers
3k views
Netbeans GUI editor generating its own incomprehensible code
When creating a new project in netbeans, if i select JAVA Desktop application, it creates some code which I DO NOT RECOGNISE AT ALL as what i had learnt in swing.
It imports packages such as :
...
13
votes
3answers
3k views
Bringing JFileChooser on top of all windows
I seem to have a problem with my very simple implementation of a file chooser dialogue that requires me to minimize Netbeans each time in order to get to it, and it gets pretty frustrating specially ...
6
votes
4answers
5k views
Placing component on Glass Pane
I have a subclass of JLabel that forms a component of my GUI. I have implemented the ability to drag and drop the component from one container to another, but without any visual effects. I want to ...
5
votes
3answers
2k views
JPanel in puzzle game not updating
I have a simple puzzle game. There is an image consisting of 16 tiles (randomly placed). Images are stored in an array and when game is launched they're added to main JPanel.
Game works in this way ...
9
votes
2answers
3k views
Dynamic JComboBoxes
I have following data (String):
Course1: A1
Course1: A2
Course2: B1
Course2: B2
Course2: B3
Course2: B4
Course3: C1
Course3: C2
I'd like to create two JComboBox (JComboBox1, JComboBox2) so that ...
3
votes
3answers
1k views
JAR Bundler using OSXAdapter causing application to lag or terminate
I've created a simple Java application that each second for for 10 seconds consecutive seconds adds a new row to a JTable. It consists of three classes.
The main class that gets called once the ...
1
vote
1answer
523 views
JComponents not showing up with picture background?
Ok so in my last post I asked how to set the background, now that it is set and everything, my components are not showing up. I have no idea what to do. I tried a few methods but none of them proved ...
5
votes
2answers
6k views
Is it possible to have an autocomplete using jtextfield and a Jlist?
I want to create an autocomplete program in java and basically, I want to have an auto-complete or a list of suggestions regarding to the users input in the textfield. As the user types in the ...
10
votes
5answers
1k views
How to share data with two(2) SwingWorker class in Java
I have two SwingWorker class: FileLineCounterThread and FileDivisionThread
I will execute the two threads. When the lines counting thread finishes, it will pass the result to File Division thread.
I ...
1
vote
2answers
3k views
refreshing background color for a row in jtable
i am trying to set the color of row of a Swing Jtable.
i use this class to extend Jtable as suggest on the net.
public class ColorTable extends JTable {
private static final long ...
2
votes
1answer
1k views
JTable design to synchronize with back-end data-structure
I have a JTable which is loaded from a data-structure using table model.The data-structure is of the format NavigableMap<Float,NavigableMap<Float,Boolean>>.An example data is:
Table ...
21
votes
6answers
2k 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 ...
11
votes
1answer
613 views
Passing current Date
Seems like as not possible to fix Graphics2D lack in code, there I must to set fix size for animations, otherwise some Start outside Rectangle 490 x 490 freeze or shaking on the screen
my SSCCE
...
11
votes
4answers
8k views
How do I fade an image in swing?
I've got class which inherits from JPanel with an image on it and i want to set up a little animation to display the panel/image and then fade it out when an event fires.
I presumably set up a thread ...
15
votes
3answers
3k views
Dynamically Add Components to a JDialog
I am having trouble adding JComponents to a JDialog when the user clicks a button on the JDialog. Basically I want it to look like this:
Then, when the user clicks "Add New Field" I want it to look ...
6
votes
3answers
4k views
How to rotate an image gradually in Swing?
I have an image I am rotating when the user clicks on a button. But it is not working.
I would like to see the image rotating gradually to 90 degrees till it stops but it doesn't. The image must ...
2
votes
3answers
1k views
Resizing issue with canvas within jscrollpane within jsplitpane
I'm creating an application using the NetBeans GUI Editor, in which I want to have a JSplitPane, the top component of which will be a Canvas within a JScrollPane and the bottom component will be a ...
6
votes
1answer
6k views
Java Swing button colors
I am using NET Beans IDE for developing my application in LINUX. I have used synthetica package to generate new look and feel. All is well till now.
Now my next stage is to add colors to buttons when ...
5
votes
2answers
1k views
Java: maintaining aspect ratio of JPanel background image
I have a JPanel with a painted background image and a layout manager holding other smaller images, all of this inside a JFrame. The background image is pretty big and I want to be able to have it ...
2
votes
1answer
400 views
Look and feel is not updating in Swing JTabbedPane
I have created an application in Java Swing. I offer the option to change the look and feel of the application from a menu, but after adding a new tab in JTabbedPane, it is not getting updated with ...
134
votes
10answers
342k 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 ...
3
votes
2answers
419 views
How to generate exceptions from RepaintManager
in connection with my question (may be) I found another exception type that I not able to catch and print-out from SwingWorker thread,
how can I to generate RepaintManager exceptions
EDIT: I read ...
72
votes
3answers
50k 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 ...
4
votes
1answer
578 views
JMenuItem ImageIcon too big
I've encountered a problem. My image is too big so it enlarges the corresponding JMenuItem. I don't want to develop bicycles like
ImageIcon image = new ImageIcon(new ...
