| Author |
using threads or there's another way?
|
miguel lisboa
Ranch Hand
Joined: Feb 08, 2004
Posts: 1281
|
|
in a swing standalone app i want a message to appear for a few seconds confirming user did deleted something i'm using this code: is there a better/smoother way of doing this? TiA
|
java amateur
|
 |
Henry Wong
author
Sheriff
Joined: Sep 28, 2004
Posts: 16681
|
|
Actually, once your swing application has been displayed, you are not allowed to access any of the components from anything that is not the event dispatching thread. With the exception of a few methods, like repaint(), it is not thread safe to do so. Having a separate thread to handle the timing for changing the visibility is fine, but it is not allowed to directly manipulate the component. Take a look at the invokeLater() method of the SwingUtilities to dispatch that task back to the event dispatching thread. Henry
|
Books: Java Threads, 3rd Edition, Jini in a Nutshell, and Java Gems (contributor)
|
 |
miguel lisboa
Ranch Hand
Joined: Feb 08, 2004
Posts: 1281
|
|
i'm not sure if i got it right: my main: my refactored code:
|
 |
Justin Fox
Ranch Hand
Joined: Jan 24, 2006
Posts: 802
|
|
create a JFrame as private member data, create an inner class to display the message ex: private class A{ public A() { public void paintComponent(Graphics g){} } } and in your program create new instance of the private frame and do: .getContentPane().add(new A()); .pack(); .setVisible(true); now you have a JFrame you can call .setVisible(true/false); or .dispose(); so say you want that frame to popup when they click a certain button you would say. myFrame.setVisible(true); myFrame.setAlwaysOnTop(true); you can also set the location of the frame by Point p = MainFrame.getLocation(); // your main clients window. myFrame.setLocation(new Point(p.getX()+MainFrame.getLength()/2,p.getY()+MainFrame.getWidth()/2)); that would set the top left corner of your popup display message to approx. the middle of the "MainFrame". Justin
|
You down with OOP? Yeah you know me!
|
 |
Justin Fox
Ranch Hand
Joined: Jan 24, 2006
Posts: 802
|
|
well you would call the timer, then in the timer, once the message box is visible, you would just count everytime the timer is called, then you would .dispose() the message box when you are out of the counter loop, and stop the current timer. Justin
|
 |
 |
|
|
subject: using threads or there's another way?
|
|
|