Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-15-2007, 05:02 PM
Member
 
Join Date: Aug 2007
Posts: 3
rjevans2000 is on a distinguished road
Repaint fails when using threads
Hi, I'm trying to get to grips with threads and am creating a test application that carries out several tasks simultaneously. My problem is that when using a thread, the repaint() method doesn't seem to update the panel that I would expect it to. Below is the fragment of code in question:

class ColourPanel extends JPanel implements Runnable {

public void run() {
try {
for (int i=0;i<100000;i++) {

randomNumber = Math.random();
if ((randomNumber >= 0) && (randomNumber < 0.25))
setBackground(Color.RED);
if ((randomNumber >= 0.25) && (randomNumber < 0.5))
setBackground(Color.BLUE);
if ((randomNumber >= 0.5) && (randomNumber < 0.75))
setBackground(Color.MAGENTA);
if ((randomNumber >= 0.75) && (randomNumber <= 1))
setBackground(Color.ORANGE);

repaint();
setVisible(true);
Thread.sleep(200);
}
}
catch (InterruptedException e) {
}
}

public ColourPanel() {

setLayout(new BorderLayout());

colourButton = new JButton("Change Background");
add(colourButton, BorderLayout.SOUTH);

colourButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {

Runnable q = new ColourPanel();
Thread s = new Thread(q);
s.start();

}
});
}

private JButton colourButton;
private double randomNumber;

}

I would expect the repaint() method to update the panel with the new background colour. However, this does not work and I can't see why. I have tried calling getParent().repaint() and getRootPane().repaint() but these also don't work. Am I barking up the wrong tree? Any help would be greatly appreciated!
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 09-22-2007, 12:22 AM
Senior Member
 
Join Date: Jul 2007
Posts: 1,022
hardwired is on a distinguished road
Code:
import java.awt.*; import java.awt.event.*; import javax.swing.*; public class ColourPanel extends JPanel implements Runnable { public void run() { try { for (int i=0; i<10; i++) { randomNumber = Math.random(); if ((randomNumber >= 0) && (randomNumber < 0.25)) setBackground(Color.RED); if ((randomNumber >= 0.25) && (randomNumber < 0.5)) setBackground(Color.BLUE); if ((randomNumber >= 0.5) && (randomNumber < 0.75)) setBackground(Color.MAGENTA); if ((randomNumber >= 0.75) && (randomNumber <= 1)) setBackground(Color.ORANGE); repaint(); System.out.printf("i = %s isDisplayable = %b%n", i, isDisplayable()); Thread.sleep(200); } } catch (InterruptedException e) { return; } } public ColourPanel() { setLayout(new BorderLayout()); colourButton = new JButton("Change Background"); add(colourButton, BorderLayout.SOUTH); colourButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent evt) { // This first line creates a new instance of ColourPanel // which is not the current instance that has been // instantiated and loaded into a gui. So this new // instance runs just fine but cannot be seen. //Runnable q = new ColourPanel(); // If you get a reference to the current instance // that has been instantiated and added to a gui // you will see the colors change. Since we are inside // another class ("this" == this ActionListener anonymous // class) we use the static form of obtaining a reference. Runnable q = ColourPanel.this; Thread s = new Thread(q); s.start(); } }); } public static void main(String[] args) { ColourPanel panel = new ColourPanel(); panel.setPreferredSize(new Dimension(200,200)); JOptionPane.showMessageDialog(null, panel, "", -1); } private JButton colourButton; private double randomNumber; }
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem in repaint Preethi AWT / Swing 16 03-18-2008 09:10 PM
Repaint problem swimberl Java 2D 1 02-16-2008 10:12 PM
Repaint problem swimberl Java 2D 0 01-06-2008 04:28 AM
repaint validate doLayout Gajesh Tripathi AWT / Swing 1 10-27-2007 07:53 PM
Repaint fails when using threads rjevans2000 AWT / Swing 3 08-15-2007 06:42 PM


All times are GMT +3. The time now is 08:22 AM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org