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

learn more… | top users | synonyms

0
votes
0answers
21 views

Remote desktop screen capturing

I'm working on a remote control program in Java and I've made everything except broadcasting the screen from the server to the client. I can't make the image sending part work normally and I've ...
1
vote
0answers
33 views

KeyPressed and KeyReleased does not work correctly

I have the following code in a game I am programming: public void keyReleased(KeyEvent e) { int key = e.getKeyCode(); if (key == KeyEvent.VK_SPACE) { doIShoot = false; } } public ...
3
votes
1answer
34 views

Concerning Using Custom Fonts [Cannot make a static reference to the non-static method]

I usually try not to ask questions that I've seen before, but this is different. I've been trying to get my custom font to work, but whenever I try to use it in a method, I get the error "Cannot make ...
1
vote
1answer
22 views

How to compute a path bounding box taking into account the Stroke

I am currently drawing a line using the code below and would like to get the bounding box around my path but if I call path.getBounds() I get a bounding box that ignore the stroke width and line join ...
2
votes
1answer
31 views

How to determine if GraphicsEnvironment exists

I have an application that needs user input for password. What i want to do is to either read the password from console (if the OS supports one e.g unix) or display a JOptionPane and ask the user to ...
0
votes
1answer
25 views

Fonts do not display correctly - Java

I have some words in English that have been translated into a couple of Indian languages (Tamil & Bengali). The task requires me to display them. An example line is given below. The first and ...
0
votes
0answers
31 views

Dot matrix fast printing

I'd like to know, what practical way of printing on EPSON Dot Matrix printers in Java. I'm having the LX300+II model to play, with USB connectivity. I searched too much on internet but all the codes ...
0
votes
2answers
27 views

Error java JFrame

I don't understand why my code isn't working, trying to print a rectangle in my JFrame, but keep ending up with an error on f.add(p);. import javax.swing.*; import java.awt.*; public class SPEL{ ...
0
votes
0answers
22 views

Print dialog box settings - pass initial values

In Java, when I call print dialog box the pages are set print from 1 to 9999. Am splitting the pages based on my JTable row number. If my table row count is less than 40 then whole printing is in 1 ...
0
votes
2answers
33 views

ClassCastException using JTable?

renbor = tabla_proveedor.getSelectedRow(); DefaultTableModel modelo = (DefaultTableModel) tabla_proveedor.getModel(); modelo.removeRow(renbor); That line of code gives me an error, it gives me... ...
0
votes
2answers
22 views

Scrolling on JList without the scrollBars

I have this JList with the custom code uses ActionMapAction. now I can use the custom up and down arrow buttom But I cant use the scroll of the mouse to scroll up and down on the jLIST. How can I ...
0
votes
2answers
25 views

Desktop TCP Streaming (java)

I want to stream desktop screen captures using sockets. I don't know the exact way to do this, so I went with AWT's robot :) Robot robot = new Robot(); BufferedImage image = ...
1
vote
0answers
52 views

Java GUI panel unable to refresh?

I have 3 panels in the frame, panel, panel1, panel2. When I click on the button it doesn't remove the panel from the frame. private class ButtonListener implements ActionListener { public void ...
-2
votes
0answers
23 views

Print in more pages [closed]

I'm printing a bill using graphics in Java. The table structure contains data from my main screen. How to add page break if it reach a4 sheet end and print the left content in next page with same ...
0
votes
0answers
26 views

Rect Collision rect.intersects(rect) does not work

Edit : Got it to work by moving the rectangle objects into the ActionListener. The problem was the the cords of the rectangle were not being updated.
0
votes
1answer
18 views

JLabel Move to Coordinate

What is the best way to make a JLabel automatically move to a coordinate location? Is there a predefined method for such task? Example: instead of label.setLocation(x + 1, y + 1); (re-run to move) ...
-1
votes
0answers
17 views

Cut off when changing labels in AWT

Whenever I make a modification to a label, only about the first 2 and a half characters show up, and then I have to resize the window for the whole thing to properly show up. Is it something wrong ...
1
vote
2answers
29 views

KeyListener - Ignore Key Released When Holding Down (Ubuntu, …)

I have a game where you can attack. When the SPACE-key is pressed, the weapon moves down, and when it's released it should move up. The problem is that on (certain) UNIX systems, the KeyReleased ...
0
votes
1answer
19 views

How can I put some code that makes a sound in an applet?

I'm making a clock applet, and I'm almost done, but there's still one thing I need to do. I want to make the clock "tick" every time the second hand moves, but I can't figure out where to put the code ...
0
votes
2answers
50 views

Game Of Life Java MouseAdapter doesn't always work

Sometimes the mousePressed event gets executed , but at other times it won't. It also seems to depend on the time you press it. How do I get it to ALWAYS work? I'm not sure which part of the code is ...
0
votes
0answers
27 views

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 2 points and the program must calculate the width and height and make Rectangle between those exact two ...
0
votes
1answer
16 views

Is it valid to instantiate windowListener interface?

WindowListener is an interface? But how instantiation is valid as per the following? We can not instantiate interface right? WindowListener l1=new WindowListener() { public void ...
0
votes
1answer
21 views

Reset/restart my minigame using KeyAdapter with Thread on a JApplet

I can't seem to get my game to reset. What I want to happen is once the numLives gets to 0 message should display: press R to Restart I added what I thought was a KeyListener for 'r' and it ...
0
votes
0answers
22 views

Why won't my avatar move.

This is the code. The box will not move even if I click a directional key. So, I want to know what's going on. Can you help me? Thanks in advance! import java.awt.*; import javax.swing.*; ...
-2
votes
0answers
24 views

Learning about keyListener in Java

I'm a kid that is trying to learn how to program in java and I recently started learning about JFrame and the GUI at my school. On my own, I learned about something called a KeyListener. In my ...
-2
votes
1answer
22 views

draw ellipse2d around mouse click java [closed]

I am making a program that draws ellipses when the user clicks the screen. Currently when the ellipse is drawn the origin is (0,0) so it is being drawn from the top right. I want it to be drawn around ...
0
votes
1answer
59 views

Keeping a MouseListener always running

I have this constructor: public Board(final boolean[][] board) { this.board = board; height = board.length; width = board[0].length; setBackground(Color.black); button1 = new ...
0
votes
1answer
24 views

Cannot get Java Print API to use fonts after exporting to JAR

I am writing a Java application with the ability to print formatted views of the data using the Java Printing API. Below is a brief relevant snippet of my code that does the printing: public static ...
-5
votes
1answer
42 views

java use methods automatically? [closed]

In the oracle site I found a class to load an image. I tried to run it but the things that I don't understand is how the methods Paint and GetPreferredSize are launched without been call. This is the ...
-3
votes
0answers
17 views

Needing to generate tiles for top down, tiles not drawing in paint [closed]

import java.awt.*; import java.applet.*; import java.util.*; import java.awt.Image; import java.awt.Graphics; import java.io.*; import javax.imageio.*; public class Sandbox extends Applet { ...
0
votes
2answers
27 views

Checking if window has keyboard focus again

Preface I'm designing an application which will at one stage have it's keyboard focus taken away and redirected to another application. The application in question is Google-Chrome. At this stage ...
0
votes
0answers
28 views

Java painting in resolution

I'm trying to understand the resolution concept of painting with Graphis2d. Java tells us that every 72 pixels will equal 1 inch when printed. My question is, how dose resolution factor in. If I ...
1
vote
3answers
43 views

How to create a Graphics2D instance?

What's the easiest way in Java SE 7 to obtain an instance just to plot a few points for debugging? Desktop environment.
0
votes
2answers
34 views

Rotating graphics

I am trying to make a bullet class. When it is called it will get a direction and an initial position. The problem is the direction is not working it only goes up no matter what I set as the ...
0
votes
2answers
33 views

Problems with GridBagLayout

I cant transfer any of the relatet posts to my simple problem. In order to get into GridBagLayout i wrote a simple example: JFrame frame = new JFrame(); JPanel main =new JPanel(); ...
0
votes
1answer
34 views

How to bring Swing window offscreen?

I work on a Java Swing application that allows displaying frames scattered on multiple screens. The problem is, when in dual screen, a frame can be saved in secondary monitor 2 but when the ...
0
votes
1answer
53 views

Repainting/Revalidating JPanel wont work

I am unclear on how to repaint a JPanel in my existing code. I also dont understand how paintComponent is being called. Firstly, I would simply like to clear the JPanel but I cannot even do that. I ...
0
votes
1answer
22 views

Dealing with a DragGestureRecognizer when it is no longer needed

How do I deal with a DragGestureRecognizer when it is no longer needed? I'm using DragSource.getDefaultDragSource().createDefaultDragGestureRecognizer() to make sure that a custom DragGestureListener ...
0
votes
0answers
31 views

Collision between two images with transparency

I'm writing a game from scratch in Java and I need to detect a collision between two images that are irregularly shaped and have some transparent pixels. I'm already able to detect a collision ...
-1
votes
1answer
28 views

Stop flickering/repainting

So I have an java.applet.Applet that is embedded into a JFrame. The applet uses a java.awt.Canvas for drawing. The code would be quite a lot for me to post and there is no "Small" examples but here is ...
1
vote
1answer
30 views

Java AWT/Swing : paintComponent issue with custom JPanel(s)

Ok, so basically, what I have so far: A main class that creates a custom JFrame (ApplicationWindow). An ApplicationWindow class that extends JFrame and acts as the window. A MapDisplayPanel class ...
0
votes
0answers
32 views

Create FormLayout rows and columns dynamically (at runtime)

Hello guys and ladies, as I let the Eclipse WindowBuilder create me a JPanel with a FormLayout, I wanted to make this creation to be dynamical, because the program I'm writing needs it that way in ...
-4
votes
0answers
21 views

Create object of class `Image` containing a string [closed]

Is there a possibility of creating an object of class Image containing a string, the same which would be drawn when invoke g.drawString(...)? How to do it?
0
votes
0answers
33 views

Adding Button in North Layout area Broke my Iconified action?

I come today with a strange issue. I added an KeyListener to Iconify my JFrame by pressing the "Windows key", but when I add a component in the North area of my Layout I can't Iconify my app anymore. ...
-1
votes
1answer
29 views

Add a scrollbar/scrollpane to frame in AWT

Hi I'm a final year engineering student, and though I have learnt java, my knowledge in its application is rudimentary. However, I have to use java for my project. This is the front end code which ...
-1
votes
1answer
22 views

Adding handler to button presses

I have many GUI forms with many buttons on each GUI form. I am wanting to detect when a user clicks on any of these buttons. My question is this: Should I add code individually to each button, or can ...
0
votes
0answers
26 views

Changing cursor outside application

I was wondering, is it possible to change mouse cursor image outside my Java application window? I already found out how to make custom cursor images, and how to change it on components, but in my ...
-1
votes
1answer
29 views

Getting the error “ Cannot find symbol ” on getdocumentBase()

Despite I import the applet library, NetBeans cannot recognize and use getDocumentBase() in my code, I have my html file within my project and all other required files as well, here is a part of my ...
-2
votes
0answers
36 views

changing the position of a label [duplicate]

I have this code in java, it is in an event of a button. It tryes to change the position of a label but it does not work, it simply does not change the position. label1.setLocation(222, 22); ...
0
votes
3answers
48 views

Add labels to panel on button click

I have this code in Java in a button event, I add labels in a panel, the problem is that when i try to access a property like the X location of an element of my array of JLabels it gives me a ...

1 2 3 4 5 46