Cursor in the draw widget - please help [message #33120] |
Wed, 11 December 2002 07:08  |
dunia77de
Messages: 1 Registered: December 2002
|
Junior Member |
|
|
Hi,
I have the following problem: since the "crosshair" cursor is a little
disturbing for me when using the XROI procedure, I wanted to change
it's type.
I did it with DEVICE, CURSOR_STANDARD = ... . But the cursor is now
changed in the graphic windows only, but now in the draw widget.
Can somebody help me ?
Kasia
|
|
|
Re: Cursor in the draw widget - please help [message #33216 is a reply to message #33120] |
Wed, 11 December 2002 08:29  |
David Fanning
Messages: 11724 Registered: August 2001
|
Senior Member |
|
|
Kasia M. (dunia77de@yahoo.de) writes:
> I have the following problem: since the "crosshair" cursor is a little
> disturbing for me when using the XROI procedure, I wanted to change
> it's type.
> I did it with DEVICE, CURSOR_STANDARD = ... . But the cursor is now
> changed in the graphic windows only, but now in the draw widget.
>
> Can somebody help me ?
You changed the default cursor for direct graphics windows.
XROI uses object graphics windows. To change the cursor
for an object graphics window, you use the SetCurrentCursor
method on the window object:
windowObj -> SetCurrentCursor, "Arrow"
Cheers,
David
--
David W. Fanning, Ph.D.
Fanning Software Consulting, Inc.
Phone: 970-221-0438, E-mail: david@dfanning.com
Coyote's Guide to IDL Programming: http://www.dfanning.com/
Toll-Free IDL Book Orders: 1-888-461-0155
|
|
|