2
votes
1answer
30 views
JNI problem on OSX
I'm running into problems using AWT classes on OSX (10.5.8) with Java 6 (1.6.0_17 JVM: 14.3-b01-101).
Trying to load java.awt.Dimension the code just freezes, this happens in Eclipse or from the …
0
votes
1answer
8 views
CDC-1.0/Foundation-1.0,J2SE-1.3
Dear all,
How to setup/configure the environment "CDC-1.0/Foundation-1.0,J2SE-1.3" of an OS (for example windows XP, linux)?
Because I want to run the embedded AWT application which requires this …
0
votes
0answers
11 views
j2me AWT development
Dear all,
I plan to development an embedded application with AWT GUI.
How to setup the IDE based on Eclipse? So that the developed applications can run on CDC FP1.0/FP1.1?
0
votes
1answer
30 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
40 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
83 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
95 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
67 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
37 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
51 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
84 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
49 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
224 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
40 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 …
