Repaint refers to issues relating to re-rendering or redrawing user interface screens or portions of those screens.
0
votes
0answers
7 views
Android: how to update/repaint the content in SlidingDrawer
I'm using Sliding Drawer to show graphics and I want to expand and collapse the sliding drawer based on if the current cotent is available when I swap things. But I got an issue when swapping from a ...
0
votes
2answers
38 views
Changing text on JComponent
I need to change text inside Jcomponents, which are arranged at the coordinates x and y on JPanel.
But if I change the text everywhere, except in the TextFields or PasswordFields, the location and ...
0
votes
0answers
37 views
Swing double Buffering and Animation
I am trying to prevent redrawing an animation by the EDT. The first thing i have done is excluding the actual drawing tasks into a different thread, writing into a VolatileImage, which gets redrawn by ...
0
votes
1answer
18 views
repaint not working when button is pushed
I am trying to get my code to work such that when you push the "Go!" button, it either draws a hand of cards or shuffles the deck, depending on the checkbox selected. I think I can figure that out ...
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 ...
2
votes
1answer
36 views
Increasing speed of Timer in Java
I'm making a game with Java and I'm currently using Timers for all my animations and game controls. But I'm having trouble choosing the right way to increase the speed of a Timer. My game is supposed ...
0
votes
2answers
40 views
Repaint() not repainting images
I'm making a pong game in Java to play around with the language and was wondering why my repaint method is not repainting the images on screen. Essentially what I want is when the ball hits either ...
0
votes
2answers
73 views
Line not appearing on JDesktopPane
I want to draw line between two JPanels but line is not appearing on layeredPane.
This is what i have done please go through it, compilable.Do try and correct this code. I have tried on drawing lines ...
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
2answers
39 views
Concurrent Modification Exception Cause by Painting?
I have been having a lot of trouble with the Concurrent Modification Exception error. With the help of the community I managed to fix my last error, however I think this error is more puzzling.
I am ...
0
votes
1answer
34 views
Stop JComponent from repainting when state changes
I'm sure, this is something like a super stupid standard problem, but I spent hours searching and trying to get this fixed, but it just won't work... I just can't find my mistake here...
I'm trying ...
2
votes
2answers
66 views
Images Not Updating In Swing
I'm having a problem updating an Image in my GUI. Everything besides these methods is coded correctly because the Image appears when I write the code (from the "setImage" method below) in 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
1answer
10 views
How to use the repaint method
I am trying to use the repaint method in the following code to update the screen after user input. The game is a card game where the user has to click on two cards to reveal their pictures. If the ...
-4
votes
1answer
32 views
JFrame repaint isuse
/* DigitalGridActionListener.java
* This class defines the Action Listener for the 'Digitzed Molecular Canvas'.
* Whenever this class is initiated, a grid is drawn onto the screen
* on which the ...
-1
votes
0answers
50 views
Repaint not working at all
I'm making a simulation of a 20 x 10 storage. I have two robots which I paint in a JPanel.
Code is here:
//Drawing Robot 1:
g.drawRect(Robot1x, Robot1y, 50, 600);
...
-1
votes
0answers
24 views
Scrolling Div causes google maps tile layers repaint
So I notice some jank-i-ness when scrolling the sidebar on this site: http://viewpoint.ca/sidebarmap (quickly sign up for an account if you need to see the actual scrolling, it's free and there's no ...
0
votes
1answer
34 views
JTextArea Not Showing When repaint(), but Graphics not updating when revalidate()?
I am making a program that simulates an NHL Draft Lottery, where there should be a JTextField on the right of the screen, and draftballs being drawn on the left that bounce around. I made a class ...
0
votes
2answers
49 views
Frozen Java Jcomponent
I've got a problem with my Component in Java. The problem is that in my GUI i can't see any changes of my ovals colors. When the OVF flag is set to false they should be white, and when the flag OVF is ...
0
votes
3answers
54 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
1answer
22 views
Simple Applet Game Bug
I'm having trouble with my applet. It's purpose is to create a game where you can move a block at the bottom of the screen to fit through holes in blocks that are falling down from up above. I've ...
1
vote
2answers
46 views
JButton only appears after mouse rolls over it
I have this GUI class:
import java.awt.*;
import javax.swing.*;
public class Exp2 extends JFrame {
public Exp2 () {
setLayout(new FlowLayout());
setSize(360, 360);
...
-1
votes
1answer
33 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 ...
0
votes
2answers
43 views
Java : repaint is undefined in class
I am new on java. I want to create an abstract factory in java. I have a class point and I want to extend other classes ( circle, rectangle ) from this.
Here is my code. It says repaint is ...
0
votes
1answer
31 views
Weirdest bug in Chrome, has to do with repaint?
I have a form with some errors that are hidden by default. This is the CSS (Stylus):
span.error
display: none
position: relative
padding: .25em .5em
width: 75%
margin-top: 5px
...
0
votes
0answers
26 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
23 views
Can't clear a JFrame from an inner class
I'm doing homework, and after a few hours, I'm stumped. The assignment is to make a window that holds a textfield and button, and when you enter an integer and press the button, that entered number of ...
0
votes
2answers
34 views
Java - two repaint() functions - the first one doesn't repaint immediately
My code:
...
this.mainWindow.desk.repaint();
....
function();
...
this.mainWindow.desk.repaint();
...
The first repaint is not processed immediately, but waits for the second one and then both are ...
0
votes
0answers
28 views
How do I synchronize calling of paint() with a button event?
I am writing an application using AWT in Java.
I have a button component in one class and a canvas in another class. The canvas class has the paint method. Now what I want to do is, when I click a ...
0
votes
1answer
24 views
Calling repaint() from non-main thread in java applet
I have a java applet class which implements runnable. In the run() method of this class, I have a call to repaint(). The contents of the run method are contained in an infinite loop. In the init() of ...
0
votes
0answers
23 views
JavaFX Bug: App on Windows doesn't repaint correctly
I am developing an application similar to a CAD program using JavaFX 2.2. It is to show a graph of a power transmission line.
The program is basically a screen, divided in 3 parts: the top is the ...
0
votes
2answers
54 views
Java Applets - repaint
I have the following code:
import java.awt.*;
import java.applet.*;
public class DrawExample extends Applet
{
Font bigFont;
Color redColor;
Color weirdColor;
Color bgColor;
...
0
votes
1answer
29 views
JAppplet Flicker on Opening html
I am opening multiple level html's on a Java Applet, my basic window in JApplet and upon it I am opening a 1st secondary html window, & then again opening 2nd secondary html window that will force ...
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
0answers
10 views
JFrame repaint in Blackjack fails
I got a fully working Blackjack game, except that the cards are not displaying correctly. I can play fine by seeing card values in the command window, but there's a problem with repaint(). It should ...
0
votes
0answers
11 views
Does anyone know of a good general rule of thumb for what kinds of changes cause page repaints in browsers?
I see lots of examples where certain things are enumerated that cause repaints, but what I'd really like to know is, generally, what causes browser repaints? Is it anything that causes a page to ...
1
vote
1answer
75 views
Picturebox location change 20 times per second not redrawing
I'm trying to make a few images do the nice slidey thingy that I've seen lots of Microsoft applications use. The one where the movement starts slow speeds up half way there and then comes to a nice ...
0
votes
0answers
89 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... ...
1
vote
1answer
76 views
AlphaComposite Transparency with repaint overlaps into black
So I have an image on top of another panel, and that image is transparent so you can see the panel beneath it. What I'm trying to do is use repaint() to fade the image (which is drawn with the ...
0
votes
0answers
35 views
How to properly update a gui? Revalidate and repaint will not work
So, this might be a bit confusing seeing this out of context, but I will try to explain. I have a map that is being updated on grid. Occupants of certain tiles move on the grid. SOrry in advance if ...
0
votes
2answers
22 views
Removing Asynchronous Updates on JButtons
I'm doing something very arbitrary, and mainly due to my OCD, but to make a long story short I'd like to remove the asynchronous update on JButtons and invoke repaint() when buttons need to be ...
1
vote
1answer
33 views
Odd repaint functionality
Brief description of Program
Hi guys. I got bored this morning and decided to write a graphing program. Eventually i'll be able to run things like Dijksta's Algorithm on this software.
When ...
0
votes
0answers
16 views
Repaint JTabbedPane
I'm working on a project with 2 JTabbedPane's.
When I click a button in the first one, information is send to the second one.
But, when I open the second one, it repaints itself losing all the ...
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 ...
0
votes
2answers
32 views
A way to check a BufferedImage repaint()?
I'm working in Eclipse and I want to know if I can make an if statement that checks to see if the BufferedImage has been painted/drawn onto the frame. For some reason, it's not painting the correct ...
0
votes
3answers
107 views
Problems with Java's Paint method, ridiculous refresh velocity
I'm developing a very simple version of R-Type as work for the university, but despite it works, the craft velocity is a lot of slow, so the movement is ugly and clumsy.
I use the method repaint for ...
0
votes
0answers
30 views
In html, when the scroll bar is created? In the reflow phrase, or in the repaint phrase?
I have a div, which has max-height css property (say, max-height:400px;overflow-x: hidden; overflow-y: auto;).
Then, I append some child dom into this div dynamic through javascript, until the ...
1
vote
1answer
48 views
Slow reaction(repainting) of mouseListener
I made a Frame which repaints itself when I click on it(also the new geometric figure is painted) but when I click rapidly It does not responds so fast, it needs like half a sec beetween clicks. What ...
2
votes
1answer
57 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 ...


