tix - Manipulate Tix internal state


SYNOPSIS

tix option ?arg arg ...?

CONFIGURATION OPTIONS

The Tix application context supports the following configuration options. Usually, these options are set using the X resource database, different color scheme for the Tix widgets, these two lines can be


  	*TixScheme:         Gray
	*TixFontSet:        14Point


Name:		binding
Class:		Binding
Switch:		-binding


Name:		debug
Class:		Debug
Switch:		-debug


Name:		tixFontSet
Class:		TixFontSet
Switch:		-fontset


Name:		tixScheme
Class:		TixScheme
Switch:		-scheme


Name:		tixSchemePriority
Class:		TixSchemePriority
Switch:		-schemepriority

*TixSchemePriority: 21

DESCRIPTION

The tix command provides access to miscellaneous elements of the information manipulated by this command pertains to the application as a whole, or to a screen or display, rather than to a particular window. The command can take any of a number of different forms depending on the option argument. The legal forms are:

tix addbitmapdir directory
Tix maintains a list of directory under which which the tix getimage and tix getbitmap commands will search for image files. The standard bitmap directory is $TIX_LIBRARY/bitmaps. The addbitmapdir command adds directory into this list. By using this command, the image files of an applications can also be located using the tix getimage ot tix getbitmap command.
tix cget option
Returns the current value of the configuration option given by option. Option may be any of the options described in the CONFIGURATION OPTIONS section.
tix configure ?option? ?value option value ...?
Query or modify the configuration options of the Tix application context. If no option is specified, returns a list describing all of the available options (see Tk_ConfigureInfo for information on the format of this list). If option is specified with no value, then the command returns a list describing the one named option (this list will be identical to the corresponding sublist of the value returned if no option is specified). If one or more option-value pairs are specified, then the command modifies the given option(s) to have the given value(s); in this case the command returns an empty string. Option may be any of the options described in the CONFIGURATION OPTIONS section.
tix filedialog ?class?
Returns the file selection dialog that may be shared among different modules of this application. This command will create a file selection dialog widget when it is called the first time. This dialog will be returned by all subsequent calls to tix filedialog. An optional class parameter can be passed to specified what type of file selection dialog widget is desired. Possible options are tixFileSelectDialog or tixExFileSelectDialog.
tix getbitmap name
Locates a bitmap file of the name name.xpm or name in one of the bitmap directories (see the addbitmapdir command above). By using tix getbitmap, you can advoid hard coding the pathnames of the bitmap files in your application. When successful, it returns the complete pathname of the bitmap file, prefixed with the character @. The returned value can be used to configure the -bitmap option of the TK and Tix widgets.
tix getimage name
Locates an image file of the name name.xpm, name.xbm or name.ppm in one of the bitmap directories (see the addbitmapdir command above). If more than one file with the same name (but different extensions) exist, then the image type is chosen according to the depth of the X display: xbm images are chosen on monochrome displays and color images are chosen on color displays. By using tix getimage, you can advoid hard coding the pathnames of the image files in your application. When successful, this command returns the name of the newly created image, which can be used to configure the -image option of the TK and Tix widgets.
tix option ?args ...?
Manipulates the options manitained by the Tix scheme mechanism. Available options are:

\fCactive_bg	\fCactive_fg	\fCbg
\fCbold_font	\fCdark1_bg	\fCdark1_fg
\fCdark2_bg	\fCdark2_fg	\fCdisabled_fg
\fCfg	\fCfixed_font	\fCfont	
\fCinactive_bg	\fCinactive_fg	\fCinput1_bg	
\fCinput2_bg	\fCitalic_font	\fClight1_bg
\fClight1_fg	\fClight2_bg	\fClight2_fg
\fCmenu_font	\fCoutput1_bg	\fCoutput2_bg
\fCselect_bg	\fCselect_fg	\fCselector
The arguments to the tix option command can take the following form(s):
tix resetoptions newScheme newFontSet ?newScmPrio?
Resets the scheme and fontset of the Tix application to newScheme and newFontSet, respectively. This affects only those widgets created after this call. Therefore, it is best to call the resetoptions command before the creation of any widgets in a Tix application. The optional parameter newScmPrio can be given to reset the priority level of the TK options set by the Tix schemes.

BUGS

Because of the way TK handles the X option database, after tixwish has started up, it is not possible to reset the color schemes and font sets using the tix config command. Instead, the tix resetoptions command must be used.

The tk_setPalette command does not work very well under Tix. To use it, one must follow these steps:

KEYWORDS

file selection dialog
Last modified Sun Jan 19 22:34:41 EST 1997 --- Serial 853731308