1
vote
2answers
29 views
Java swing. How to wait for other Jframes
In a JFrame, when I click on 'login', I pop up another Jframe which is the login window.
How do I make my main Jframe wait for my login Jframe to exit, before doing anything else?
1
vote
2answers
53 views
Cannot display image on Jpanel
I'm using the Netbeans GUI builder, but it's a little confusing now. How can I add an image to a panel? I think i'm doing it correct, but it's not showing up. I think it should be in the init() …
0
votes
2answers
2k views
Java Applet, AWT Refresh problem Mac OS X 10.4
We have a Java Applet built using AWT. This applet lets you select pictures from your hard drive and upload them to a server. The applet includes a scrollable list of pictures, which works fine in …
0
votes
4answers
44 views
Java 2D Graphics Question
I'm attempting to make a Java Applet which will allow me to draw a graph data structure in a canvas by clicking where I want to create nodes, and clicking the nodes to connect them. The problem is I …
0
votes
2answers
25 views
Why does the Java AWT FileDialog setIconImage method fail to set the icon?
I am attempting to use a Java AWT FileDialog, but I want to replace the default Java Dialog icon with something else. In short, the code looks something like this:
Frame frame = new Frame();
Image …
1
vote
2answers
35 views
Java (AWT): fitting text in a box
I have an application that extends a Frame. Then, it'll display a few lines of text using:
Font f = new Font("Arial", Font.PLAIN, 10);
g.setFont(f);
g.drawString("Test|great Yes ^.", x, y + 10);
…
1
vote
4answers
44 views
Enabling/disabling an AWT Button
Dear All,
I wrote the following piece of code, which is supposed to return a panel with one checkbox and one button. The idea is that the button should be enabled only if the checkbox is checked.
It …
2
votes
3answers
83 views
Convert a list java.awt.geom.Point2D to a java.awt.geom.Area
I have a set of points that i want to turn into a closed polygon in Java. I'm currently trying to use java.awt.geom.Point2D and java.awt.geom.Area but can't figure out how to turn a group of the …
1
vote
3answers
64 views
Create a ImageIcon that is the mirror of another one.
Hi,
I'll like to know if there is a way to create a ImageIcon that is the mirror of another ImageIcon.
Searching on Google, I found how to do it by using many AWT libraries.
Is there a way to do it …
0
votes
2answers
36 views
Java AWT/Swing: Get notified on change of position/size of my window
Hello
I've got a window and I would like to get notified when the position or the size has changed. Which type of listener ist the best to take?
WindowListener didn't work for me...
Any way?
…
0
votes
4answers
3k views
Force a full Java applet refresh (AWT)
I have a Java Applet that uses AWT. In some (rare) circumstances, the platform does not refresh the screen properly. I can move or minimize/maximize the window and see that my applet refreshed …
0
votes
5answers
172 views
Why is paint()/paintComponent() never called?
For the last two days I have tried to understand how Java handles graphics, but have failed miserably at just that. My main problem is understanding exactly how and when paint() (or the newer …
8
votes
1answer
2k 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 …
2
votes
1answer
37 views
Is it possible to have 2 JPanels in a Border layout at the same location?
Hi All,
I'm writing a game which uses a border layout with a JPanel using BorderLayout.CENTER. What I'd like to be able to do is sometimes hide this panel and replace it with another panel with …
1
vote
2answers
70 views
What does Container.validate() method do?
There seems to be many methods in Java awt Container class that are related to validate. Apparently they don't do data validation. Is it useful for a Swing developer in any cases? Some of the methods:
…
