Tagged Questions
Repaint refers to issues relating to re-rendering or redrawing user interface screens or portions of those screens.
11
votes
2answers
190 views
Does AWT/Swing cancel painting operations if the monitor is off?
I am experiencing a problem with Swing that only occurs when the computer monitor is powered off, but my Swing application continues to run in the background. It seems that whenever the monitor is ...
11
votes
1answer
337 views
Why does ie apparently reflow DOM when encountering <fb:xxx> fbml elements when correctly using the fbml xmlns?
I have a page containing a number of facebook "Like" buttons, embedded using the inline fbml technique (as opposed to iframe). Simple enough. The page renders fine, everything works as expected.
...
9
votes
2answers
192 views
How is CSS applied by the browser, and are repaints affected by it?
Let's say we have an HTML page with a single stylesheet <link>. How does the browser take the rules in this stylesheet and apply it to the HTML? I'm not asking about how to make it faster, I ...
7
votes
2answers
314 views
Scrolled composite with slow to repaint content looks ugly
I am implementing a Gantt component for SWT and this takes a bit to repaint (like, 200 ms for the whole visible part of the diagram).
Now, when I scroll, I only repaint what is needed regarding the ...
7
votes
3answers
118 views
Repaint issues when switching between programs
MyApp (.NET c#) is triggered by OtherApp (c++).
When triggered my app takes over the whole screen and gives the user two options. One option quits MyApp and returns to the OtherApp home screen. The ...
7
votes
1answer
132 views
cssText or individual stylename?
When we are applying a lot of style changes using JavaScript to a single element, phpied & Writing Efficient JavaScript (slide 87) suggests:
instead of applying styles one by one using ...
5
votes
1answer
87 views
How do I invoke an immediate update to a Java GUI? (conflict with Thread.sleep())
I've been stuck on a bug with a Java project I am working on, and I can't seem to find an answer that works.
Basically I am making the game Memory, when you pick two cards and if they match you get ...
5
votes
3answers
278 views
Change Panel size on button click
I have the following code:
package in.res.num.tapb.ui;
import java.awt.BorderLayout;
import java.awt.CardLayout;
import java.awt.Dimension;
import java.awt.GridLayout;
import ...
5
votes
2answers
281 views
JFrame repaint() issues - Java
I want to be able to draw using Java's paint() on a JFrame. When I click the JFrame (anywhere for now) I want the JFrame to be repainted with the co-ordinates of the click - similar to this Java ...
5
votes
2answers
2k views
Swing: Can't get JButton to update - repaint() not working
I'm using Swing for the first time to create a simple GUI. It consists of a JFrame upon which I have placed a single JButton which, when clicked, calls some other code which takes approx. 3 seconds to ...
5
votes
1answer
14k views
Java GUI repaint() problem?
I have a JFrame. This JFrame contains a JButton. I click the JButton and 10 JTextFields are created.
the problem:
I cannot see them until "I force a repaint()" by resizing the window. Only then do I ...
4
votes
3answers
51 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 ...
4
votes
1answer
106 views
WPF Image, changing color of pixels
I have a problem. I need to fill (or repaint) some pixels at image, stored in Image control. This is a png image. I mean, that all black pixels should be filled with, for example, red color. How can I ...
4
votes
2answers
269 views
Java - Repaint Not Working
So I am making a Text-Based RPG Applet in Java. I am using SWING panels, with text fields and buttons on it. I am programming it in Netbeans, and I am using the GUI editor. I have crafted the HTML ...
4
votes
3answers
281 views
Prevent repainting of window in C++
I am writing a global hook DLL that needs to do some drawing using GDI+ on a window in response to an event. My problem is that the window that is being drawn keeps repainting itself, so what I draw ...
4
votes
6answers
270 views
How to report progress of a JavaScript function?
I have a JavaScript function which is quite long and performs a number of tasks, I would like to report progress to the user by updating the contents of a SPAN element with a message as I go. I tried ...
4
votes
6answers
3k views
Swing JPanel wont repaint
I have a simple object which extends JPanel, when the update() method is called on this object it it meant to add some labels to the panel and then repaint. However the labels do not show up after the ...
4
votes
1answer
582 views
How to disable the default painting behaviour of wheel scroll event on JScrollPane
I recently purchased the book Filthy Rich Clients and i found it really useful and fun. Building on one example from the book i tried implementing a custom ScrollPane that displays a "shadow" on the ...
4
votes
3answers
2k views
Java repaint not working correctly
i use the java repaint method , it repaints, but the update is only seen when I either click on the canvas or resize the panel. How can I fix this ? What causes it?
3
votes
3answers
89 views
Java Graphics repaint behavior
I have been searching for a reason for this behavior in my code for quite some time now. I do not want to dive too deeply into the Swing API to figure why this occurs. I would appreciate any ...
3
votes
2answers
89 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 ...
3
votes
2answers
49 views
Repaint leaves trail
I know that this isn't the first time that this question has been asked, but the responses haven't helped me much, so I am helping I am finally going to get my answer
I have made this little game ...
3
votes
1answer
100 views
How to display JLabel text for 1 second?
I am wanting my error messages to display in a JLabel temporarily, then set the text back to "". But instead it looks like it just skips over setting the message. I've stepped through the code and ...
3
votes
2answers
128 views
Painting in Swing, blinking issue
I have the following problem in swing.
I'm implementing basic drawing operations (lines, shapes). When I'm moving mouse with pressed left button, I need to repaint current shape. So I clear the screen ...
3
votes
3answers
130 views
Repainting in Swing JComponent after an interval
I have been assigned a project where I have to make an analog clock using the GregorianCalendar object in java. First, we were told to get the clock working, so that it shows the proper time on each ...
3
votes
1answer
253 views
JPanel Repaint Not Clearing
I have a custom, abstract class 'Panel' which extends JPanel. There aren't many differences with the two when painting. I have a Panel and I'm simulating an animation by updating the x value of an ...
3
votes
2answers
80 views
Faster to manipulate existing HTML or removing the HTML and then recreating it?
This project I am working on, I have a list of elements and convert them into a "graph" (not a true graph, but you can call it a psuedo one). I have my data set, i run a for loop over the data and ...
3
votes
3answers
455 views
Speeding Up Slow, CPU-Intensive Scrolling in WinForms
How can I speed up the scrolling of UserControls in a WinForms app.?
My main form has trouble scrolling quickly on slow machines--painting for each of the small scroll increments is CPU intensive.
...
3
votes
1answer
534 views
What's the difference between reflow and repaint?
I'm a little unclear on the difference between reflow + repaint (if there's any difference at all)
Seems like reflow might be shifting the position of various DOM elements, where repaint is just ...
3
votes
3answers
767 views
Java repaint is slow under certain conditions
I'm doing a simple grid which each square is highlighted by the cursor:
They are a couple of JPanels, mapgrid and overlay inside a JLayeredPane, with mapgrid on the bottom. Mapgrid just draws on ...
3
votes
4answers
2k views
Delphi. Prevent controls repainting for a time
For example I disable runtime two buttons. After I disabled first button it bacame gray, the second - it also became gray. But I do not know how to make the repainting simultaneous! I need something ...
2
votes
1answer
40 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 ...
2
votes
3answers
62 views
My JFrame Flickers
I'm trying to make a simple java game -- driving a car through a track. I am conditioned by my teacher to use rectangles and stuff like that . My problem is when I use the method repaint() that my ...
2
votes
3answers
82 views
Java Swing - flickering Canvas graphics
I have to write a simple Java app which can load pictures, show it in a GUI form, allow the user to apply some transformation, and show the transformed picture.
My solution is working fine, but the UI ...
2
votes
2answers
127 views
Delphi - TEdit Labels are not displaying (Windows 7/Vista only)
I we got few TEdit forms inserted on another form, but their labels are not displaying until I change size of the window. This happens just on Windows Vista / Windows 7. Windows XP has everything ...
2
votes
2answers
76 views
Swing : Screen components doesn't get refreshed as expected
I have a middlePanel that displays panel1 with 6 button in it. On clicking a button, other components are displayed in mainPanel and finally returning back to panel1.
The problem I face here is : the ...
2
votes
2answers
63 views
Fluid images in Chrome: how to avoid repaint?
I'm working on a photography site with a lot of images and they have no fixed height and width as I want this site to be 100% fluid: how do you work around the ugly Chrome repaint of the images? (i.e. ...
2
votes
5answers
222 views
Repaint JPanel only after window resize is finished
I have a JPanel on which I've painted four rectangles. The color for each of these rectangles is selected at random. The colors should change only when the user clicks on a particular rectangle.
...
2
votes
2answers
58 views
Swing Painting issue?
I have a JPanel extension called TPanel, which paints the word Tetris on the right hand side of the JFrame. The curr() method returns the current piece that is moving, and is bounded to the left side ...
2
votes
6answers
283 views
Swing JLabel: Force repaint()
I am trying to repaint a JLabel dynamically and I can't for the life of me figure out how to do it. The code below will do as expected once I resize the screen but will not execute the code by itself.
...
2
votes
1answer
87 views
Swing rate limiting
I have a long repaint operation that I would like to rate-limit, ie make sure it gets called once every N milliseconds at most.
My current solution is somewhat unsatisfactory: I use a Swing Timer ...
2
votes
2answers
108 views
How can I repaint a label while doing some processing, in Swing?
I'm new to Swing and I was trying to do this:
On pressing a JButton, the program will start iterating over hundreds of items, taking 1 second to process each one, and after finishing each one he ...
2
votes
1answer
234 views
How to update Android Views upon modifications?
I have some methods in my View that modify some of the shapes that are drawn when called. In Java in order to make sure the component is updated I would call repaint(). Is there something that will ...
2
votes
1answer
79 views
White marks appearing on my popup menu
I've got a popup menu div that is shown and hidden with the following jQuery:
$('#' + mnu).show('slide', { direction: 'down' }, 300);
In IE9 it displays correctly:
...but in IE7, it shows some ...
2
votes
3answers
285 views
Java Swing: repaint component during long event
I am working with Java Swing to render my GUI for an application. I have an ActionListener set up on a JButton to fire off a series of tests. Ideally, I would like to update a status area (currently ...
2
votes
2answers
443 views
java paint problem - black components
I am having a weird java problem - For some reason quite often when I open a dialog it becomes black. When I force a repaint (for example, draging it out and into the screen again) it draws itself ...
2
votes
5answers
166 views
Drawing problem in java
I am a new in java, and I need to implement a paint application, and I'm kinda stuck at the beggining, I managed to draw lines to a JPanel which I added to a JFrame, but each line drawn resets the ...
2
votes
2answers
414 views
Repainting a JPanel in a loop with a delay
I'm trying to create a program which will visualize different sorting algorithms by drawing a set of bars representing an array along for each time the sort loops. However, when I set the array from ...
2
votes
4answers
473 views
Thread.sleep and repainting
I have a panel that displays text. I want the panel to change its text and then have the application pause before anything else happens. I'm using Thread.sleep(1000). For some reason, though, the ...
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 ...