1Utils(n) Tix Built-In Commands Utils(n)
2
3
4
6 tixUtils - Utility commands in Tix.
7
9 tixDescendants pathName
10 tixDisableAll pathName
11 tixEnableAll pathName
12 tixPushGrab ?-global? window
13 tixPopGrab
14
16 tixDescendants pathName
17 Returns a list of all the descendant widgets of pathName plus
18 pathName itself.
19
20 tixDisableAll pathName
21 Disables pathName and all its descendants.
22
23 tixEnableAll pathName
24 Enables pathName and all its descendants.
25
26 tixPushGrab ?-global? window
27 The tixPushGrab and tixPopGrab commands allows you to perform
28 "cascade-grabbing". tixPushGrab calls the grab(n) command on
29 window and saves window on a grabbing stack.
30
31 tixPopGrab
32 tixPopGrab pops the top-most element from the grabbing stack and
33 release its grab. If the grabbing stack is not empty, then tix‐
34 PopGrab will execute grab(n) on the current top-most element in
35 the grabbing stack.
36
38 Some Tix widgets (for example, tixComboBox and tixPanedWindow) grabs
39 the screen on certain occasions using tixPushGrab and tixPopGrab.
40 Therefore, if you need to grab the screen when these widgets are
41 present, you should also call tixPushGrab and tixPopGrab in place of
42 the Tk grab and grab release commands. Otherwise, the behavior of these
43 widgets may be undefined.
44
46 Tix(n), grab(n)
47
48
49
50Tix 4.0 Utils(n)