Tagged Questions
The paintcomponent tag has no wiki summary.
4
votes
1answer
62 views
why isn't the panel painted?
CODE
import javax.swing.*;
import java.awt.*;
class tester {
public static void main(String args[]) {
JFrame fr = new JFrame();
JPanel p = new JPanel();
p.setBackground(Color.RED);
...
4
votes
2answers
167 views
Swing - paintComponent method not being called
i simply implemented class that inherits JPanel like below
public class Orpanel extends JPanel {
....
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
...
4
votes
2answers
90 views
Odd graphical bug: a copy of component A is painted on component B. HELP! (java)
I have made a simple paint program in which you can use a brush-tool to paint some different colors and erase (simply paint in white).
It works fine, but I have a very strange graphical bug which ...
4
votes
3answers
429 views
how can i put a JButton on an image?
I am trying to fix a JFrame where there will be a background image and on the image JButtons which will do some commands. I try to do it without layout because i want to put small buttons in some ...
3
votes
5answers
62 views
Painting over the top of components in Swing?
I have a JPanel added to a JViewport, and the panel has several other panels added to it. I'm trying to implement a dragging selection, where you can select more than one component by dragging the ...
3
votes
2answers
55 views
paintComponent deletes the previously painted components
I am writing a simple painting program.
I have created a JPanel, and have over written "public void paintComponent(Graphics g)", I have also created the appropriate Listeners. The problem is that ...
3
votes
1answer
67 views
How to create a rectangle in a rectangle?
In my paintComponent, I have drawRect, which draws a single rectangle. However, I want to make the outline of the rectangle thicker but I don't know how. So I thought of making another rectangle ...
3
votes
2answers
151 views
Adding image to JPanel through ImageIO.read?
I'm trying to add a JPanel with a picture in it. I'm using ImageIO.read to get the path but i get an IOException saying : can't read input file
The picture is called TCHLogo. It's a PNG inside a ...
3
votes
2answers
66 views
How to make a rectangle in Graphics in a transparent colour?
I'm trying to paint a rectangle on my application in a red shade but I need to make it sort of transparent so that the component under it will still show. However I still want that some colour will ...
3
votes
4answers
162 views
How to move the image inside the JApplet in vertical line?
I have displayed an image(ball) inside the JApplet, now I want the image to move in a vertical way (up and down). The problem is I don't know how to do it.
Could someone has an idea about this ...
3
votes
2answers
100 views
How to do not repaint JFrame? Just paint
I need help with simple program. I would like, when I click program marks it. I would like to see my moves did in past. Like pencil in paint.
class Test.java
import java.awt.*;
import ...
3
votes
1answer
168 views
Circles disappear when maximizing, minimizing or resizing my JFrame.
This is my code:
JFrame frame = new JFrame();
frame.setSize(400, 400);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
final JPanel panel1 = new JPanel(){
@Override
...
3
votes
1answer
68 views
List for holding data
i receive float data from the network every 400 ms that i put in 4 arrays of float. I store those arrays in another array, so i have :
float[][] datas = {data1, data2, data3, data4};
FloatData ...
3
votes
2answers
150 views
Java drawing between JPanels
I have to following situation:
A JPanel is used a "drawing board" where the user can add blocks that have specific connection points which can be used to interconnect to other blocks (think Simulink ...
3
votes
3answers
122 views
Painting line over JPanel without repainting it
I would like to have a vertical line drawn over a JPanel, and make it glide over it, without this process invoking the paintComponent() of the JPanel. I have thought of using the GlassPane but I don't ...
2
votes
1answer
55 views
swing step-type cursor moving
I have java swing chess application. Cursor has custom view - rectangle, sized to fit whole cell. And I need cursor moving only over whole cell. Not in the limits of one cell. Is there some typical ...
2
votes
2answers
79 views
Intercepting or delegating events with overlapping components
I have two JPanels equal in size, one over the top of the other. The top layer serves as a drag selection panel, and the other one has other components added to it. My problem is that the mouse event ...
2
votes
2answers
39 views
Drawing a dynamic graph.
By saying dynamic graph i mean that the user can drag Vertices around the screen and later remove and more.
I am stuck at this point where i want to paint more then one Vertex, and am trying to avoid ...
2
votes
2answers
46 views
Strange display issue with JFrame
In the following simple code I simply create a Frame, and add a JPanel and menubar to it.
public class MainFrame extends JFrame {
private DrawPanel drawPanel;
public MainFrame()
{
...
2
votes
2answers
42 views
Drawing inside multiple JPanels
I have three JPanels inside a main Frame. Clockwise from the left, in the first panel I plan to have some controls which dictate the drawing on the panel 2. The third bottom panel will show some ...
2
votes
2answers
42 views
Java Graphics Will Not Display
Here is my code:
package survival;
import javax.swing.*;
import java.awt.*;
public class Survival extends JFrame {
private static int applicationWidth = 1400;
private static int ...
2
votes
1answer
125 views
Stretch a JLabel text
Is there a way to make a JLabel's text stretch to 100% height? I need the text to update when the component's size changes as well.
I saw some solution that could work; It involved calculating and ...
2
votes
1answer
65 views
How to make a shape appear on top of an image when mouse is clicked?
I'm aiming for the appearance of a rectangle when the mouse is clicked.
Here's a snippet of my current code:
try{
image = ImageIO.read(file);
g.setColor(new ...
2
votes
2answers
61 views
Java Swing, can't see the error
I am at a very strange problem, I have a customized JPanel, which I want to draw a circle, but nothing happens ... here is my source, hope somebody sees the mistake, I can't find it.
import ...
2
votes
2answers
50 views
JComponent size issue
I have a JComponent subclass that I am using to draw shapes onto my screen. In the constructor, I am trying to set ballX and ballY to half of the X and Y size values of the JComponent, and I think I ...
2
votes
1answer
110 views
setting BorderLayout and having paintComponent() called
My problem : I have a RoundedPanel class that extends JPanel and overrides paintComponent() method in order to draw rounded corners around the panel. I created a MyPanel class that extends ...
2
votes
3answers
108 views
Setting up a JPanel in a JFrame?
So, I've been working to redo my code so that the painting is all done in a JPanel instead of a JFrame so I can do some very much needed image buffering.
I've scoured StackOverflow and I've googled ...
2
votes
1answer
83 views
Newly created graphics object only showing after resize of frame
This is a continuation from this post
I have a set of random sized graphics adding and drawing onto a JPanel component. I have a button that is adding a new draw object to the same JPanel but is not ...
2
votes
1answer
81 views
tooltip text erases panel drawing in java
Having a JPanel on which some drawing is performed using paintComponent method and after that when ever a user clicks on the JPanel a string is drawn (or any drawing) on it and as the user moves mouse ...
2
votes
2answers
72 views
Is it acceptable to make a graph this way for JPanel?
I need to graph some statistical data inside of someone's class which extends a JPanel. Right now the plan is to use paintComponent and the Graphics class as follows:
public void ...
2
votes
2answers
200 views
Issue with JTextPane with background image and clipping rectangle
I have a problem with Swing that I just don't find the reason for. I have a JTextPane that has been extended to show a background image. This can be either a raster image (shown via the Standard Java ...
2
votes
2answers
108 views
paintComponent question
What purpose does super.paintComponent(g) serve in this sample code?
protected void paintComponent(Graphics g) {
super.paintComponent(g);
g.setColor(Color.GRAY);
g.fillRect(gridX * 50, ...
2
votes
1answer
201 views
what is different between paintcomponent() and paintcomponents()?
I want to know what is different between paintcomponent() and paintcomponents()?
when i use from paintcomponent it shows every thing that we want,but paintcomponents didn't do any thing!
2
votes
2answers
91 views
How to find variable g in this code?
How to find variable g in this code? I would like to draw line using fillRect from paintComponent.
Please help.
import java.awt.*;
import java.lang.String.*;
import java.util.Scanner;
import ...
2
votes
4answers
139 views
non-static method from static context
Why I cannot reffer? Do You know how to fix it? I would like to draw line by DDA algorithm.
Please help.
import java.awt.*;
import java.awt.event.*;
import java.lang.String.*;
import ...
2
votes
1answer
147 views
paint on a container being added to jcomponent
i have a jrame on which i add some JComponent objects.
Each JComponent has a list of containers i add by using JComponent.add( Component).
Now in my main JComponent class, called MyComponent, i ...
2
votes
1answer
245 views
paintComponent() leaving behind previously drawn images after repaint()
I have a JPanel which draws .png images. each image has 2 copies to signify whether or not it has been selected. One image is normal and one has a colored border to signify the selection has been ...
2
votes
3answers
10k views
How to draw a circle in java with a radius and points around the edge
I'm really stuck on how to go about programming this. I need to draw a circle within a JFrame with a radius and points around the circumference. i can mathematically calculate how to find the ...
1
vote
1answer
19 views
Repaint and paintComponent() in Java
I am reading data continuously from a sensor and want to plot chart using that data. I already create that chart, however, system draws that chart for only the first reading, doesn't change the plot ...
1
vote
2answers
48 views
Path for image loading
I want to add an image to a frame but I am not able to understand where I should keep the image file and how should I give the path of the image?
I have placed an image in My Document folder and ...
1
vote
1answer
39 views
Java 2D: Why won't my JPanel let me resize it?
Ok so I am trying to add a JPanel to a JFrame as so:
gameClasses[2] = new a2();
gameClasses[2].setSize(100, 100);
menu.add(gameClasses[2]);
...
1
vote
1answer
37 views
How to pass an array to a paint component class?
I have another beginner's question that hopefully someone can help with.
I'm trying to pass an array from one class to another in order to use it to produce a bar graph. I know I can pass an array as ...
1
vote
1answer
35 views
Image not loading in frame
SO these aer the two different files that Im using:
public class TestFunc {
static BufferedImage img;
public static void main(String[] args){
JFrame frame = new ...
1
vote
1answer
40 views
DrawRect in a JPanel not Showing
I am trying to create a simple game wherein a box(alien) is going on each row(left to right / right to left) then going downward and in a mouse click there will be a ball(fire) and when the box and ...
1
vote
2answers
89 views
How do I make a rectangle move in an image?
Basically I have an image loaded, and when I click a portion of the image, a rectangle (with no fill) shows up. If I click another part of the image again, that rectangle will show up once more. With ...
1
vote
3answers
59 views
Drawing on a java panel - Nothing is appearing
I am trying to draw onto a panel which sits in an applet. I have 5 panels and have coloured the backgrounds just so that i can see where they are. I am trying to draw basic ellipses as a test but the ...
1
vote
1answer
75 views
Java PaintComponent size and position in a subclass of an abstract class that extends Jpanel
I'm building a simple chess game and am stuck on trying to paint drawings on a Panel
I have a board ready and on the board there are panels. those panels are 70x70px and next thing i want to do is ...
1
vote
3answers
54 views
Java graphics trouble
I have a JComponent with a listener on it. On the JComponent, I draw a big image and the mouse listener adds small images where clicks occur (one big map on which I add some dots).
How can I ...
1
vote
2answers
67 views
Simple custom Swing JComponent always flat
I'm just playing with Swing and I'm working on a really simple Swing component. I have a component inherited from JComponent class and its UI inherited from ComponentUI. The paint() method looks like ...
1
vote
3answers
139 views
Painting pixels images in Java
Which method is the best way to create a pixel image with java.
Say, I want to create a pixel image with the dimensions 200x200 which are 40.000 pixels in total. How can I create a pixel from a random ...