1
vote
How to determine a swing component?
You could install a MouseListener on each JSeparator. When the mouse enter its area, turn its background red and print a line identifying the object, preferrably by printi …
-1
votes
How to design interface for a game in Java
Think up some weird XML format that completely describes the interface and make him create it. :)
…
0
votes
Java rounded Swing JButton
Opacity should be set to false, so
button.setOpaque(false);
could already be what you want.
…
1
vote
Action Listener as Anonymous Inner Class
This could be of great use to you: Essentials of the Java Programming Language.
…
2
votes
JSeparator with Title
Hmm… without any testing and completely from the top of my head:
JPanel panel = new JPanel();
panel.setBorder(new TitledBorder("Title"));
menu.add(panel);
Most Swi …
1
vote
Fastest way to create a Java message dialog (swing/awt/other)?
Also it would be a lot faster to create an AWT Window (or maybe a …
1
vote
Fastest way to create a Java message dialog (swing/awt/other)?
Oh, and if you don’t really need to show the dialog from Java you could look into using KDial …
0
votes
Adding JTextField to a JPanel and showing them
Your while loop is wrong. i never gets incremented so your window creation is in an endless loop and your CPU consumption should be at 100% until you abort the program. Also, the GUI s …
1
vote
1
vote
recognise combobox deselect when using Swing + models?
Foo oldFoo;
....
fooCombo.addItemListener(new ItemListener() {
public void itemStateChanged(final ItemEvent arg0) {
Foo newFoo = (Foo) fooModel.getSelectedItem();
fooCha …
3
votes
JFrame title repaint
Don’t do your heavy work in Swing’s event thread. Create a new thread for your calculations so that Swing can use its thread to repaint the GUI.
…
0
votes
Preserving keyboard layout in a JTextfield?
No, keyboard layouts are managed by the OS or desktop environment.
…
0
votes
Swing: Adding listener to a component and ALL its decoration?
You should probably use a MouseMotionListener instead of a …
1
vote
How to transfer objects from Jframe to another Jframe ?
public void mouseClicked(MouseEvent mouseEvent) {
int row = getClickedRow(mouseEvent); /* dummy code */
Object rowObject = getRowObject(row); /* more dummy code */
JFrame2 jfram …
1
vote
