The Artima Developer Community
Sponsored Link

Java Answers Forum
converting mouse icon to hour glass

3 replies on 1 page. Most recent reply: Sep 5, 2004 10:10 AM by Kondwani Mkandawire

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 3 replies on 1 page
Gibran Shah

Posts: 27
Nickname: gibby
Registered: Jun, 2004

converting mouse icon to hour glass Posted: Sep 4, 2004 11:25 AM
Reply to this message Reply
Advertisement
Hello all,

I was just wondering if there's a way to convert the mouse icon from an arrow to an hour glass. The context in which I want to do this is when I have a GUI and I press a button and that button causes a lengthy delay, because of heavy computations, before displaying the next GUI. During this delay, I want to convert the mouse icon to an hour glass just so the user knows to be patient.

Gibran


Kondwani Mkandawire

Posts: 530
Nickname: spike
Registered: Aug, 2004

Re: converting mouse icon to hour glass Posted: Sep 5, 2004 10:09 AM
Reply to this message Reply
http://www.javaworld.com/javaworld/javatips/jw-javatip87.html

setCursor(Cursor cursor) That's the Method
you are looking for it is a Component method
you can look up on its use on the Java API
and look up the Cursor class too to figure out
which cursor the hour glass is. I believe
its the WAIT_CURSOR. I don't know if you plan
on handling this with Threads.


// Check with thread
while(certainPart_Is_being_executed){
call_function_for_switching_cursor()
}

Good luck man...

Spike

Kondwani Mkandawire

Posts: 530
Nickname: spike
Registered: Aug, 2004

Re: converting mouse icon to hour glass Posted: Sep 5, 2004 10:10 AM
Reply to this message Reply
Sorry response to wrong question...

Sorry about that...

Spike

Kondwani Mkandawire

Posts: 530
Nickname: spike
Registered: Aug, 2004

Re: converting mouse icon to hour glass Posted: Sep 5, 2004 10:10 AM
Reply to this message Reply
Sorry again that was the correct answer to the above Q...

Flat View: This topic has 3 replies on 1 page
Topic: Data modeler plug-in for Mac OS X Previous Topic   Next Topic Topic: java.io.FilePermission - error

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use