The Abstract Window Toolkit (AWT) is Java's original platform-independent windowing, graphics, and user-interface widget toolkit.
29
votes
9answers
19k 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 ...
26
votes
1answer
12k 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 ...
24
votes
8answers
2k views
Java GUI frameworks. What to choose? Swing, SWT, AWT, SwingX, JGoodies, JavaFX, Apache Pivot?
There is quite a lot of gui frameworks out there for java, but what is reckognized as todays framework of choice?
The following is my understanding of the different frameworks, please correct me if ...
15
votes
2answers
1k 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 ...
13
votes
5answers
860 views
Create an image from a non-visible AWT Component?
I'm trying to create an image (screen-shot) of a non-visible AWT component. I can't use the Robot classes' screen capture functionality because the component is not visible on the screen. Trying to ...
11
votes
2answers
190 views
Does AWT/Swing cancel painting operations if the monitor is off?
I am experiencing a problem with Swing that only occurs when the computer monitor is powered off, but my Swing application continues to run in the background. It seems that whenever the monitor is ...
11
votes
9answers
2k views
Is Java Swing still in use?
I am planning on making a Java Swing application and was wondering if Swing is still used or if it has been replaced with something else.
Thanks in advance!
10
votes
2answers
359 views
Java: Getting resolutions of one/all available monitors (instead of the whole desktop)?
I have two different-sized monitors, connected together using (I believe) TwinView.
I tried
System.out.println(Toolkit.getDefaultToolkit().getScreenSize());
and get
...
10
votes
6answers
5k 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.
10
votes
4answers
14k 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[] ...
8
votes
4answers
255 views
Java - Vertical “FlowLayout” with Horizontal Scrolling
As described in the title, I've been trying to set up sort of a vertical flow layout with horizontal scrolling. The components within the layout will be JLabels. Let me draw a picture:
...
8
votes
1answer
153 views
Best online help for a large Java Swing project?
We have a large Java Swing application that we'd like to add an "online help" system to. Does anyone have any reccomendations? I've only heard of JavaHelp and the Eclipse help system, but I'm not ...
8
votes
4answers
308 views
A rotated square panel in Java GUI
I wonder if it is possible to implement a GUI panel (possibly JPanel) that is of square shape but rotated 90 degrees. Obviously, there will be a top-level container which contains this panel, and ...
8
votes
9answers
3k views
Fastest way to create a Java message dialog (swing/awt/other)?
I'm creating a Java application that will do some processing then needs to display a message to give the user feedback.
However, it appears to be incredibly slow - taking over two seconds to return.
...
8
votes
7answers
5k 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 ...
8
votes
3answers
2k 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.
7
votes
1answer
639 views
Double Buffering with awt
Is double buffering (in java) possible with awt? Currently, I'm aware that swing should not be used with awt, so I can't use BufferStrategy and whatnot (I already have some code written in awt that I ...
7
votes
3answers
869 views
how to close a java frame with threads
I have a java frame that I want to close it automatically after 3 or 4 seconds. I found out I must used threads. but I dont know how exactly to do it, this a dumy part of my code :
package intro;
...
7
votes
4answers
4k views
How to centre a Window in Java?
What's the easiest way to centre a java.awt.Window, such as a JFrame or a JDialog?
6
votes
2answers
231 views
How to hide the arrow buttons in a JScrollBar
I need to hide the arrow buttons of java.awt.Scrollbar(VERTICAL) in an AWT application.
Does anyone know how this can be achieved?
I saw an example here, but the code just hides the buttons. The ...
6
votes
0answers
115 views
Correctly handling a Reload and Restart from the AppletViewer
the complete code
When my applet starts up the first time from a clean environment, things work the way I expect them to. I spawn two threads, one for generic processing, and one for graphics. I do ...
6
votes
2answers
176 views
AWT Window Close Listener/Event
I am sorry if this is a n00b question, but I have spent way too long for this once I create the Window listener, window event, and everything else, how do I specify what method to invoke? Here is my ...
6
votes
1answer
86 views
Java AWT: Is Font a lightweight object?
How expensive is it to create a Font object when I use Java's AWT? Should I cache Font whenever practical, or is it simply a lightweight reference to the heavyweight font the AWT already caches ...
6
votes
5answers
1k views
Make a BufferedImage use less RAM?
I have java program that reads a jpegfile from the harddrive and uses it as the background image for various other things. The image itself is stored in a BufferImage object like so:
BufferedImage ...
6
votes
10answers
1k views
Java: create graphics without awt?
Is there any library out there to create graphics without using AWT?
What I need is simple drawing functions (like to draw a line) and text drawing functions to create graphics in memory for a Google ...
6
votes
7answers
5k 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 ...
6
votes
5answers
3k 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
2answers
450 views
GUI Architecture and Design in Java (Swing)
I have spent the last several hours scouring the internet looking for examples and ideas on how to write a medium sized GUI in java. I know a little about swing but that is all. I don't know of any ...
5
votes
1answer
119 views
Eliminating Initial keypress delay
When you type into a textbox and hold a key, you get (a.......aaaaaaaaaaaaaaa), depending on the initial key press delay.
addKeyListener(new KeyAdapter() {
public void keyPressed(KeyEvent e) {
...
5
votes
2answers
190 views
How to find a button source in AWT (calculator homework)
We were asked to make a simple GUI calculator, I used getSource() to detect the buttons, cause that's what they taught us. It works by typing the 1st and 2nd value then choosing the operation, it ...
5
votes
2answers
368 views
AWT custom rendering - capture smooth resizes and eliminate resize flicker
I've been looking at this for several months and so far this is the best I have come up with.
The structure (render outside of EDT) is not up for debate, as our application operates this way and will ...
5
votes
2answers
362 views
How can I make this JButton visible? When I have progressive scan background JWindow()?
How can I make the JButton visible?
1) When no progressive background is turned on: JButton is showing
2) When no progressive background is turned on, JButton is pressed still showing no flicker:
...
5
votes
2answers
281 views
JFrame repaint() issues - Java
I want to be able to draw using Java's paint() on a JFrame. When I click the JFrame (anywhere for now) I want the JFrame to be repainted with the co-ordinates of the click - similar to this Java ...
5
votes
2answers
263 views
Java Swing getSize() returns inaccurate value?
To put this most simply, I am trying to use the width of a component to set the size of its parent container. However the width being returned for the component is off by about 4 pixels.
More ...
5
votes
1answer
237 views
AWT fast graphics & thread safety
I'm porting a really old AWT game to a really naff new device.
The game has a whole bunch of things wrong with it, including a very lax approach to thread safety: the game engine is trying to draw ...
5
votes
1answer
174 views
Disabling awt/swing debug (fine) log messages
I'm using java logging to write log messages of my application to a log file and other destinations. Having set the log level to FINE, I also get (unwanted) messages from AWT/Swing, such as:
{0}, ...
5
votes
1answer
108 views
Is there a clean way to retrieve the AWT event dispatch thread
I'm trying to do some monitoring of the AWT Event Dispatch Thread's (EDT) health from a separate thread. If I start missing heartbeats I want to dump the EDT stack trace. The problem is the ...
5
votes
2answers
217 views
Reserving the edge of the screen in Java
How can I make a window (such as a java.awt.Frame, javax.swing.JFrame, java.awt.Dialog, javax.swing.JDialog, etc.) reserve the edge of the screen, like a dock, taskbar, or Microsoft OneNote can? I aim ...
5
votes
1answer
148 views
Why are Points slow
I need to pass an x/y around. I was just using java.awt.Point. I do this a lot considering it's the nature of the app, but tons slower then normal arrays. I also tried to create my own "FastPoint" ...
5
votes
3answers
1k views
Java - Draw a ruler (line with tick marks at 90 degree angle)
I'm using Java AWT to draw lines on a panel (Line2D and Graphics2D.drawLine()) and I'm wondering how I can draw a line with tick marks, similar to:
|----|----|----|----|----|
I know the positions ...
5
votes
9answers
448 views
The Elegant way to handle Cyclic Event in Java?
i think this not a specific problem to me; everybody might have encountered this issue before.
To properly illustrate it, here's a simple UI:
As you can see, those two spinners are controlling a ...
5
votes
4answers
231 views
How are Swing components internally created, laid out, repainted, notified of events, …?
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:
How, ...
5
votes
7answers
4k 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 ...
4
votes
2answers
115 views
Java copying buffered Image perfomance issue
he ppl!
im writing a game. since there is not much changing over time i went over to buffering parts of the board (on which the game is played) and just copying it from time to time. I have changing ...
4
votes
2answers
138 views
Changing Border Color of AWT TextField
In AWT application I need to set border color of TextField.
In JTextField, I know that we do can do the following
JTextField tf = new JTextField();
...
4
votes
2answers
354 views
Java bitmap font: blitting 1-bit image with different colors
I'd like to implement a simple bitmap font drawing in Java AWT-based application. Application draws on a Graphics object, where I'd like to implement a simple algorithm:
1) Load a file (probably ...
4
votes
2answers
126 views
Java Event-Dispatching Thread explanation
I've recently started learning and exploring the basics of GUI programming in Java.
Having been programming for a while I have only done backend work or work and as a result the closest I've gotten ...
4
votes
2answers
165 views
MediaTracker - how to use it, what are the benefits, or is there an alterative?
In the codebase we inherited the usage of MediaTracker was always done locally in each code block.
new MediaTracker(new Canvas());
mediatracker.addImage(i, 1);
try {
mediatracker.waitForAll();
} ...
4
votes
3answers
84 views
Why does Point allow you to access x and y directly?
Both x and y and integers, while getX() and getY() returns a doubles.
Why aren't there e.g. getXIntValue(), getXDoubleValue() and vice versa for y?
4
votes
3answers
220 views
GUI in Java using Swing
I really need some guidance on how to create a GUI in Java. I'm a student in college and it's one of the the thing they never focus on. I currently have the rest of my program set up and working and ...