0
votes
1answer
20 views
while loop ignore the event listener
so when i run this code to try to change the background the GUI crashes and gets stuck in a infinite while loop ignoring the event listeners. here is the code:
`private Panel getPanel1() {
if …
0
votes
3answers
31 views
Java 2D. Hovering over Circle
If I draw some circles using Java2D. Is there a way display some text when I hover over any of the circles? i.e. I want to display the ID of that circle and some other stuff.
1
vote
2answers
55 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
75 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
4answers
59 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
32 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
38 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
47 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 …
1
vote
3answers
75 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
41 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
5answers
195 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 …
2
votes
1answer
38 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 …
0
votes
3answers
48 views
Listening to all JInternalFrame events - Java
Hi,
I'm trying to internationalise a Java applet and with that, support scripts which are written from right to left. I want to set up component orientations for all java components added to the view …
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
1answer
36 views
Flicker free AWT application
I'm trying to write a silly little app using Java and AWT.
It simply runs and animates some shapes, so as a first step, I created a simple app that clears a canvas with fillRect every 50ms.
The …
