1
vote
1answer
32 views
Is it possible to record video of a Java Swing Component?
I am looking for a way to make a video out of a java JComponent. I found ways to save components as images, but ideally I would like to be able to have the component paint to the screen and to a …
0
votes
0answers
70 views
+100
Who’s got the focus during a Drag&Drop?
Hi there,
I'm currently trying to receive key events during a drag and drop, but it seems to me that the focus is taken away while dragging so that I can't listen to any key events.
I'm dragging a …
0
votes
1answer
17 views
JDialogs cause my application’s menus to disappear on OSX
Whenever any of my JDialogs have focus the toolbar does not display any menus accept for my applications main menu (it doesn't show file edit etc....). Is this an issue inherent to JDialogs/Swing or …
0
votes
5answers
65 views
Java Swing GUI hour glass
In my Swing program there is a JTabbedPane, when user clicks on a tab, the program takes a while to get the data and process the results, then shows the results in the selected tab, how can I display …
0
votes
3answers
57 views
How do you name a SwingWorker thread? Open to code or best practices
I'm trying to debug a horrible exception that is occurring in a SwingWorker thread. If I could name my SwingWorker threads, then I could better interpret the stack traces I am receiving.
It doesn't …
1
vote
3answers
50 views
JLabel - get parent panel?
Is it possible to get the name of the panel that a JLabel is added to?
I added some JLabels to different JPanels, and I want to call different mouse events according to which panel the jLabels are …
7
votes
11answers
2k views
Java: Swing Libraries & Thread Safety
I've often heard criticism of the lack of thread safety in the Swing libraries.
Yet, I am not sure as to what I would be doing in my own code with could cause issues:
In what situations does the fact …
1
vote
5answers
67 views
How would you make a frame visible if the mouse is inside it and invisible when it’s not in Java?
So if I was writing pseudo code:
if(mouseInsideFrame==true)
frame.setVisible(true);
else
frame.setVisible(false);
What method would I use for the mouseInsideFrame in the if statement?
…
0
votes
2answers
49 views
java & fullscreen over multiple monitors
Hi,
A snippet from my Java application:
JFrame f = new JFrame();
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
GraphicsDevice gd = ge.getDefaultScreenDevice();
…
0
votes
8answers
84 views
How do you get the screen width in java?
Does anyone know how you would get the screen width in java? I read something about some toolkit method but I'm not quite sure what that is.
Thanks,
Andrew
0
votes
4answers
34 views
how would you detect if the mouse cursor is inside a JFrame in java?
How would you write a method to detect if the mouse cursor is inside a JFrame in java? The method should return true if it is inside or else false.
Thanks, Andrew
2
votes
1answer
36 views
Removing a JComponent from a CardLayout
How do I remove a JPanel (or any other JComponent) from a CardLayout?
I do not have direct access to the Component I want to remove, but I have the index (the one used to show the Panel, when we call …
0
votes
3answers
53 views
JFrame in java desktop application
I am developing a desktop java application with GUI implemented through swings. I have made a JFrame and have added three buttons on it - Add, Edit, Delete.
Now I want that whenever a user clicks on …
1
vote
2answers
88 views
Java GUI Builder… do you know any? [closed]
Possible Duplicate:
IDE for Swing
Hi I'm looking for some java gui builder. I used Swing Designer from instantiations and it was pretty good, but I can't use it anymore since I don't want to …
0
votes
2answers
40 views
NetBeans (Java Swing): Set window size
This is driving me crazy. When I set an appropriate size for my window in design-mode it just ignores this size and uses something else when I compile and run. Even tough I set the minimumSize and …
