9
votes
2answers
385 views
Is it safe to construct Swing/AWT widgets NOT on the Event Dispatch Thread?
I've been integrating the Substance look and feel into my application and ran into several problems regarding it's internal EDT (Event Dispatch Thread) checking routines. Substance absolutely refuses …
8
votes
1answer
103 views
Java: Getting resolutions of one/all available monitors (instead of the whole desktop)?
Hello!
I have two different-sized monitors, connected together using (I believe) TwinView.
I tried
System.out.println(Toolkit.getDefaultToolkit().getScreenSize());
and get
…
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 …
5
votes
4answers
109 views
How are Swing components internally created, laid out, repainted, notified of events, …?
Hello!
I wonder if there's a good documentation (or a (viewable) ebook) about
the lifecycle of Swing components.
Is "lifecycle" the correct term, anyway?
I hope to find answers to question such as:
…
5
votes
7answers
811 views
Is Google Web Toolkit similar to AWT and Swing
I've looked breifly into GWT and like the idea that I can develop in Java and have the application compile down to HTML and JavaScript. Is the concept behind GWT and AWT and Swing the same or …
5
votes
7answers
1k views
Java: What is java.awt.Component.getName() and setName() used for?
What is java.awt.Component.getName() used for? It always seems to be null in the applications I build with netbeans. I'm thinking of storing some help text per component in it -- I don't want to use …
5
votes
5answers
969 views
How to check for key being held down on startup in Java
I'm trying to write a resolution selection dialog that pops up when a program first starts up. To prevent boring the user, I want to implement the fairly standard feature that you can turn off that …
5
votes
3answers
2k views
Turn an array of pixels into an Image object with Java’s ImageIO?
I'm currently turning an array of pixel values (originally created with a java.awt.image.PixelGrabber object) into an Image object using the following code:
public Image getImageFromArray(int[] …
4
votes
4answers
706 views
What is the difference between swing and awt?
Can some one please explain me what is the difference between swing and awt?
Are there any cases where awt is more useful/ advised to use then swing or vice-versa?
Thanks in advance.
4
votes
3answers
975 views
How can I catch AWT thread exceptions in Java?
We'd like a trace in our application logs of these exceptions - by default Java just outputs them to the console.
3
votes
2answers
1k views
Adding an image to a panel using Java AWT
I posted earlier about having a really messed up panel but fixed that by simply changing the layout (thank you to Charlie Martin for helping me). Now, I'm trying to add an image to a panel so I can …
3
votes
2answers
76 views
What’s the best way of dealing with AWT Graphics contexts?
Some users of our Swing application have reported weird artefacts appearing on the display. This ranges from components not repainting themselves properly for a second or two, right upto whole …
3
votes
6answers
753 views
Fake X11 display?
I have a Java program using AWT which I would like to run on a headless system. The display for the program does nothing other than display stats. When the program finishes, it exits. There is no user …
3
votes
1answer
328 views
Find composite location on screen
I am implementing a on screen keyboard in Java for SWT and AWT.
One important thing is to move the keyboard to a position where the selected text field can show and is not lying behind the on screen …
3
votes
5answers
2k views
Howto bring a Java window to the front?
We have a Java-application that needs to be brought to the foreground when a telecontrol mechanism activates something in the application.
In order to get this we have realised in the called method …
