=head1 NAME Tk::CmdLine - Process standard X11 command line options and set initial resources =for pm Tk/CmdLine.pm =for category Creating and Configuring Widgets =head1 SYNOPSIS Tk::CmdLine::SetArguments([@argument]); my $value = Tk::CmdLine::cget([$option]); Tk::CmdLine::SetResources((\@resource | $resource) [, $priority]); Tk::CmdLine::LoadResources( [ -symbol => $symbol ] [ -file => $fileSpec ] [ -priority => $priority ] [ -echo => $fileHandle ] ); =head1 DESCRIPTION Process standard X11 command line options and set initial resources. The X11R5 man page for X11 says: "Most X programs attempt to use the same names for command line options and arguments. All applications written with the X Toolkit Intrinsics automatically accept the following options: ...". This module processes these command line options for perl/Tk applications using the C function. This module can optionally be used to load initial resources explicitly via function C, or from specified files (default: the standard X11 application-specific resource files) via function C. =head2 Command Line Options =over 4 =item B<-background> I | B<-bg> I Specifies the color to be used for the window background. =item B<-class> I Specifies the class under which resources for the application should be found. This option is useful in shell aliases to distinguish between invocations of an application, without resorting to creating links to alter the executable file name. =item B<-display> I | B<-screen> I Specifies the name of the X server to be used. =item B<-font> I | B<-fn> I Specifies the font to be used for displaying text. =item B<-foreground> I | B<-fg> I Specifies the color to be used for text or graphics. =item B<-geometry> I Specifies the initial size and location of the I L. =item B<-iconic> Indicates that the user would prefer that the application's windows initially not be visible as if the windows had been immediately iconified by the user. Window managers may choose not to honor the application's request. =item B<-motif> Specifies that the application should adhere as closely as possible to Motif look-and-feel standards. For example, active elements such as buttons and scrollbar sliders will not change color when the pointer passes over them. =item B<-name> I Specifies the name under which resources for the application should be found. This option is useful in shell aliases to distinguish between invocations of an application, without resorting to creating links to alter the executable file name. =item B<-synchronous> Indicates that requests to the X server should be sent synchronously, instead of asynchronously. Since Xlib normally buffers requests to the server, errors do do not necessarily get reported immediately after they occur. This option turns off the buffering so that the application can be debugged. It should never be used with a working program. =item B<-title> I This option specifies the title to be used for this window. This information is sometimes used by a window manager to provide some sort of header identifying the window. =item B<-xrm> I Specifies a resource pattern and value to override any defaults. It is also very useful for setting resources that do not have explicit command line arguments. The I is of the form EIE:EIE, that is (the first) ':' is used to determine which part is pattern and which part is value. The (EIE, EIE) pair is entered into the options database with B (for each L configured), with I priority. =back =head2 Initial Resources There are several mechanism for initializing the resource database to be used by an X11 application. Resources may be defined in a $C/.Xdefaults file, a system application defaults file (e.g. /usr/lib/X11/app-defaults/EBE), or a user application defaults file (e.g. $C/EBE). The Tk::CmdLine functionality for setting initial resources concerns itself with the latter two. Resource files contain data lines of the form EIE:EIE. They may also contain blank lines and comment lines (denoted by a ! character as the first non-blank character). Refer to L for a description of EIE:EIE. =over 4 =item System Application Defaults Files System application defaults files may be specified via environment variable $C which, if set, contains a colon-separated list of file patterns. =item User Application Defaults Files User application defaults files may be specified via environment variables $C, $C or $C. =back =head1 METHODS =over 4 =item B Extract the X11 options contained in a specified array (@ARGV by default). Tk::CmdLine::SetArguments([@argument]) The X11 options may be specified using a single dash I<-> as per the X11 convention, or using two dashes I<--> as per the POSIX standard (e.g. B<-geometry> I<100x100>, B<-geometry> I<100x100> or B<-geometry=>I<100x100>). The options may be interspersed with other options or arguments. A I<--> by itself terminates option processing. By default, command line options are extracted from @ARGV the first time a MainWindow is created. The Tk::MainWindow constructor indirectly invokes C to do this. =item B Get the value of a configuration option specified via C. (C first invokes C if it has not already been invoked.) Tk::CmdLine::cget([$option]) The valid options are: B<-class>, B<-name>, B<-screen> and B<-title>. If no option is specified, B<-class> is implied. A typical use of C might be to obtain the application class in order to define the name of a resource file to be loaded in via C. my $class = Tk::CmdLine::cget(); # process command line and return class =item B Set the initial resources. Tk::CmdLine::SetResources((\@resource | $resource) [, $priority]) A single resource may be specified using a string of the form 'EIE:EIE'. Multiple resources may be specified by passing an array reference whose elements are either strings of the above form, and/or anonymous arrays of the form [ EIE, EIE ]. The optional second argument specifies the priority, as defined in L, to be associated with the resources (default: I). Note that C first invokes C if it has not already been invoked. =item B Load initial resources from one or more files. Tk::CmdLine::LoadResources( [ -symbol => $symbol ] [ -file => $fileSpec ] [ -priority => $priority ] [ -echo => $fileHandle ] ); [ B<-symbol> =E $symbol ] specifies the name of an environment variable that, if set, defines a colon-separated list of one or more directories and/or file patterns. $C is a special case. If $C is not set, $C is checked instead. If $C is not set, $C is checked instead. An item is identified as a file pattern if it contains one or more /%[A-Za-z]/ patterns. Only patterns B<%L>, B<%T> and B<%N> are currently recognized. All others are replaced with the null string. Pattern B<%L> is translated into $C. Pattern B<%T> is translated into I. Pattern B<%N> is translated into the application class name. Each file pattern, after substitutions are applied, is assumed to define a FileSpec to be examined. When a directory is specified, FileSpecs EBE/EBE/EBE and EBE/EBE are defined, in that order. [ B<-file> =E $fileSpec ] specifies a resource file to be loaded in. The file is silently skipped if if does not exist, or if it is not readable. [ B<-priority> =E $priority ] specifies the priority, as defined in L, to be associated with the resources (default: I). [ B<-echo> =E $fileHandle ] may be used to specify that a line should be printed to the corresponding FileHandle (default: \*STDOUT) everytime a file is examined / loaded. If no B<-symbol> or B<-file> options are specified, C processes symbol $C with priority I and $C with priority I. (Note that $C and $C are supposed to contain only patterns. $C and $C are supposed to be a single directory. C does not check/care whether this is the case.) For each set of FileSpecs, C examines each FileSpec to determine if the file exists and is readable. The first file that meets this criteria is read in and C is invoked. Note that C first invokes C if it has not already been invoked. =back =head1 NOTES This module is an object-oriented module whose methods can be invoked as object methods, class methods or regular functions. This is accomplished via an internally-maintained object reference which is created as necessary, and which always points to the last object used. C, C and C return the object reference. =head1 EXAMPLES =over =item 1 @ARGV is processed by Tk::CmdLine at MainWindow creation. use Tk; # my $mw = MainWindow->new(); MainLoop(); =item 2 @ARGV is processed by Tk::CmdLine before MainWindow creation. An @ARGV of (--geometry=100x100 -opt1 a b c -bg red) is equal to (-opt1 a b c) after C is invoked. use Tk; Tk::CmdLine::SetArguments(); # Tk::CmdLine->SetArguments() works too # my $mw = MainWindow->new(); MainLoop(); =item 3 Just like 2) except that default arguments are loaded first. use Tk; Tk::CmdLine::SetArguments(qw(-name test -iconic)); Tk::CmdLine::SetArguments(); # my $mw = MainWindow->new(); MainLoop(); =item 4 @ARGV is processed by Tk::CmdLine before MainWindow creation. Standard resource files are loaded in before MainWindow creation. use Tk; Tk::CmdLine::SetArguments(); # Tk::CmdLine::LoadResources(); my $mw = MainWindow->new(); MainLoop(); =item 5 @ARGV is processed by Tk::CmdLine before MainWindow creation. Standard resource files are loaded in before MainWindow creation using non-default priorities. use Tk; Tk::CmdLine::SetArguments(); # Tk::CmdLine::LoadResources(-echo => \*STDOUT, -priority => 65, -symbol => 'XFILESEARCHPATH' ); Tk::CmdLine::LoadResources(-echo => \*STDOUT, -priority => 75, -symbol => 'XUSERFILESEARCHPATH' ); my $mw = MainWindow->new(); MainLoop(); =item 6 @ARGV is processed by Tk::CmdLine before MainWindow creation. Standard resource files are loaded in before MainWindow creation. Individual resources are also loaded in before MainWindow creation. use Tk; Tk::CmdLine::SetArguments(); # Tk::CmdLine::LoadResources(); Tk::CmdLine::SetResources( # set a single resource '*Button*background: red', 'widgetDefault' ); Tk::CmdLine::SetResources( # set multiple resources [ '*Button*background: red', '*Button*foreground: blue' ], 'widgetDefault' ); my $mw = MainWindow->new(); MainLoop(); =back =head1 ENVIRONMENT =over 4 =item B (optional) Home directory which may contain user application defaults files as $C/$C/EBE or $C/EBE. =item B (optional) The current language (default: I). =item B (optional) Colon-separated list of FileSpec patterns used in defining system application defaults files. =item B (optional) Colon-separated list of FileSpec patterns used in defining user application defaults files. =item B (optional) Directory containing user application defaults files as $C/$C/EBE or $C/EBE. =back =head1 SEE ALSO L L =head1 HISTORY =over 4 =item * 1999.03.04 Ben Pavon Eben.pavon@hsc.hac.comE Rewritten as an object-oriented module. Allow one to process command line options in a specified array (@ARGV by default). Eliminate restrictions on the format and location of the options within the array (previously the X11 options could not be specified in POSIX format and had to be at the beginning of the array). Added the C and C functions to allow the definition of resources prior to MainWindow creation. =back =cut