Tagged Questions
1
vote
2answers
39 views
Jpanel repaint with mouse movement event
Ok here is the thing I am making a function grapher and I want when you move your mouse over a line it will show the coordinates. So I set up just a basic drawstring on the panel to show the mouse ...
3
votes
1answer
36 views
My Swing GUI does not update. Why?
So, I am making a GUI in which the user has the ability to add or remove panels. To simulate that, I made a TimerTask which takes the name of the target JPanel and the parent which contains the ...
0
votes
1answer
28 views
JAVA cannot see added components to panel
Task: Delete several controls from panel, then add new ones.
Problem: after completing several methods, old controls disappear, but I cannot see new ones.
code:
public void StartGame() {
...
0
votes
3answers
56 views
Java: Add panel to existing panel after runtime
Im trying to add a NEW card to an existing JPanel(cardLayout) with the click of JButton and then goto that new card but i get Null exception as the new card is not registering.
Ive tried searching ...
0
votes
0answers
27 views
JPanel not drawing after mouseclick
I have a very weird problem. Right after starting my java application i run the function "runprogram", what asks the user for a value with a dialog and handles that return of the user, and let an ...
0
votes
0answers
15 views
Some problems caused of painting on jpanel which is situated on another jpanel
I have a frame, in which I've located an object which extends JPanel, on which I've organised the animation using a Image [] and MediaTracker.
This object LiquidAnimation has a paint() method and ...
0
votes
1answer
36 views
Repainting not updating?
As of now, I am trying to work to create a JAVA version of uno that my teacher calls "Singles". Currently, I'm simply trying to get a working deck in which I can remove cards.
My issue currently, ...
0
votes
2answers
68 views
Repaint() not called
I'm developing a game for a school project, a Bomberman-like game.
I'm using swing and I was using Canvas to draw my graphics but the KeyListener was not working, so I quitted using Canvas and ...
-1
votes
2answers
75 views
repaint one part of JPanel
I need to paint google and yahoo access time in x-y axis coordinate System. Now I have drawn x-y axis coordinate system.
public void paintComponent(Graphics gl) {
Graphics2D g = (Graphics2D) ...
0
votes
2answers
40 views
repaint query in JPanel
I am an inexperienced (unless you count PDP-8s in the early '70s) programmer struggling with the repaint method in the enclosed Class.
The Class is intended to display an aviation map of the local ...
1
vote
1answer
36 views
Java window won't update without re-sizing the the application window
I'm trying to make the integer near "time left" to decrements by one and repaint every second but I can only see the changes when I resize the window constantly. I've tried this in Jcreator 3 in ...
0
votes
1answer
148 views
How to Refresh/Reload Image inside JPanel
I need to reload the JPanel's background image, when data submitted to Database.
I create JPanel that populate image from Database. And when i updated the image, and submit it, the background ...
1
vote
1answer
43 views
Does invoking the drawRect method on a Graphics2D trigger the paintComponent method?
I'm trying to figure out the behavior of my program, and that is my best theory as to why its doing what its doing. I was hoping this would use the rand variable to decide which shape to paint, but ...
0
votes
1answer
94 views
Drawing on a JPanel without repainting background
I have an algorithm that displays pretty fractals on a JPanel. I want to be able to show gridline 'crosshairs' on the fractal panel whenever a user hovers his mouse on the panel.
I have achieved this ...
1
vote
1answer
52 views
JPanel not being paint in JFrame
I'm fairly new to java and decided to make a 2D game. I am trying paint the panel but it simply doesn't work. I have done the same type of thing with JFrames and it worked, but if possible I would ...
0
votes
1answer
306 views
JPanel not displaying in JFrame after paint is called
I am currently imlementing a simple GUI interface to interact with a Lego Mindstorm NXT.
My current issue resides with a paint issue on my interface.
When my MainUI loads it calls a method called ...
0
votes
2answers
58 views
automatically redraw from JPanel in other JPanel
I draw two directed graphs in two different JPanels and when i click the button compile (RUN - COMPILARE) i need those graphs to repaint in one JPanel, any suggestions, tips, tutorials for that. I've ...
0
votes
2answers
372 views
How to update java canvas dynamically?
Problem: I am trying to update the canvas with new painting objects based on user action. The canvas dosent get updated.
What i have done: The user interacts with the DnD action,The transferrable ...
0
votes
0answers
35 views
How to draw a very big BufferedImage on a fixed size JPanel?
I add a jpanel on a JFrame. And I implement the jpanel like this.
class MyPanel extends JPanel
{
private BufferedImage image;
public MyPanel(BufferedImage img)
{
this.image = img;
}
...
2
votes
1answer
203 views
Repainting JPanels (or JFrames?) after user input?
I'm currently programming a Calendar in Java. The Calendar itself fills out perfectly fine with the Month and Year being displayed in JComboBoxes above the grid below it. The Grid itself is full of ...
1
vote
1answer
192 views
Visual Artifacts appearing on JPanel
I am trying to create a program with 2 JPanel using BorderLayout. The center panel is for random drawing of rectangle while the south panel is for the buttons.
I am getting a weird image of the ...
1
vote
1answer
100 views
How do I make a panel repaint in Java?
So I have a specialized frame class and a specialized panel class. I have a keylistener setup to listen for key presses of the "right" key (->)and then I call repaint but nothing happens when I press ...
1
vote
1answer
604 views
Repaint() not calling paint() in Java
Let me start off by saying I know I've violated some basic Java principles in this messy code, but I'm desperately trying to finish a program by Tuesday for a social science experiment, and I don't ...
2
votes
1answer
91 views
How do I update a custom JPanel? [closed]
If I call the repaint() function on my custom JPanel, my understanding is that it re executes paintComponent(Graphics g) correct? or do it recreate the whole JPanel? Thanks in advance for any help.
0
votes
1answer
292 views
Java JPanel not painting
I'm having this rather strange issue - upon a button click, the program initializes a new JPanel object and attempts to paint it right away. After repaint(), it will open up a socket to a server and ...
4
votes
1answer
355 views
Program not accessing method paintComponent() of extended JPanel class
This is the JFrame
package client.connection;
import java.awt.Dimension;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import javax.swing.JFrame;
class ...
5
votes
1answer
113 views
JButton copied when repainting?
I have a JFrame with 2 JPanel in it: a PaintPanel (with a paint() method) and a ButtonPanel (with buttons). When I invoke the repaint() of the PaintPanel (but clicking the button) the button of the ...
-2
votes
1answer
111 views
Don't understand why reapainting is so slow [closed]
EDIT:
I DO the same thing here but problem does not occur.
import java.awt.Color;
import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.event.KeyEvent;
import ...
2
votes
1answer
335 views
Overriden paint() function in JPanel subclass never called?
I'm having a problem overriding the paint() method in my JPanel subclass, ChordEditor. Even when I override the paint() method, add it to the frame, and call repaint() the paint() method is never ...
0
votes
2answers
169 views
Calling repaint() For JPanels
When I repaint() the panel, where I'm placing my JLabels on, I get errors, but it still works. I tried putting the panel.repaint(); code in a try statement and that didn't help. Anyone else having ...
3
votes
1answer
131 views
Java: cannot repaint()?
I am writing some code to create coloured visualisations of text. The following managed the visualisation panel and the setCT(String c) method is (correctly) called from elsewhere in the program.
...
1
vote
3answers
110 views
Why does as the JPanel class object be created, the paintComponent method is automatically called?
This is the java code about JPanel:
class Battle_field extends JPanel{
public List<Image_Obj> pics_to_be_drawn;
@Override
public void paintComponent(Graphics g){
...
1
vote
1answer
591 views
Painting and repainting a JPanel with images
I wish to paint and repaint a JPanel, which may be rotated 90 degrees with images.
The initial painting does not cause any issues. When I try to repaint() the panel it will not do this immediately, ...
0
votes
1answer
167 views
jpanel graphics to not repaint when resized etc
Right now I have a function, in a class that is used to listen to my server, that draws my game map based off of a piped file:
String[] mapSplit = map.split("\\|");
mapWidth = ...
0
votes
0answers
44 views
Calling a repaint is working and then disappearing
I am writing a fairly simple game based around JComponents, with the whole game held in a JFrame. One JPanel, which controls the graphics of the game itself, requires a ball to move across the screen. ...
1
vote
1answer
84 views
Image not repainting, just multiplying
I have a JPanel implements a key listener. It pulls and displays an Image pulled from another class. NA the Key listener is passed to that class to get one of many images and move it 2px in a ...
1
vote
4answers
3k views
Repainting JPanel after button click
I'm new in Java Swing and I have a strange problem to refresh my JPanel.
I create a static JPanel componant in my frame and I call a static method from a FileListenner to repaint my JPanel
public ...
2
votes
2answers
142 views
JPanel rectangles overwriting; won't delete
I have to sort an array of 10 numbers using insertion sort and display them using rectangles (i.e. a bar graph). Each time the user hits "next" it will sort the next position in the array. The ...
1
vote
1answer
273 views
Java Panel Won't Paint
Basic summary: Working on a game that generates a 15x15 grid for the player to move around in. Each cell in the grid as an image that is randomly generated with shades of brown so each cell looks ...
0
votes
2answers
431 views
Java swing — Jpanel not rerendering/repainting itself
Im using a JPanel with propertyChangeListener and want it to rerender itself based on whenever a particular variable model changes. My code for the same is as follows --
public class ...
1
vote
1answer
477 views
Change location JLabel on JPanel repaint
I'm building a Java application.
GameView has a BoardView which contains multiple PawnViews (in the example just one).
Example:
public class GameView extends Frame
{
public ...
1
vote
1answer
107 views
JFrame reloads initial content on mouse over
I have a JPanel with a GridLayout(1,0) set to a JFrame Borderlayout.SOUTH, there are placed a couple of buttons in here (when pressed they change a variables value to the index of the created button). ...
1
vote
2answers
627 views
Paint in a part of JPanel without repaint the rest
I'm trying to make a Mastermind in Java. The code isn't really difficult, but I want to have a very good interface. I have a JPanel which take all my JFrame, and I paint this JPanel with surchargind ...
1
vote
2answers
91 views
Adding to JPanel in application
When a particular button is clicked I want another set of buttons to be added to the Panel, however at the moment when I do this, I can add them as many times as I want, I need this to be only ...
4
votes
1answer
141 views
Can't re-add the same panel
This is driving me insane. I'm trying to change the panels when you click on 3 different buttons and it works, but for one panel - only once.
If you click addPerson - the Person panel shows,
If you ...
0
votes
3answers
885 views
Repaint a JPanel
I would like to repaint my jPanel
I've a App class who handle the screen displaying in this JFrame I add a Board JPanel object who handle all the JPanel.
In the Board class I had
ex = new ...
2
votes
1answer
759 views
How to add jpanel form to a jpanel on runtime in java?
NewProductPanel pPanel=new NewProductJPanel();
pPanel.setVisible(true);
mainPanel.setLayout(new java.awt.BorderLayout());
mainPanel.add(pPanel);
i have created a jPanel form and i want to add it ...
3
votes
2answers
524 views
how to use jpanel with paint (or repaint)
I'm a newbie to the paint/graphics and wonder how to add a JPanel to my code in such way that the entire graphics will be on a JPanel and not on the JFrame.
In other words, I'm trying to create a GUI ...
4
votes
3answers
143 views
Is there a way to only mark a specific JPanel region as opaque?
Basically I'm drawing a lot of transparent JPanels; profiling shows that most time is spent in Component.paint(). It would be possible to optimize this quite radically since in most cases the real ...
-1
votes
2answers
197 views
Repaint JPanel in Swings
How to Display the data in Jpanel using Jtabel when i clicked on Checkbox.
when i execute my programme for 1st time jpanel is executing. but second time when i clicked on checkbox panel which ...


