Top "Awt" questions

The Abstract Window Toolkit (AWT) is Java's original platform-independent windowing, graphics, and user-interface widget toolkit.

How can I draw a rectangle towards the top of the application in java

How can I draw a rectangle towards the top of the application in java ? Normally the drawRect method draws towards …

java swing awt graphics2d
Disable group of radio buttons

I have a group of radio buttons defined as 'ButtonGroup bg1;' using 'javax.swing.ButtonGroup' package. I would like …

java swing awt jradiobutton buttongroup
awt window not closing when close button is clicked

I implemented a sample class for a Virtual KeyBoard and ran this VirtualKeyboardTest.The keyboard appears but the main problem …

java awt frame windowlistener
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 …

java memory image awt
Java can't see all installed fonts in system

I have listed all available fonts in system by calling GraphicsEnvironment graphicsEnvironment = GraphicsEnvironment.getLocalGraphicsEnvironment(); Font[] fontNames = graphicsEnvironment.getAllFonts(); for (Font …

java fonts awt birt
Collision detection with complex shapes

I am wanting to make a game that has each level loaded from an image. I want to draw up …

java image awt collision java-2d
java.awt.Component.dispatchEvent()'s purpose and behavior

Most of the tutorials and documentation that I've been reading seem to indicate that most component communication takes place by …

java swing components awt dispatchevent
Show HTML file in JEditorPane

I am working on a Swing application in which I have to show HTML files. I am using JEditorPane control …

java html swing awt jeditorpane
creating a rectangle from 2 specific points

I am trying to create a rectangle in Java but only with awt package classes. I can only click two …

java awt java-2d shapes
Need a way to scale a font to fit a rectangle

I just wrote some code to scale a font to fit within (the length of) a rectangle. It starts at 18 …

java graphics fonts awt