1tixInputOnly(n) Tix Built-In Commands tixInputOnly(n)
2
3
4
6 tixInputOnly - Create and manipulate TIX InputOnly widgets
7
9 tixInputOnly pathName ?options? -cursor -width -height
10
12 TixInputOnly does not have any widget specific options.
13
15 The tixInputOnly command creates a new window (given by the pathName
16 argument) and makes it into a tixInputOnly widget. Additional options,
17 described above, may be specified on the command line or in the option
18 database to configure aspects of the tixInputOnly such as its cursor or
19 width.
20
21 TixInputOnly widgets are not visible to the user. The only purpose of
22 TixInputOnly widgets are to accept inputs from the user, which can be
23 done with the bind command.
24
26 The tixInputOnly command creates a new Tcl command whose name is the
27 same as the path name of the tixInputOnly's window. This command may be
28 used to invoke various operations on the widget. It has the following
29 general form:
30 pathName option ?arg arg ...?
31
32 PathName is the name of the command, which is the same as the InputOnly
33 widget's path name. Option and the args determine the exact behavior of
34 the command. The following commands are possible for tixInputOnly wid‐
35 gets:
36
37 pathName cget option
38 Returns the current value of the configuration option given by
39 option. Option may have any of the values accepted by the tixIn‐
40 putOnly command.
41
42 pathName configure ?option? ?value option value ...?
43 Query or modify the configuration options of the widget. If no
44 option is specified, returns a list describing all of the avail‐
45 able options for pathName (see Tk_ConfigureInfo for information
46 on the format of this list). If option is specified with no
47 value, then the command returns a list describing the one named
48 option (this list will be identical to the corresponding sublist
49 of the value returned if no option is specified). If one or
50 more option-value pairs are specified, then the command modifies
51 the given widget option(s) to have the given value(s); in this
52 case the command returns an empty string. Option may have any
53 of the values accepted by the tixInputOnly command.
54
56 tixInputOnly widgets have no default bindings.
57
59 tixInputOnly is currently implemented for the Unix version of Tix only.
60
62 Tix(n)
63
64
65
66
67
68Tix 4.0 tixInputOnly(n)