home *** CD-ROM | disk | FTP | other *** search
-
- <HTML>
- <HEAD>
- <TITLE>Tk::Widget - Base class of all widgets</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> Tk::Widget - Base class of all widgets</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>
- <LI><A HREF="#caveats">CAVEATS</A></LI>
- <LI><A HREF="#keywords">KEYWORDS</A></LI>
- </UL>
- <!-- INDEX END -->
-
- <HR>
- <P>
- <H1><A NAME="name">NAME</A></H1>
- <P>Tk::Widget - Base class of all widgets</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>
- <PRE>
- package Tk::Whatever;
- require Tk::Widget;
- @ISA = qw(Tk::Widget);
- Construct Tk::Widget 'Whatever';</PRE>
- <PRE>
- sub Tk_cmd { \&Tk::whatever }</PRE>
- <P> <EM>$widget</EM>-><EM>method</EM>(?<EM>arg, arg, ...</EM>?)</P>
- <P>
- <HR>
- <H1><A NAME="description">DESCRIPTION</A></H1>
- <P>The <STRONG>Tk::Widget</STRONG> is an abstract base class for all Tk widgets.</P>
- <P>Generic methods available to all widgets include the methods based on core
- <CODE>winfo</CODE> mechanism and are used to retrieve information about windows managed by
- Tk. They can take any of a number of different forms, depending on the <EM>method</EM>.
- The legal forms are:</P>
- <DL>
- <DT><STRONG><A NAME="item_appname"><EM>$widget</EM>-><STRONG>appname</STRONG>?(<EM>newName</EM>)?</A></STRONG><BR>
- <DD>
- If <EM>newName</EM> isn't specified, this method returns the name
- of the application (the name that may be used in <STRONG>send</STRONG>
- commands to communicate with the application).
- If <EM>newName</EM> is specified, then the name of the application
- is changed to <EM>newName</EM>.
- If the given name is already in use, then a suffix of the form
- ``<STRONG> #2</STRONG>'' or ``<STRONG> #3</STRONG>'' is appended in order to make the name unique.
- The method's result is the name actually chosen.
- <EM>newName</EM> should not start with a capital letter.
- This will interfere with <A HREF="../../../site/lib/Tk/option.html">option</A> processing, since names starting with
- capitals are assumed to be classes; as a result, Tk may not
- be able to find some options for the application.
- If sends have been disabled by deleting the <STRONG>send</STRONG> command,
- this command will reenable them and recreate the <STRONG>send</STRONG>
- command.
- <P></P>
- <DT><STRONG><A NAME="item_atom"><EM>$widget</EM>-><STRONG>atom</STRONG>(<EM>name</EM>)</A></STRONG><BR>
- <DD>
- Returns a decimal string giving the integer identifier for the
- atom whose name is <EM>name</EM>. If no atom exists with the name
- <EM>name</EM> then a new one is created.
- <P></P>
- <DT><STRONG><A NAME="item_atomname"><EM>$widget</EM>-><STRONG>atomname</STRONG>(<EM>id</EM>)</A></STRONG><BR>
- <DD>
- Returns the textual name for the atom whose integer identifier is
- <EM>id</EM>.
- This command is the inverse of the <EM>$widget</EM>-><STRONG>atom</STRONG> command.
- It generates an error if no such atom exists.
- <P></P>
- <DT><STRONG><A NAME="item_bell"><EM>$widget</EM>-><STRONG>bell</STRONG></A></STRONG><BR>
- <DD>
- This command rings the bell on the display for <EM>$widget</EM> and
- returns an empty string.
- The command uses the current bell-related settings for the display, which
- may be modified with programs such as <STRONG>xset</STRONG>.
- <P>This command also resets the screen saver for the screen. Some
- screen savers will ignore this, but others will reset so that the
- screen becomes visible again.</P>
- <P></P>
- <DT><STRONG><A NAME="item_Busy"><EM>$widget</EM>-><STRONG>Busy</STRONG>?(?-recurse => 1?<EM>-option =</EM> value>?)?</A></STRONG><BR>
- <DD>
- This method <STRONG>configure</STRONG>s a <STRONG>-cursor</STRONG> option for <EM>$widget</EM> and
- (if <STRONG>-recurse =</STRONG> 1> is specified) all its descendants. The cursor to
- be set may be passed as <STRONG>-cursor</STRONG> = <EM>cursor</EM>> or defaults to 'watch'.
- Additional <STRONG>configure</STRONG> options are applied to <EM>$widget</EM> only.
- It also adds a special tag <STRONG>'Busy'</STRONG> to the <STRONG>bindtags</STRONG> of the widgets so
- configured so that <STRONG>KeyPress</STRONG>, <STRONG>KeyRelease</STRONG>, <STRONG>ButtonPress</STRONG> and
- <STRONG>ButtonRelease</STRONG> events are ignored (with press events generating a call to
- <STRONG>bell</STRONG>). It then acquires a local <STRONG>grab</STRONG> for <EM>$widget</EM>.
- The state of the widgets and the grab is restored by a call to
- <EM>$widget</EM>-><STRONG>Unbusy</STRONG>.
- <P></P>
- <DT><STRONG><A NAME="item_cells"><EM>$widget</EM>-><STRONG>cells</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving the number of cells in the
- color map for <EM>$widget</EM>.
- <P></P>
- <DT><STRONG><A NAME="item_children"><EM>$widget</EM>-><STRONG>children</STRONG></A></STRONG><BR>
- <DD>
- <EM>$widget-</EM>><STRONG>children</STRONG>
- Returns a list containing all the children
- of $widget. The list is in stacking order, with the lowest
- window first. Top-level windows are returned as children
- of their logical parents.
- <P></P>
- <DT><STRONG><A NAME="item_class"><EM>$widget</EM>-><STRONG>class</STRONG></A></STRONG><BR>
- <DD>
- Returns the class name for <EM>$widget</EM>.
- <P></P>
- <DT><STRONG><A NAME="item_colormapfull"><EM>$widget</EM>-><STRONG>colormapfull</STRONG></A></STRONG><BR>
- <DD>
- Returns 1 if the colormap for <EM>$widget</EM> is known to be full, 0
- otherwise. The colormap for a window is ``known'' to be full if the last
- attempt to allocate a new color on that window failed and this
- application hasn't freed any colors in the colormap since the
- failed allocation.
- <P></P>
- <DT><STRONG><A NAME="item_containing"><EM>$widget</EM>-><STRONG>containing</STRONG>(<EM>rootX,rootY</EM>)</A></STRONG><BR>
- <DD>
- Returns the window containing the point given
- by <EM>rootX</EM> and <EM>rootY</EM>.
- <EM>RootX</EM> and <EM>rootY</EM> are specified in screen units (i.e.
- any form acceptable to <STRONG>Tk_GetPixels</STRONG>) in the coordinate
- system of the root window (if a virtual-root window manager is in
- use then the coordinate system of the virtual root window is used).
- If no window in this application contains the point then an empty
- string is returned.
- In selecting the containing window, children are given higher priority
- than parents and among siblings the highest one in the stacking order is
- chosen.
- <P></P>
- <DT><STRONG><A NAME="item_depth"><EM>$widget</EM>-><STRONG>depth</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving the depth of <EM>$widget</EM> (number
- of bits per pixel).
- <P></P>
- <DT><STRONG><A NAME="item_destroy"><EM>$widget</EM>-><STRONG>destroy</STRONG></A></STRONG><BR>
- <DD>
- This command deletes the window related to
- <EM>$widget</EM>, plus all its descendants.
- If all the <STRONG>MainWindows</STRONG> are deleted then the entire application
- will be destroyed.
- <P>The perl object <EM>$widget</EM> continues to exist while references
- to it still exist, e.g. until variable goes out of scope.
- However any attempt to use Tk methods on the object will fail.
- <STRONG>Exists</STRONG>(<EM>$widget</EM>) will return false on such objects.</P>
- <P>Note however that while a window exists for <EM>$widget</EM> the
- perl object is maintained (due to ``references'' in perl/Tk internals)
- even though original variables may have gone out of scope.
- (Normally this is intuitive.)</P>
- <P></P>
- <DT><STRONG><A NAME="item_Exists"><STRONG>Exists</STRONG>(<EM>$widget</EM>)</A></STRONG><BR>
- <DD>
- Returns 1 if there exists a window for <EM>$widget</EM>, 0 if no such
- window exists.
- <P></P>
- <DT><STRONG><A NAME="item_font"><EM>$widget</EM>-><STRONG>font</STRONG>(<EM>option</EM>?, <EM>arg, arg, ...</EM>?)</A></STRONG><BR>
- <DD>
- Create and inspect fonts. See <A HREF="../../../site/lib/Tk/Font.html">the Tk::Font manpage</A> for further details.
- <P></P>
- <DT><STRONG><A NAME="item_fpixels"><EM>$widget</EM>-><STRONG>fpixels</STRONG>(<EM>number</EM>)</A></STRONG><BR>
- <DD>
- Returns a floating-point value giving the number of pixels
- in <EM>$widget</EM> corresponding to the distance given by <EM>number</EM>.
- <EM>Number</EM> may be specified in any of the forms acceptable
- to <STRONG>Tk_GetScreenMM</STRONG>, such as ``2.0c'' or ``1i''.
- The return value may be fractional; for an integer value, use
- <EM>$widget</EM>-><STRONG>pixels</STRONG>.
- <P></P>
- <DT><STRONG><A NAME="item_Getimage"><EM>$widget</EM>-><STRONG>Getimage</STRONG>(<EM>name</EM>)</A></STRONG><BR>
- <DD>
- Given <EM>name</EM>, look for an image file with that base name and return
- a <A HREF="../../../site/lib/Tk/Image.html">the Tk::Image manpage</A>. File extensions are tried in this order: <EM>xpm</EM>,
- <EM>gif</EM>, <EM>ppm</EM>, <EM>xbm</EM> until a valid iamge is found. If no image is
- found, try a builtin image with that name.
- <P></P>
- <DT><STRONG><A NAME="item_geometry"><EM>$widget</EM>-><STRONG>geometry</STRONG></A></STRONG><BR>
- <DD>
- Returns the geometry for <EM>$widget</EM>, in the form
- <EM>width</EM><STRONG>x</STRONG><EM>height</EM><STRONG>+</STRONG><EM>x</EM><STRONG>+</STRONG><EM>y</EM>. All dimensions are
- in pixels.
- <P></P>
- <DT><STRONG><A NAME="item_height"><EM>$widget</EM>-><STRONG>height</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving <EM>$widget</EM>'s height in pixels.
- When a window is first created its height will be 1 pixel; the
- height will eventually be changed by a geometry manager to fulfill
- the window's needs.
- If you need the true height immediately after creating a widget,
- invoke <STRONG>update</STRONG> to force the geometry manager to arrange it,
- or use <EM>$widget</EM>-><STRONG>reqheight</STRONG> to get the window's requested height
- instead of its actual height.
- <P></P>
- <DT><STRONG><A NAME="item_id"><EM>$widget</EM>-><STRONG>id</STRONG></A></STRONG><BR>
- <DD>
- Returns a hexadecimal string giving a low-level platform-specific
- identifier for $widget. On Unix platforms, this is the X
- window identifier. Under Windows, this is the Windows
- HWND. On the Macintosh the value has no meaning outside Tk.
- <P></P>
- <DT><STRONG><A NAME="item_idletasks"><EM>$widget</EM>-><STRONG>idletasks</STRONG></A></STRONG><BR>
- <DD>
- One of two methods which are used to bring the application ``up to date''
- by entering the event loop repeated until all pending events
- (including idle callbacks) have been processed.
- <P>If the <STRONG>idletasks</STRONG> method is specified, then no new events or errors
- are processed; only idle callbacks are invoked. This causes operations
- that are normally deferred, such as display updates and window layout
- calculations, to be performed immediately.</P>
- <P>The <STRONG>idletasks</STRONG> command is useful in scripts where changes have been
- made to the application's state and you want those changes to appear
- on the display immediately, rather than waiting for the script to
- complete. Most display updates are performed as idle callbacks, so
- <STRONG>idletasks</STRONG> will cause them to run. However, there are some kinds of
- updates that only happen in response to events, such as those
- triggered by window size changes; these updates will not occur in
- <STRONG>idletasks</STRONG>.</P>
- <P></P>
- <DT><STRONG><A NAME="item_interps"><EM>$widget</EM>-><STRONG>interps</STRONG></A></STRONG><BR>
- <DD>
- Returns a list whose members are the names of all Tcl interpreters
- (e.g. all Tk-based applications) currently registered for
- a particular display.
- The return value refers
- to the display of <EM>$widget</EM>.
- <P></P>
- <DT><STRONG><A NAME="item_ismapped"><EM>$widget</EM>-><STRONG>ismapped</STRONG></A></STRONG><BR>
- <DD>
- Returns <STRONG>1</STRONG> if <EM>$widget</EM> is currently mapped, <STRONG>0</STRONG> otherwise.
- <P></P>
- <DT><STRONG><A NAME="item_lower"><EM>$widget-</EM>><STRONG>lower</STRONG>(?<EM>belowThis</EM>?)</A></STRONG><BR>
- <DD>
- If the <EM>belowThis</EM> argument is omitted then the command lowers
- $widget so that it is below all of its siblings in the stacking
- order (it will be obscured by any siblings that overlap it and
- will not obscure any siblings).
- If <EM>belowThis</EM> is specified then it must be the path name of
- a window that is either a sibling of $widget or the descendant
- of a sibling of $widget.
- In this case the <STRONG>lower</STRONG> command will insert
- $widget into the stacking order just below <EM>belowThis</EM>
- (or the ancestor of <EM>belowThis</EM> that is a sibling of $widget);
- this could end up either raising or lowering $widget.
- <P></P>
- <DT><STRONG><A NAME="item_MapWindow"><EM>$widget</EM>-><STRONG>MapWindow</STRONG></A></STRONG><BR>
- <DD>
- Cause <EM>$widget</EM> to be ``mapped'' i.e. made visible on the display.
- May confuse the geometry manager (pack, grid, place, ...)
- that thinks it is managing the widget.
- <P></P>
- <DT><STRONG><A NAME="item_manager"><EM>$widget</EM>-><STRONG>manager</STRONG></A></STRONG><BR>
- <DD>
- Returns the name of the geometry manager currently
- responsible for <EM>$widget</EM>, or an empty string if <EM>$widget</EM>
- isn't managed by any geometry manager.
- The name is usually the name of the method for the geometry
- manager, such as <STRONG>pack</STRONG> or <STRONG>place</STRONG>.
- If the geometry manager is a widget, such as canvases or text, the
- name is the widget's class command, such as <STRONG>canvas</STRONG>.
- <P></P>
- <DT><STRONG><A NAME="item_name"><EM>$widget</EM>-><STRONG>name</STRONG></A></STRONG><BR>
- <DD>
- Returns <EM>$widget</EM>'s name (i.e. its name within its parent, as opposed
- to its full path name).
- The command <EM>$mainwin</EM>-><STRONG>name</STRONG> will return the name of the application.
- <P></P>
- <DT><STRONG><A NAME="item_OnDestroy"><EM>$widget</EM>-><STRONG>OnDestroy</STRONG>(<EM>callback</EM>);</A></STRONG><BR>
- <DD>
- OnDestroy accepts a standard perl/Tk <EM>callback</EM>.
- When the window associated with <EM>$widget</EM> is destroyed then
- the callback is invoked. Unlike <EM>$widget-</EM>>bind('<Destroy>',...)
- the widgets methods are still available when <EM>callback</EM> is executed,
- so (for example) a <STRONG>Text</STRONG> widget can save its contents to a file.
- <P>OnDestroy was required for new <STRONG>after</STRONG> mechanism.</P>
- <P></P>
- <DT><STRONG><A NAME="item_parent"><EM>$widget</EM>-><STRONG>parent</STRONG></A></STRONG><BR>
- <DD>
- Returns <EM>$widget</EM>'s parent, or an empty string
- if <EM>$widget</EM> is the main window of the application.
- <P></P>
- <DT><STRONG><A NAME="item_PathName"><EM>$widget</EM>-><STRONG>PathName</STRONG></A></STRONG><BR>
- <DD>
- Returns the tk path name of <EM>$widget</EM>. (This is an import from the
- C interface.)
- <P></P>
- <DT><STRONG><A NAME="item_pathname"><EM>$widget</EM>-><STRONG>pathname</STRONG>(<EM>id</EM>)</A></STRONG><BR>
- <DD>
- Returns an object whose X identifier is <EM>id</EM>.
- The identifier is looked up on the display of <EM>$widget</EM>.
- <EM>Id</EM> must be a decimal, hexadecimal, or octal integer and must
- correspond to a window in the invoking application, or an error
- occurs which can be trapped with <A HREF="../../../lib/Pod/perlfunc.html#item_eval"><CODE>eval { }</CODE></A> or <CODE>Tk::catch { }</CODE>.
- If the window belongs to the application, but is not an object
- (for example wrapper windows, HList header, etc.) then <A HREF="../../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>
- is returned.
- <P></P>
- <DT><STRONG><A NAME="item_pixels"><EM>$widget</EM>-><STRONG>pixels</STRONG>(<EM>number</EM>)</A></STRONG><BR>
- <DD>
- Returns the number of pixels in <EM>$widget</EM> corresponding
- to the distance given by <EM>number</EM>.
- <EM>Number</EM> may be specified in any of the forms acceptable
- to <STRONG>Tk_GetPixels</STRONG>, such as ``2.0c'' or ``1i''.
- The result is rounded to the nearest integer value; for a
- fractional result, use <EM>$widget</EM>-><STRONG>fpixels</STRONG>.
- <P></P>
- <DT><STRONG><A NAME="item_pointerx"><EM>$widget</EM>-><STRONG>pointerx</STRONG></A></STRONG><BR>
- <DD>
- If the mouse pointer is on the same screen as <EM>$widget</EM>, returns the
- pointer's x coordinate, measured in pixels in the screen's root window.
- If a virtual root window is in use on the screen, the position is
- measured in the virtual root.
- If the mouse pointer isn't on the same screen as <EM>$widget</EM> then
- -1 is returned.
- <P></P>
- <DT><STRONG><A NAME="item_pointerxy"><EM>$widget</EM>-><STRONG>pointerxy</STRONG></A></STRONG><BR>
- <DD>
- If the mouse pointer is on the same screen as <EM>$widget</EM>, returns a list
- with two elements, which are the pointer's x and y coordinates measured
- in pixels in the screen's root window.
- If a virtual root window is in use on the screen, the position
- is computed in the virtual root.
- If the mouse pointer isn't on the same screen as <EM>$widget</EM> then
- both of the returned coordinates are -1.
- <P></P>
- <DT><STRONG><A NAME="item_pointery"><EM>$widget</EM>-><STRONG>pointery</STRONG></A></STRONG><BR>
- <DD>
- If the mouse pointer is on the same screen as <EM>$widget</EM>, returns the
- pointer's y coordinate, measured in pixels in the screen's root window.
- If a virtual root window is in use on the screen, the position
- is computed in the virtual root.
- If the mouse pointer isn't on the same screen as <EM>$widget</EM> then
- -1 is returned.
- <P></P>
- <DT><STRONG><A NAME="item_raise"><EM>$widget</EM>-><STRONG>raise</STRONG>(?<EM>aboveThis</EM>?)</A></STRONG><BR>
- <DD>
- If the <EM>aboveThis</EM> argument is omitted then the command raises
- $widget so that it is above all of its siblings in the stacking
- order (it will not be obscured by any siblings and will obscure
- any siblings that overlap it).
- If <EM>aboveThis</EM> is specified then it must be the path name of
- a window that is either a sibling of $widget or the descendant
- of a sibling of $widget.
- In this case the <STRONG>raise</STRONG> command will insert
- $widget into the stacking order just above <EM>aboveThis</EM>
- (or the ancestor of <EM>aboveThis</EM> that is a sibling of $widget);
- this could end up either raising or lowering $widget.
- <P></P>
- <DT><STRONG><A NAME="item_reqheight"><EM>$widget</EM>-><STRONG>reqheight</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving <EM>$widget</EM>'s requested height,
- in pixels. This is the value used by <EM>$widget</EM>'s geometry
- manager to compute its geometry.
- <P></P>
- <DT><STRONG><A NAME="item_reqwidth"><EM>$widget</EM>-><STRONG>reqwidth</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving <EM>$widget</EM>'s requested width,
- in pixels. This is the value used by <EM>$widget</EM>'s geometry
- manager to compute its geometry.
- <P></P>
- <DT><STRONG><A NAME="item_rgb"><EM>$widget</EM>-><STRONG>rgb</STRONG>(<EM>color</EM>)</A></STRONG><BR>
- <DD>
- Returns a list containing three decimal values, which are the
- red, green, and blue intensities that correspond to <EM>color</EM> in
- the window given by <EM>$widget</EM>. <EM>Color</EM>
- may be specified in any of the forms acceptable for a color
- option.
- <P></P>
- <DT><STRONG><A NAME="item_rootx"><EM>$widget</EM>-><STRONG>rootx</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving the x-coordinate, in the root
- window of the screen, of the
- upper-left corner of <EM>$widget</EM>'s border (or <EM>$widget</EM> if it
- has no border).
- <P></P>
- <DT><STRONG><A NAME="item_rooty"><EM>$widget</EM>-><STRONG>rooty</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving the y-coordinate, in the root
- window of the screen, of the
- upper-left corner of <EM>$widget</EM>'s border (or <EM>$widget</EM> if it
- has no border).
- <P></P>
- <DT><STRONG><A NAME="item_scaling"><STRONG>scaling</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><EM>$widget</EM>-><STRONG>scaling</STRONG>?(<EM>number</EM>)?</STRONG><BR>
- <DD>
- Sets and queries the current scaling factor used by Tk to convert between
- physical units (for example, points, inches, or millimeters) and pixels. The
- <EM>number</EM> argument is a floating point number that specifies the number of
- pixels per point on $widget's display. If the <EM>number</EM> argument is
- omitted, the current value of the scaling factor is returned.
- <P>A ``point'' is a unit of measurement equal to 1/72 inch. A scaling factor
- of 1.0 corresponds to 1 pixel per point, which is equivalent to a standard
- 72 dpi monitor. A scaling factor of 1.25 would mean 1.25 pixels per point,
- which is the setting for a 90 dpi monitor; setting the scaling factor to
- 1.25 on a 72 dpi monitor would cause everything in the application to be
- displayed 1.25 times as large as normal. The initial value for the scaling
- factor is set when the application starts, based on properties of the
- installed monitor (as reported via the window system),
- but it can be changed at any time. Measurements made
- after the scaling factor is changed will use the new scaling factor, but it
- is undefined whether existing widgets will resize themselves dynamically to
- accomodate the new scaling factor.</P>
- <P></P>
- <DT><STRONG><A NAME="item_screen"><EM>$widget</EM>-><STRONG>screen</STRONG></A></STRONG><BR>
- <DD>
- Returns the name of the screen associated with <EM>$widget</EM>, in
- the form <EM>displayName</EM>.<EM>screenIndex</EM>.
- <P></P>
- <DT><STRONG><A NAME="item_screencells"><EM>$widget</EM>-><STRONG>screencells</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving the number of cells in the default
- color map for <EM>$widget</EM>'s screen.
- <P></P>
- <DT><STRONG><A NAME="item_screendepth"><EM>$widget</EM>-><STRONG>screendepth</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving the depth of the root window
- of <EM>$widget</EM>'s screen (number of bits per pixel).
- <P></P>
- <DT><STRONG><A NAME="item_screenheight"><EM>$widget</EM>-><STRONG>screenheight</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving the height of <EM>$widget</EM>'s screen,
- in pixels.
- <P></P>
- <DT><STRONG><A NAME="item_screenmmheight"><EM>$widget</EM>-><STRONG>screenmmheight</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving the height of <EM>$widget</EM>'s screen,
- in millimeters.
- <P></P>
- <DT><STRONG><A NAME="item_screenmmwidth"><EM>$widget</EM>-><STRONG>screenmmwidth</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving the width of <EM>$widget</EM>'s screen,
- in millimeters.
- <P></P>
- <DT><STRONG><A NAME="item_screenvisual"><EM>$widget</EM>-><STRONG>screenvisual</STRONG></A></STRONG><BR>
- <DD>
- Returns one of the following strings to indicate the default visual
- class for <EM>$widget</EM>'s screen: <STRONG>directcolor</STRONG>, <STRONG>grayscale</STRONG>,
- <STRONG>pseudocolor</STRONG>, <STRONG>staticcolor</STRONG>, <STRONG>staticgray</STRONG>, or
- <STRONG>truecolor</STRONG>.
- <P></P>
- <DT><STRONG><A NAME="item_screenwidth"><EM>$widget</EM>-><STRONG>screenwidth</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving the width of <EM>$widget</EM>'s screen,
- in pixels.
- <P></P>
- <DT><STRONG><A NAME="item_server"><EM>$widget</EM>-><STRONG>server</STRONG></A></STRONG><BR>
- <DD>
- Returns a string containing information about the server for
- <EM>$widget</EM>'s display. The exact format of this string may vary
- from platform to platform. For X servers the string
- has the form ``<STRONG>X</STRONG><EM>major</EM><STRONG>R</STRONG><EM>minor vendor vendorVersion</EM>''
- where <EM>major</EM> and <EM>minor</EM> are the version and revision
- numbers provided by the server (e.g., <STRONG>X11R5</STRONG>), <EM>vendor</EM>
- is the name of the vendor for the server, and <EM>vendorRelease</EM>
- is an integer release number provided by the server.
- <P></P>
- <DT><STRONG><A NAME="item_toplevel"><EM>$widget</EM>-><STRONG>toplevel</STRONG></A></STRONG><BR>
- <DD>
- Returns the reference of the top-level window containing <EM>$widget</EM>.
- <P></P>
- <DT><STRONG><A NAME="item_UnmapWindow"><EM>$widget</EM>-><STRONG>UnmapWindow</STRONG></A></STRONG><BR>
- <DD>
- Cause <EM>$widget</EM> to be ``unmapped'' i.e. removed from the display.
- This does for any widget what <EM>$widget</EM>->withdraw does for
- toplevel widgets. May confuse the geometry manager (pack, grid, place, ...)
- that thinks it is managing the widget.
- <P></P>
- <DT><STRONG><A NAME="item_update"><EM>$widget</EM>-><STRONG>update</STRONG></A></STRONG><BR>
- <DD>
- One of two methods which are used to bring the application ``up to date''
- by entering the event loop repeated until all pending events
- (including idle callbacks) have been processed.
- <P>The <STRONG>update</STRONG> method is useful in scripts where you are performing a
- long-running computation but you still want the application to respond
- to events such as user interactions; if you occasionally call
- <STRONG>update</STRONG> then user input will be processed during the next call to
- <STRONG>update</STRONG>.</P>
- <P></P>
- <DT><STRONG><A NAME="item_Unbusy"><EM>$widget</EM>-><STRONG>Unbusy</STRONG></A></STRONG><BR>
- <DD>
- Restores widget state after a call to <EM>$widget</EM>-><STRONG>Busy</STRONG>.
- <P></P>
- <DT><STRONG><A NAME="item_viewable"><EM>$widget</EM>-><STRONG>viewable</STRONG></A></STRONG><BR>
- <DD>
- Returns 1 if <EM>$widget</EM> and all of its ancestors up through the
- nearest toplevel window are mapped. Returns 0 if any of these
- windows are not mapped.
- <P></P>
- <DT><STRONG><A NAME="item_visual"><EM>$widget</EM>-><STRONG>visual</STRONG></A></STRONG><BR>
- <DD>
- Returns one of the following strings to indicate the visual
- class for <EM>$widget</EM>: <STRONG>directcolor</STRONG>, <STRONG>grayscale</STRONG>,
- <STRONG>pseudocolor</STRONG>, <STRONG>staticcolor</STRONG>, <STRONG>staticgray</STRONG>, or
- <STRONG>truecolor</STRONG>.
- <P></P>
- <DT><STRONG><A NAME="item_visualid"><EM>$widget</EM>-><STRONG>visualid</STRONG></A></STRONG><BR>
- <DD>
- Returns the X identifier for the visual for $widget.
- <P></P>
- <DT><STRONG><A NAME="item_visualsavailable"><EM>$widget</EM>-><STRONG>visualsavailable</STRONG>(?<STRONG>includeids</STRONG>?)</A></STRONG><BR>
- <DD>
- Returns a list whose elements describe the visuals available for
- <EM>$widget</EM>'s screen.
- Each element consists of a visual class followed by an integer depth.
- The class has the same form as returned by <EM>$widget</EM>-><STRONG>visual</STRONG>.
- The depth gives the number of bits per pixel in the visual.
- In addition, if the <STRONG>includeids</STRONG> argument is provided, then the
- depth is followed by the X identifier for the visual.
- <P></P>
- <DT><STRONG><A NAME="item_vrootheight"><EM>$widget</EM>-><STRONG>vrootheight</STRONG></A></STRONG><BR>
- <DD>
- Returns the height of the virtual root window associated with <EM>$widget</EM>
- if there is one; otherwise returns the height of <EM>$widget</EM>'s screen.
- <P></P>
- <DT><STRONG><A NAME="item_vrootwidth"><EM>$widget</EM>-><STRONG>vrootwidth</STRONG></A></STRONG><BR>
- <DD>
- Returns the width of the virtual root window associated with <EM>$widget</EM>
- if there is one; otherwise returns the width of <EM>$widget</EM>'s screen.
- <P></P>
- <DT><STRONG><A NAME="item_vrootx"><EM>$widget</EM>-><STRONG>vrootx</STRONG></A></STRONG><BR>
- <DD>
- Returns the x-offset of the virtual root window associated with <EM>$widget</EM>,
- relative to the root window of its screen.
- This is normally either zero or negative.
- Returns 0 if there is no virtual root window for <EM>$widget</EM>.
- <P></P>
- <DT><STRONG><A NAME="item_vrooty"><EM>$widget</EM>-><STRONG>vrooty</STRONG></A></STRONG><BR>
- <DD>
- Returns the y-offset of the virtual root window associated with <EM>$widget</EM>,
- relative to the root window of its screen.
- This is normally either zero or negative.
- Returns 0 if there is no virtual root window for <EM>$widget</EM>.
- <P></P>
- <DT><STRONG><A NAME="item_waitVariable"><EM>$widget-</EM>><STRONG>waitVariable</STRONG>(\$<EM>name</EM>)</A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_waitVisibility"><EM>$widget-</EM>><STRONG>waitVisibility</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_waitWindow"><EM>$widget-</EM>><STRONG>waitWindow</STRONG></A></STRONG><BR>
- <DD>
- The <STRONG>tk wait</STRONG> methods wait for one of several things to happen,
- then it returns without taking any other actions.
- The return value is always an empty string.
- <STRONG>waitVariable</STRONG> expects a reference to a perl
- variable and the command waits for that variable to be modified.
- This form is typically used to wait for a user to finish interacting
- with a dialog which sets the variable as part (possibly final)
- part of the interaction.
- <STRONG>waitVisibility</STRONG> waits for a change in <EM>$widget</EM>'s
- visibility state (as indicated by the arrival of a VisibilityNotify
- event). This form is typically used to wait for a newly-created
- window to appear on the screen before taking some action.
- <STRONG>waitWindow</STRONG> waits for <EM>$widget</EM> to be destroyed.
- This form is typically used to wait for a user to finish interacting
- with a dialog box before using the result of that interaction.
- Note that creating and destroying the window each time a dialog is required
- makes code modular but imposes overhead which can be avoided by <STRONG>withdrawing</STRONG>
- the window instead and using <STRONG>waitVisibility</STRONG>.
- <P>While the <STRONG>tk wait</STRONG> methods are waiting they processes events in
- the normal fashion, so the application will continue to respond
- to user interactions.
- If an event handler invokes <STRONG>tkwait</STRONG> again, the nested call
- to <STRONG>tkwait</STRONG> must complete before the outer call can complete.</P>
- <P></P>
- <DT><STRONG><A NAME="item_width"><EM>$widget</EM>-><STRONG>width</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving <EM>$widget</EM>'s width in pixels.
- When a window is first created its width will be 1 pixel; the
- width will eventually be changed by a geometry manager to fulfill
- the window's needs.
- If you need the true width immediately after creating a widget,
- invoke <STRONG>update</STRONG> to force the geometry manager to arrange it,
- or use <EM>$widget</EM>-><STRONG>reqwidth</STRONG> to get the window's requested width
- instead of its actual width.
- <P></P>
- <DT><STRONG><A NAME="item_x"><EM>$widget</EM>-><STRONG>x</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving the x-coordinate, in <EM>$widget</EM>'s
- parent, of the upper-left corner of <EM>$widget</EM>'s border (or <EM>$widget</EM>
- if it has no border).
- <P></P>
- <DT><STRONG><A NAME="item_y"><EM>$widget</EM>-><STRONG>y</STRONG></A></STRONG><BR>
- <DD>
- Returns a decimal string giving the y-coordinate, in <EM>$widget</EM>'s
- parent, of the
- upper-left corner of <EM>$widget</EM>'s border (or <EM>$widget</EM> if it
- has no border).
- <P></P></DL>
- <P>
- <HR>
- <H1><A NAME="caveats">CAVEATS</A></H1>
- <P>The above documentaion on generic methods is incomplete.</P>
- <P>
- <HR>
- <H1><A NAME="keywords">KEYWORDS</A></H1>
- <P>atom, children, class, geometry, height, identifier, information, interpreters,
- mapped, parent, path name, screen, virtual root, width, window</P>
- <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
- <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
- <STRONG><P CLASS=block> Tk::Widget - Base class of all widgets</P></STRONG>
- </TD></TR>
- </TABLE>
-
- </BODY>
-
- </HTML>
-