1cursor(n) Tk cursor routines cursor(n)
2
3
4
5______________________________________________________________________________
6
8 cursor - Procedures to handle CURSOR data
9
11 package require Tk
12
13 package require cursor ?0.1?
14
15 ::cursor::propagate widget cursor
16
17 ::cursor::restore widget ?cursor?
18
19 ::cursor::display ?parent?
20
21_________________________________________________________________
22
24 The cursor package provides commands to handle Tk cursors.
25
27 The following commands are available:
28
29 ::cursor::propagate widget cursor
30 Sets the cursor for the specified widget and all its descendants
31 to cursor.
32
33 ::cursor::restore widget ?cursor?
34 Restore the original or previously set cursor for the specified
35 widget and all its descendants. If cursor is specified, that
36 will be used if on any widget that did not have a preset cursor
37 (set by a previous call to ::cursor::propagate).
38
39 ::cursor::display ?parent?
40 Pops up a dialog with a listbox containing all the cursor names.
41 Selecting a cursor name will display it in that dialog. This is
42 simply for viewing any available cursors on the platform.
43
45 Tk_GetCursor(3), cursors(n), options(n)
46
48 cursor
49
51 Copyright (c) Jeffrey Hobbs <jeff@hobbs.org>
52
53
54
55
56cursor 0.1 cursor(n)