1
vote
1answer
86 views

How can I fix this code bug? [closed]

I am trying to make an image editing application in Java using the MVC design pattern. So, event handling is in a controller, state and operations relevant to the state are stored in models, and ...
1
vote
2answers
42 views

Java - JPanel with background image AND normal functionality

I've been looking around and working on making a JPanel able to have an image background. I know there is a ton of information reguarding this ( example 1 and example 2 ). Neither of these are exactly ...
0
votes
1answer
29 views

Where should I put these fields in the MVC model?

Let's say I have three classes: JPSModel, JPSView extends JPanel, and JPSController. JPSView overrides paintComponent(), which draws an image at a certain zoomFactor at position (renderPositionX, ...
1
vote
2answers
72 views

passing data between JPanels

I'm making Tetris in Java and would like to have the game play on the left and scoring, buttons, and nextPiece on the right, like so: You'll notice that the score on the Game Panel is updating, but ...
1
vote
5answers
70 views

Reference of graphics 2d object doesn't work in orphan Thread

I am trying to design a simple game using Graphics2D in a JPanel. I am able to draw normal objects by overriding the paintComponent() method. But when I reference the Graphics2D object inside a orphan ...
0
votes
1answer
43 views

Does g.drawImage() render only the part of the image visible on a JPanel, or does it “keep in mind” the rest of the image?

Let's say we have the following code: (in a class that extends JPanel): public void paintComponent(Graphics g) { g.drawImage(image, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, null); } If dx1 and ...
1
vote
1answer
32 views

Load an image into a JPanel in an applet

base on this thread :Java: Load image from file, edit and add to JPanel i tried to load na image into a JPanel but its not painting it,so here s the deal, as suggested i have created a new class file ...
1
vote
1answer
105 views

Paint Component not working outside of Eclipse

I really don't understand this. When I run my program in Eclipse, it looks perfectly fine. It appears below: Chemistry program when run from Eclipse (note that I dragged something over to cover up ...
0
votes
2answers
57 views

Why do getWidth() and getHeight() return 0 before paintComponent() is called?

I have a GUI that displays an image on a JPanel in paintComponent() with g.drawImage(). I wrote a subclass of JPanel called CanvasPanelView to override paintComponent() and do a few other things, like ...
1
vote
1answer
33 views

Java Program Not Drawing Vertical Grid

So I have the following code (sorry if its messy), and when the I press the button "Show Vertical Grid" It doesn't want to switch the vertical grid on. Can anybody fix this please? Im all out of ...
0
votes
1answer
45 views

I need to set a background image for a java DesktopApplication

I didn't know how, and there is no background image property. I researched the answer but all I could find was to set a labels icon inside a panel with a null layout. This worked and my image is ...
0
votes
1answer
50 views

Buffered Keyboard Input

I am trying to write a 2d graphical game. In this game I have keyboard inputs to move a square block on a black plane. I order to ensure smooth key motions I want to use Buffered key input. In order ...
0
votes
2answers
63 views

Java painter program drawing shapes

I have a problem in this java code. I want to make a painter program but whenever I choose a shape and draw it all the shapes that were drawn before become the same as this shape. Here's the code. I ...
-4
votes
1answer
49 views

scroll JPanel when there is only background image

I have Swing frame. and JPanel on the frame. I have only background image on Jpanel. everything works well. but when background image is too large, I don't manage to scroll it. import ...
1
vote
3answers
55 views

Can't draw anything on my JPanel

Just trying to understand simple Java things. Cant'get this thing to work. Warning : lots of bad code incoming. import java.awt.*; import java.lang.*; import java.util.*; import java.io.*; import ...
1
vote
1answer
32 views

How to use paintComponent() without calling multiple “draw()” methods?

I'm new to java and I'm trying to create a "game". In my game I have the paintComponent method within my main class: public void paintComponent(Graphics g) { super.paintComponent(g); ...
-4
votes
1answer
68 views

Drawing lines in Java

Alright, so I am having a problem writing this program. I have the first part done but I don't know how to finish it. I've tried different solutions and everything, but yet I still have no clue. Here ...
0
votes
1answer
36 views

Polygon shape does not show up in Java

I'm trying to make some shapes with Java, I created two rectangles and they show up normally, but lately I integrated a polygon shape code but it not showing up while running the program. Somebody ...
-1
votes
0answers
41 views

How to add functions to java menu? [duplicate]

I created a java menu but I trying to integrate some functions. Here a screenshot of the menu: We have here the frame contain two rectangles and text. I want to start the program with a blank ...
1
vote
2answers
65 views

How to make star shape in Java?

I'm trying to make some shapes with java. I created two rectangles with two different colors but I want to create a star shape and I can't find useful source to help me doing this. Here is my code: ...
0
votes
2answers
33 views

How to add JPanel Components on top of a painted background

I want to be able to change one of my JPanel background to a image I created and still add components on top of it, however they are not showing up. package userInterface; import javax.swing.*; ...
0
votes
2answers
93 views

Drawing Sierpinski Triangle fractal - Java

My program runs and successfully draws the Sierpinski Triangle. However, it only appears for a short while and then disappears. Why is this? Here's my program (2 classes). This is fully compilable ...
-1
votes
1answer
123 views

Drawing Line, Arc etc. Anywhere in the Code Java

I am kind of newbie in Java and in my program, I have to draw some lines, arcs etc. in a function different from paintComponent() in some cases in a class that extends JPanel. I generally work with ...
1
vote
2answers
36 views

creating a JDialog with multiple, selectable image items

I'm attempting to create a JDialog frame that will have a background image and an interactive JPanel above that. In this context, the JDialog would represent a 'combat' field where units would be ...
0
votes
1answer
72 views

Trying to draw lines with JPanel

I am trying to draw lines using JPanel and I have hit somewhat of a wall. I can get two sides down but once it comes to subtracting from the x cord it all goes wrong. package GUIstuff; import ...
0
votes
0answers
27 views

Java JPanels graphics [duplicate]

If I have many JPanels, how would I chose to draw on just one of them? I am trying to draw on my drawingPanel for random circles but that isnt working? I am having trouble getting my code to read my ...
1
vote
1answer
60 views

Any solution for a Null Pointer Exception Error resulting from Java paintComponent() referencing a separate class?

I've not been coding for very long, but this is the most peculiar error that I've seen thus far. Now I know that it says Null Pointer Exception error, which this is, but its a specific one that I ...
0
votes
1answer
64 views

How to combine paintComponent(Graphics g) with MouseListener and MouseMotionListener

So, I'm trying to combine the use of paintComponent() as well as the use of MouseListener and MouseActionListener, but i get a lot of errors when I run it, and it does not work liek i want it. In this ...
0
votes
1answer
47 views

MouseEvent causing mouvement

we are trying to make a mini golf game. The problem is we have to link a direction and velocity to a Line So the main problem would be to link the clicking of the mouse to an position and also to ...
2
votes
1answer
122 views

Displaying rotating fan on applet

As part of my programming assignment, I have to display a rotating fan in an applet. Here is my code (class to display the fan): import javax.swing.*; import java.awt.*; public class Fan extends ...
0
votes
0answers
90 views

How do I get paintComponent(Graphics g) to call? repaint() won't work every time

The following in a Java SE6 program that is a tic tac toe game: I have a class MiniPanel that extends JPanel that I have in a grid. If the user clicks one of these, a listener does some stuff then... ...
0
votes
0answers
51 views

Create rectangle from user input

I have a program which so far takes a user input, puts it into an array and prints into a TextArea. However, I also need it to create a bar chart like set up, where the user will input "1" in the day ...
2
votes
2answers
117 views

Drawing an object using getGraphics() without extending JFrame

How can I draw an object without a class (which extends JFrame)? I found getGraphics method but it doesnt draw the object. import javax.swing.*; import java.awt.*; public class Main { public ...
1
vote
1answer
44 views

Components on the JPanel doest show

I created a JPanel and i modify it a bit. I change it's background to gradient color here is the class. public class JGradientPanel extends JPanel { private static final int N = 32; private ...
1
vote
1answer
61 views

Implications of setVisible() method in Swing

I'm writing a program that uses a few components in a GUI. However, I don't need all of them showing at the same time. In addition, depending on the user's input, there may be times once a component ...
0
votes
0answers
36 views

Having trouble with the paintingComponent in Java

New to Java. Doing a project which requires me to display my Actors on a stage using the JFrame. Still really new to this so i'm not really sure what i'm doing. I know you can't directly paint ...
0
votes
1answer
109 views

Backgroundproblem in Swing, without Netbeans

I am a total Beginner and while I had most of the Application right away. I can t make a background picture for my swing gui. I ve read that you should do it with the overriding the paint methode, ...
2
votes
5answers
95 views

Painting to objects on top of each other

I am trying to paint one Oval over another oval. Here i use a select statement to draw in the paint component method. import java.awt.*; public class test extends JPanel{ public static final int ...
-1
votes
1answer
73 views

paintComponent generates too many rectangles

I've got a problem with paintComponent. I use "while" loop to draw rectangles. Every next rectangle should be smaller and rotated. And it works. But paintComponent executes twice, not once as I ...
0
votes
2answers
98 views

Painting JPanel/JComponent

Hello I have a problem with painting a picture on a panel and adding it on frame. import java.awt.Graphics; import java.awt.Image; import java.util.Random; import javax.swing.JComponent; import ...
2
votes
1answer
58 views

Repaint() between different classes does not update

I'm trying to make a simple word processor where there is a ControlPanel on the top of the JFrame and a TextPanel in the center with a JTextArea component. A basic overview of my program is that there ...
2
votes
1answer
42 views

painting a particular button from a grid of buttons

The following grid of buttons is defined as : JButton button_x = new RoundButton(); where RoundButton is defined as : public class RoundButton extends JButton { public RoundButton(String ...
2
votes
1answer
103 views

Components disappear after resizing JPanel

I am trying to create JPanel with draggable crosses which appear after mouse clicking. Everything works fine but when I resize the JPanel the crosses disappear. I tried to override the paintComponent ...
1
vote
1answer
87 views

JFrame components being able to call paintComponent through repaint, although using flowlayout

I have a JFrame in FlowLayout with multiple JLabels added to it, but when I call repaint on the JLabels, their paintComponent is not being called. If I remove the FlowLayout, only the last JLabel ...
1
vote
1answer
36 views

Why am I getting an error as I try to call paintComponent?

My class named UI extends RoundButton which is as follows : public class RoundButton extends JButton { public RoundButton(String label) { super(label); ...
0
votes
2answers
67 views

Draw new graphics components (ie circles) when event happens

Im working on a very simple program. What I want to do is have a new circle added when firstButton is pressed (program is currently as it is after making sure I had events working right). I know I ...
1
vote
2answers
51 views

Why does the Java Ellipse2D when drawn small, turn out as a rectangle?

I think I'll just start with the code that's giving me the problem. class AnimationPanel extends JPanel { OfficeLoad load; Timer timer = new Timer(); private static final long ...
0
votes
1answer
34 views

Issue painting BufferedImage

I'm working on a program that will read a folder of images into a JList, and the picture that is selected in the JList will be drawn into a JPanel. I have two classes: ImageViewerPanel, which creates ...
0
votes
0answers
70 views

JFrame not drawing

I'm making a pong game with a JFrame but it's not drawing. package src; import java.awt.Color; import java.awt.Graphics; import javax.swing.*; public class Pong_Game extends JFrame{ public void ...
0
votes
1answer
106 views

Adding JInternalFrame to fsem frame

I am trying to add a jinternal frame to a frame that is in full screen exclusive mode. However when i add it it fills up the whole screen with white. Here is my code. JFrame f = new JFrame(); ...

1 2 3 4 5 9