home *** CD-ROM | disk | FTP | other *** search
-
- <HTML>
- <HEAD>
- <TITLE>option - Using the option database in Perl/Tk</TITLE>
- <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
- <LINK REV="made" HREF="mailto:">
- </HEAD>
-
- <BODY>
- <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
- <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
- <STRONG><P CLASS=block> option - Using the option database in Perl/Tk</P></STRONG>
- </TD></TR>
- </TABLE>
-
- <A NAME="__index__"></A>
- <!-- INDEX BEGIN -->
-
- <UL>
-
- <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
-
- <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
- <LI><A HREF="#description">DESCRIPTION</A></LI>
- <UL>
-
- <LI><A HREF="#being a good citizen">Being a good citizen</A></LI>
- <LI><A HREF="#option rules and widget identification">Option rules and widget identification</A></LI>
- </UL>
-
- <LI><A HREF="#methods">METHODS</A></LI>
- <LI><A HREF="#bugs">BUGS</A></LI>
- <LI><A HREF="#see also">SEE ALSO</A></LI>
- <LI><A HREF="#keywords">KEYWORDS</A></LI>
- </UL>
- <!-- INDEX END -->
-
- <HR>
- <P>
- <H1><A NAME="name">NAME</A></H1>
- <P>option - Using the option database in Perl/Tk</P>
- <P>
- <HR>
- <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
- <UL>
- <LI>Linux</LI>
- <LI>Solaris</LI>
- <LI>Windows</LI>
- </UL>
- <HR>
- <H1><A NAME="synopsis">SYNOPSIS</A></H1>
- <P> <EM>$widget</EM>-><STRONG>widgetClass</STRONG>(<STRONG>Name</STRONG>=><EM>name</EM>, <STRONG>-class</STRONG>=><EM>class</EM>);</P>
- <P> <EM>$widget</EM>-><STRONG>PathName</STRONG>;</P>
- <P> <EM>$widget</EM>-><STRONG>optionAdd</STRONG>(<EM>pattern</EM>=><EM>value </EM> ?,<EM>priority</EM>?);</P>
- <P> <EM>$widget</EM>-><STRONG>optionClear</STRONG>;</P>
- <P> <EM>$widget</EM>-><STRONG>optionGet</STRONG>(<EM>name, class</EM>);</P>
- <P> <EM>$widget</EM>-><STRONG>optionReadfile</STRONG>(<EM>fileName</EM> ?,<EM>priority</EM>?);</P>
- <P>
- <HR>
- <H1><A NAME="description">DESCRIPTION</A></H1>
- <P>The option database (also known as the <EM>resource database</EM> or the
- <EM>application defaults database</EM>) is a set of rules for applying
- default options to widgets. Users and system administrators can
- set up these rules to customize the appearance of applications
- without changing any application code; for example, a user might
- set up personal foreground and background colors, or a site
- might use fonts associated with visual or language preferences.
- Different window managers (and implementations of them) have implemented
- the database differently, but most Xt-based window managers use the
- <EM>.Xdefaults</EM> file or the <EM>xrdb</EM> utility to manage user preferences;
- some use both, and/or implement a more complex set of site, user and
- application databases. Check your site documentation for these topics
- or your window manager's <STRONG>RESOURCE_MANAGER</STRONG> property.</P>
- <P>
- <H2><A NAME="being a good citizen">Being a good citizen</A></H2>
- <P>For most applications, the option database ``just works.'' The <STRONG>option...</STRONG>
- methods are for applications that need to do something unusual, such as
- add new rules or test an option's default. Even in such cases, the
- application should provide for user preferences.
- Do not hardcode widget options without a <STRONG>very</STRONG> good reason.
- All users have their own tastes and they are all different.
- They choose a special font in a special size and have often spend a
- lot of time working out a color scheme that they will love until death.
- When you respect their choices they will enjoy working with your
- applications much more. Don't destroy the common look and feel of a
- personal desktop.</P>
- <P>
- <H2><A NAME="option rules and widget identification">Option rules and widget identification</A></H2>
- <P>All widgets in an application are identified hierarchically by <EM>pathname</EM>,
- starting from the <STRONG>MainWindow</STRONG> and passing through each widget used to create
- the endpoint. The path elements are <EM>widget names</EM>, much like the elements
- of a file path from the root directory to a file. The rules in the option
- database are patterns that are matched against a widget's <EM>pathname</EM> to
- determine which defaults apply.
- When a widget is created, the <STRONG>Name</STRONG> option can be
- used to assign the widget's name and thus create a distinctive path
- for widgets in an application. If the <STRONG>Name</STRONG> option isn't given,
- Perl/Tk assigns a default name based on the type of widget; a
- <STRONG>MainWindow</STRONG>'s default name is the <STRONG>appname</STRONG>. These defaults are fine
- for most widgets, so don't feel you need to find a meaningful name for
- every widget you create.
- A widget must have a distinctive name to allow users to tailor its
- options independently of other widgets in an application. For instance,
- to create a <STRONG>Text</STRONG> widget that will
- have special options assigned to it, give it a name such as:</P>
- <PRE>
- $text = $mw->Text(Name => 'importantText');</PRE>
- <P>You can then tailor the widget's attributes with a rule in the option
- database such as:</P>
- <PRE>
- *importantText*foreground: red</PRE>
- <P>The <EM>class</EM> attribute identifies groups of widgets, usually within an
- application but also to group similar widgets among different applications.
- One typically assigns a class to a <STRONG>TopLevel</STRONG> or <STRONG>Frame</STRONG> so that the
- class will apply to all of that widget's children. To extend the example,
- we could be more specific about the importantText widget
- by giving its frame a class:</P>
- <PRE>
- $frame = $mw->Frame(-class => 'Urgent');
- $text = $frame->Text(Name => 'importantText');</PRE>
- <P>Then the resource pattern can be specified as so:</P>
- <PRE>
- *Urgent*importantText*foreground: red</PRE>
- <P>Similarly, the pattern <CODE>*Urgent*background: cyan</CODE> would apply to all
- widgets in the frame.</P>
- <P>
- <HR>
- <H1><A NAME="methods">METHODS</A></H1>
- <DL>
- <DT><STRONG><A NAME="item_widgetClass"><EM>$widget</EM>-><STRONG>widgetClass</STRONG>(<STRONG>Name</STRONG>=><EM>name</EM>, <STRONG>-class</STRONG>=><EM>class</EM>);</A></STRONG><BR>
- <DD>
- Identify a new widget with <EM>name</EM> and/or <EM>class</EM>.
- <STRONG>Name</STRONG> specifies the path element for the widget; names generally begin with a
- lowercase letter. <STRONG>-class</STRONG> specifies the class for the widget and its
- children; classes generally begin with an uppercase letter.
- If not specified, Perl/Tk will assign a unique default name to each widget.
- Only <STRONG>MainWindow</STRONG> widgets have a default class, made by uppercasing the
- first letter of the application name.
- <P></P>
- <DT><STRONG><A NAME="item_PathName"><EM>$widget</EM>-><STRONG>PathName</STRONG>;</A></STRONG><BR>
- <DD>
- The <STRONG>PathName</STRONG> method returns the widget's <EM>pathname</EM>, which uniquely
- identifies the widget within the application.
- <P></P>
- <DT><STRONG><A NAME="item_optionAdd"><EM>$widget</EM>-><STRONG>optionAdd</STRONG>(<EM>pattern</EM>=><EM>value </EM>?, <EM>priority</EM>?);</A></STRONG><BR>
- <DD>
- The <STRONG>optionAdd</STRONG> method adds a new option to the database.
- <EM>Pattern</EM> contains the option being specified, and consists of
- names and/or classes separated by asterisks or dots, in the usual
- X format. <EM>Value</EM> contains a text string to associate with
- <EM>pattern</EM>; this is the value that will be returned in calls to
- the <STRONG>optionGet</STRONG> method. If <EM>priority</EM> is specified, it indicates
- the priority level for this option (see below for legal values);
- it defaults to <STRONG>interactive</STRONG>. This method always returns an empty
- string.
- <P></P>
- <DT><STRONG><A NAME="item_optionClear"><EM>$widget</EM>-><STRONG>optionClear</STRONG>;</A></STRONG><BR>
- <DD>
- The <STRONG>optionClear</STRONG> method clears the option database. Default
- options (from the <STRONG>RESOURCE_MANAGER</STRONG> property or the <STRONG>.Xdefaults</STRONG>
- file) will be reloaded automatically the next time an option is
- added to the database or removed from it. This method always returns
- an empty string.
- <P></P>
- <DT><STRONG><A NAME="item_optionGet"><EM>$widget</EM>-><STRONG>optionGet</STRONG>(<EM>name,class</EM>);</A></STRONG><BR>
- <DD>
- The <STRONG>optionGet</STRONG> method returns the value of the option specified for
- <EM>$widget</EM> under <EM>name</EM> and <EM>class</EM>. To look up the option,
- <STRONG>optionGet</STRONG> matches the patterns in the resource database against
- <EM>$widget</EM>'s <EM>pathname</EM> along with the class of <EM>$widget</EM>
- (or its parent if <EM>$widget</EM> has no class specified). The widget's
- class and name are options set when the widget is created (not
- related to class in the sense of <A HREF="../../../lib/Pod/perlfunc.html#item_bless">bless</A>); the <STRONG>MainWindow</STRONG>'s name
- is the <STRONG>appname</STRONG> and its class is (by default) derived from the name
- of the script.
- <P>If several entries in the option database match <EM>$widget</EM>'s <EM>pathname</EM>,
- <EM>name</EM>, and <EM>class</EM>, then the method returns whichever was created with
- highest <EM>priority</EM> level. If there are several matching
- entries at the same priority level, then it returns whichever entry
- was <EM>most recently entered</EM> into the option database. If there are
- no matching entries, then the empty string is returned.</P>
- <P></P>
- <DT><STRONG><A NAME="item_optionReadfile"><EM>$widget</EM>-><STRONG>optionReadfile</STRONG>(<EM>fileName</EM>?,<EM>priority</EM>?);</A></STRONG><BR>
- <DD>
- The <STRONG>optionReadfile</STRONG> method reads <EM>fileName</EM>, which should have the
- standard format for an X resource database such as <STRONG>.Xdefaults</STRONG>, and
- adds all the options specified in that file to the option database.
- If <EM>priority</EM> is specified, it indicates the priority level at which
- to enter the options; <EM>priority</EM> defaults to <STRONG>interactive</STRONG>.
- <P>The <EM>priority</EM> arguments to the <STRONG>option</STRONG> methods are
- normally specified symbolically using one of the following values:</P>
- <DL>
- <DT><STRONG><A NAME="item_widgetDefault"><STRONG>widgetDefault</STRONG></A></STRONG><BR>
- <DD>
- Level 20. Used for default values hard-coded into widgets.
- <P></P>
- <DT><STRONG><A NAME="item_startupFile"><STRONG>startupFile</STRONG></A></STRONG><BR>
- <DD>
- Level 40. Used for options specified in application-specific
- startup files.
- <P></P>
- <DT><STRONG><A NAME="item_userDefault"><STRONG>userDefault</STRONG></A></STRONG><BR>
- <DD>
- Level 60. Used for options specified in user-specific defaults
- files, such as <STRONG>.Xdefaults</STRONG>, resource databases loaded into
- the X server, or user-specific startup files.
- <P></P>
- <DT><STRONG><A NAME="item_interactive"><STRONG>interactive</STRONG></A></STRONG><BR>
- <DD>
- Level 80. Used for options specified interactively after the application
- starts running. If <EM>priority</EM> isn't specified, it defaults to
- this level.
- <P></P></DL>
- <P>Any of the above keywords may be abbreviated. In addition, priorities
- may be specified numerically using integers between 0 and 100,
- inclusive. The numeric form is probably a bad idea except for new priority
- levels other than the ones given above.</P>
- </DL>
- <P>
- <HR>
- <H1><A NAME="bugs">BUGS</A></H1>
- <P>The priority scheme used by core Tk is not the same as used by normal Xlib
- routines. In particular is assumes that the order of the entries is defined,
- but user commands like <STRONG>xrdb -merge</STRONG> can change the order.</P>
- <P>
- <HR>
- <H1><A NAME="see also">SEE ALSO</A></H1>
- <P><A HREF="../../../site/lib/Tk/Xrm.html">Tk::Xrm</A></P>
- <P>
- <HR>
- <H1><A NAME="keywords">KEYWORDS</A></H1>
- <P>database, option, priority, retrieve</P>
- <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
- <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
- <STRONG><P CLASS=block> option - Using the option database in Perl/Tk</P></STRONG>
- </TD></TR>
- </TABLE>
-
- </BODY>
-
- </HTML>
-