0
votes
2answers
22 views
Why does repaint(long) repaint immediately?
According to the Javadoc, JComponent.repaint(long) is supposed to schedule a repaint() sometime in the future. When I try using it it always triggers an immediate repaint. What am I doing wrong?
…
1
vote
3answers
31 views
Java Swing: change background color on mouse over
Hi,
I've implemented a simple mouse listener where the background color changes whenever the mouse enters the component (a JPanel), and it reverts back whenever the mouse leaves. This has some …
2
votes
4answers
55 views
Swing question / JTree / custom tree model
Hello,
I'm having a problem and hope, someone knows what's going wrong and why and is able to give me the explanation of what I'm missing out right now to make that thing work as suggested.
I have a …
0
votes
1answer
11 views
Is there a convenient way to use a spinner as an editor in a Swing JTable?
I deal with numeric data that is often edited up or down by 0.01*Value_of_variable, so a spinner looks like a good choice compared to a usual text cell.
I've looked at DefaultCellEditor but it will …
0
votes
4answers
26 views
Suppressing Swing Visibility
Hello,
I've been given a bunch of messy code and a short time limit (no surprises there) to write some tests for it. I have written tests! They are good tests.
Unfortunately, instantiating some of …
0
votes
2answers
32 views
Dragging A Circle on a JFrame
I am trying to have a circle appear on the screen, then when the user clicks INSIDE the circle, enable the ability for them to drag the circle where the mouse goes while it is being pressed.
This is …
2
votes
1answer
47 views
How to resolve swing listener memory leaks?
Background
So I read that often memory leaks within Swing applications originate from the use of various listeners (mouse, key, focus, etc). Essentially, you register an object as a listener and …
0
votes
1answer
20 views
JDialog with minimize button
Is it possible to have a minimize and maximize button for a non-modal(modal=false) JDialog.I know JFrame is the ideal solution for this but this change has to be made in an existing code and its …
1
vote
4answers
100 views
How can I excute Notepad by Java code
I want to excute Notepad program in MS Windows by Java code to open my text file.
Pls help me to do that.
2
votes
1answer
61 views
setLookAndFeel and NullPointerException
Hi!
Has anyone ever tried to change swing's look and feel? This code, taken from an example, simply yields a null pointer exception, and I wonder what might be wrong:
…
2
votes
6answers
228 views
Creating a Squircle
Hello there. I'm a first year programmer. I'm trying to create a squircle. (square with round corners).
So far i have managed to get. I have been given the constants of a,b and r. If anyone could …
0
votes
4answers
51 views
Java JTextArea - Adding a newline
So I'm stumped. I, for some reason, seem to remember that Java does weird things when you try to add new lines to stuff... so I think that may be the problem here.
This code is not working how you'd …
1
vote
3answers
45 views
Swing application framework for multilanguage application
Can the swing application framework be used to implement multilanguage swing applications?
If so, how should it be done? Should I use multiple .properties files, one for each language? How can I let …
1
vote
4answers
61 views
Auto complete textbox in Java Swing
Is there any good ready made Java Swing component that can be used to implement auto complete textbox?
1
vote
1answer
117 views
Java Architecture - Question about conventions
I am making a user interface which shows graphs and manipulates graphs. The class extends JFrame implements ActionListener. The ActionListener then calls different classes to manipulate graphs …
