home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _9110f7c48cb64b07b398b70d1fb48afe < prev    next >
Text File  |  2000-03-23  |  32KB  |  628 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Tk::Widget - Base class of all widgets</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Tk::Widget - Base class of all widgets</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#caveats">CAVEATS</A></LI>
  26.     <LI><A HREF="#keywords">KEYWORDS</A></LI>
  27. </UL>
  28. <!-- INDEX END -->
  29.  
  30. <HR>
  31. <P>
  32. <H1><A NAME="name">NAME</A></H1>
  33. <P>Tk::Widget - Base class of all widgets</P>
  34. <P>
  35. <HR>
  36. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  37. <UL>
  38. <LI>Linux</LI>
  39. <LI>Solaris</LI>
  40. <LI>Windows</LI>
  41. </UL>
  42. <HR>
  43. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  44. <PRE>
  45.    package Tk::Whatever;
  46.    require Tk::Widget;
  47.    @ISA = qw(Tk::Widget);
  48.    Construct Tk::Widget 'Whatever';</PRE>
  49. <PRE>
  50.    sub Tk_cmd { \&Tk::whatever }</PRE>
  51. <P>   <EM>$widget</EM>-><EM>method</EM>(?<EM>arg, arg, ...</EM>?)</P>
  52. <P>
  53. <HR>
  54. <H1><A NAME="description">DESCRIPTION</A></H1>
  55. <P>The <STRONG>Tk::Widget</STRONG> is an abstract base class for all Tk widgets.</P>
  56. <P>Generic methods available to all widgets include the methods based on core
  57. <CODE>winfo</CODE> mechanism and are used to retrieve information about windows managed by
  58. Tk. They can take any of a number of different forms, depending on the <EM>method</EM>.
  59. The legal forms are:</P>
  60. <DL>
  61. <DT><STRONG><A NAME="item_appname"><EM>$widget</EM>-><STRONG>appname</STRONG>?(<EM>newName</EM>)?</A></STRONG><BR>
  62. <DD>
  63. If <EM>newName</EM> isn't specified, this method returns the name
  64. of the application (the name that may be used in <STRONG>send</STRONG>
  65. commands to communicate with the application).
  66. If <EM>newName</EM> is specified, then the name of the application
  67. is changed to <EM>newName</EM>.
  68. If the given name is already in use, then a suffix of the form
  69. ``<STRONG> #2</STRONG>'' or ``<STRONG> #3</STRONG>'' is appended in order to make the name unique.
  70. The method's result is the name actually chosen.
  71. <EM>newName</EM> should not start with a capital letter.
  72. This will interfere with <A HREF="../../../site/lib/Tk/option.html">option</A> processing, since names starting with
  73. capitals are assumed to be classes;  as a result, Tk may not
  74. be able to find some options for the application.
  75. If sends have been disabled by deleting the <STRONG>send</STRONG> command,
  76. this command will reenable them and recreate the <STRONG>send</STRONG>
  77. command.
  78. <P></P>
  79. <DT><STRONG><A NAME="item_atom"><EM>$widget</EM>-><STRONG>atom</STRONG>(<EM>name</EM>)</A></STRONG><BR>
  80. <DD>
  81. Returns a decimal string giving the integer identifier for the
  82. atom whose name is <EM>name</EM>.  If no atom exists with the name
  83. <EM>name</EM> then a new one is created.
  84. <P></P>
  85. <DT><STRONG><A NAME="item_atomname"><EM>$widget</EM>-><STRONG>atomname</STRONG>(<EM>id</EM>)</A></STRONG><BR>
  86. <DD>
  87. Returns the textual name for the atom whose integer identifier is
  88. <EM>id</EM>.
  89. This command is the inverse of the <EM>$widget</EM>-><STRONG>atom</STRONG> command.
  90. It generates an error if no such atom exists.
  91. <P></P>
  92. <DT><STRONG><A NAME="item_bell"><EM>$widget</EM>-><STRONG>bell</STRONG></A></STRONG><BR>
  93. <DD>
  94. This command rings the bell on the display for <EM>$widget</EM> and
  95. returns an empty string.
  96. The command uses the current bell-related settings for the display, which
  97. may be modified with programs such as <STRONG>xset</STRONG>.
  98. <P>This command also resets the screen saver for the screen.  Some
  99. screen savers will ignore this, but others will reset so that the
  100. screen becomes visible again.</P>
  101. <P></P>
  102. <DT><STRONG><A NAME="item_Busy"><EM>$widget</EM>-><STRONG>Busy</STRONG>?(?-recurse => 1?<EM>-option =</EM> value>?)?</A></STRONG><BR>
  103. <DD>
  104. This method <STRONG>configure</STRONG>s a <STRONG>-cursor</STRONG> option for <EM>$widget</EM> and 
  105. (if <STRONG>-recurse =</STRONG> 1> is specified) all its descendants. The cursor to 
  106. be set may be passed as <STRONG>-cursor</STRONG> = <EM>cursor</EM>> or defaults to 'watch'.
  107. Additional <STRONG>configure</STRONG> options are applied to <EM>$widget</EM> only.
  108. It also adds a special tag <STRONG>'Busy'</STRONG> to the <STRONG>bindtags</STRONG> of the widgets so
  109. configured so that  <STRONG>KeyPress</STRONG>, <STRONG>KeyRelease</STRONG>, <STRONG>ButtonPress</STRONG> and
  110. <STRONG>ButtonRelease</STRONG> events are ignored (with press events generating a call to
  111. <STRONG>bell</STRONG>). It then acquires a local <STRONG>grab</STRONG> for <EM>$widget</EM>.
  112. The state of the widgets and the grab is restored by a call to 
  113. <EM>$widget</EM>-><STRONG>Unbusy</STRONG>.
  114. <P></P>
  115. <DT><STRONG><A NAME="item_cells"><EM>$widget</EM>-><STRONG>cells</STRONG></A></STRONG><BR>
  116. <DD>
  117. Returns a decimal string giving the number of cells in the
  118. color map for <EM>$widget</EM>.
  119. <P></P>
  120. <DT><STRONG><A NAME="item_children"><EM>$widget</EM>-><STRONG>children</STRONG></A></STRONG><BR>
  121. <DD>
  122. <EM>$widget-</EM>><STRONG>children</STRONG>
  123. Returns a list containing all the children
  124. of $widget.  The list is in stacking order, with the lowest
  125. window first.  Top-level windows are returned as children
  126. of their logical parents.
  127. <P></P>
  128. <DT><STRONG><A NAME="item_class"><EM>$widget</EM>-><STRONG>class</STRONG></A></STRONG><BR>
  129. <DD>
  130. Returns the class name for <EM>$widget</EM>.
  131. <P></P>
  132. <DT><STRONG><A NAME="item_colormapfull"><EM>$widget</EM>-><STRONG>colormapfull</STRONG></A></STRONG><BR>
  133. <DD>
  134. Returns 1 if the colormap for <EM>$widget</EM> is known to be full, 0
  135. otherwise.  The colormap for a window is ``known'' to be full if the last
  136. attempt to allocate a new color on that window failed and this
  137. application hasn't freed any colors in the colormap since the
  138. failed allocation.
  139. <P></P>
  140. <DT><STRONG><A NAME="item_containing"><EM>$widget</EM>-><STRONG>containing</STRONG>(<EM>rootX,rootY</EM>)</A></STRONG><BR>
  141. <DD>
  142. Returns the window containing the point given
  143. by <EM>rootX</EM> and <EM>rootY</EM>.
  144. <EM>RootX</EM> and <EM>rootY</EM> are specified in screen units (i.e.
  145. any form acceptable to <STRONG>Tk_GetPixels</STRONG>) in the coordinate
  146. system of the root window (if a virtual-root window manager is in
  147. use then the coordinate system of the virtual root window is used).
  148. If no window in this application contains the point then an empty
  149. string is returned.
  150. In selecting the containing window, children are given higher priority
  151. than parents and among siblings the highest one in the stacking order is
  152. chosen.
  153. <P></P>
  154. <DT><STRONG><A NAME="item_depth"><EM>$widget</EM>-><STRONG>depth</STRONG></A></STRONG><BR>
  155. <DD>
  156. Returns a decimal string giving the depth of <EM>$widget</EM> (number
  157. of bits per pixel).
  158. <P></P>
  159. <DT><STRONG><A NAME="item_destroy"><EM>$widget</EM>-><STRONG>destroy</STRONG></A></STRONG><BR>
  160. <DD>
  161. This command deletes the window related to
  162. <EM>$widget</EM>, plus all its descendants.
  163. If all the <STRONG>MainWindows</STRONG> are deleted then the entire application
  164. will be destroyed.
  165. <P>The perl object <EM>$widget</EM> continues to exist while references
  166. to it still exist, e.g. until variable goes out of scope.
  167. However any attempt to use Tk methods on the object will fail.
  168. <STRONG>Exists</STRONG>(<EM>$widget</EM>) will return false on such objects.</P>
  169. <P>Note however that while a window exists for <EM>$widget</EM> the
  170. perl object is maintained (due to ``references'' in perl/Tk internals)
  171. even though original variables may have gone out of scope.
  172. (Normally this is intuitive.)</P>
  173. <P></P>
  174. <DT><STRONG><A NAME="item_Exists"><STRONG>Exists</STRONG>(<EM>$widget</EM>)</A></STRONG><BR>
  175. <DD>
  176. Returns 1 if there exists a window for <EM>$widget</EM>, 0 if no such
  177. window exists.
  178. <P></P>
  179. <DT><STRONG><A NAME="item_font"><EM>$widget</EM>-><STRONG>font</STRONG>(<EM>option</EM>?, <EM>arg, arg, ...</EM>?)</A></STRONG><BR>
  180. <DD>
  181. Create and inspect fonts. See <A HREF="../../../site/lib/Tk/Font.html">the Tk::Font manpage</A> for further details.
  182. <P></P>
  183. <DT><STRONG><A NAME="item_fpixels"><EM>$widget</EM>-><STRONG>fpixels</STRONG>(<EM>number</EM>)</A></STRONG><BR>
  184. <DD>
  185. Returns a floating-point value giving the number of pixels
  186. in <EM>$widget</EM> corresponding to the distance given by <EM>number</EM>.
  187. <EM>Number</EM> may be specified in any of the forms acceptable
  188. to <STRONG>Tk_GetScreenMM</STRONG>, such as ``2.0c'' or ``1i''.
  189. The return value may be fractional;  for an integer value, use
  190. <EM>$widget</EM>-><STRONG>pixels</STRONG>.
  191. <P></P>
  192. <DT><STRONG><A NAME="item_Getimage"><EM>$widget</EM>-><STRONG>Getimage</STRONG>(<EM>name</EM>)</A></STRONG><BR>
  193. <DD>
  194. Given <EM>name</EM>, look for an image file with that base name and return
  195. a <A HREF="../../../site/lib/Tk/Image.html">the Tk::Image manpage</A>.  File extensions are tried in this order: <EM>xpm</EM>,
  196. <EM>gif</EM>, <EM>ppm</EM>, <EM>xbm</EM> until a valid iamge is found.  If no image is
  197. found, try a builtin image with that name.
  198. <P></P>
  199. <DT><STRONG><A NAME="item_geometry"><EM>$widget</EM>-><STRONG>geometry</STRONG></A></STRONG><BR>
  200. <DD>
  201. Returns the geometry for <EM>$widget</EM>, in the form
  202. <EM>width</EM><STRONG>x</STRONG><EM>height</EM><STRONG>+</STRONG><EM>x</EM><STRONG>+</STRONG><EM>y</EM>.  All dimensions are
  203. in pixels.
  204. <P></P>
  205. <DT><STRONG><A NAME="item_height"><EM>$widget</EM>-><STRONG>height</STRONG></A></STRONG><BR>
  206. <DD>
  207. Returns a decimal string giving <EM>$widget</EM>'s height in pixels.
  208. When a window is first created its height will be 1 pixel;  the
  209. height will eventually be changed by a geometry manager to fulfill
  210. the window's needs.
  211. If you need the true height immediately after creating a widget,
  212. invoke <STRONG>update</STRONG> to force the geometry manager to arrange it,
  213. or use <EM>$widget</EM>-><STRONG>reqheight</STRONG> to get the window's requested height
  214. instead of its actual height.
  215. <P></P>
  216. <DT><STRONG><A NAME="item_id"><EM>$widget</EM>-><STRONG>id</STRONG></A></STRONG><BR>
  217. <DD>
  218. Returns a hexadecimal string giving a low-level platform-specific
  219. identifier for $widget.  On Unix platforms, this is the X
  220. window identifier.  Under Windows, this is the Windows
  221. HWND.  On the Macintosh the value has no meaning outside Tk.
  222. <P></P>
  223. <DT><STRONG><A NAME="item_idletasks"><EM>$widget</EM>-><STRONG>idletasks</STRONG></A></STRONG><BR>
  224. <DD>
  225. One of two methods which are used to bring the application ``up to date''
  226. by entering the event loop repeated until all pending events
  227. (including idle callbacks) have been processed.
  228. <P>If the <STRONG>idletasks</STRONG> method is specified, then no new events or errors
  229. are processed; only idle callbacks are invoked. This causes operations
  230. that are normally deferred, such as display updates and window layout
  231. calculations, to be performed immediately.</P>
  232. <P>The <STRONG>idletasks</STRONG> command is useful in scripts where changes have been
  233. made to the application's state and you want those changes to appear
  234. on the display immediately, rather than waiting for the script to
  235. complete. Most display updates are performed as idle callbacks, so
  236. <STRONG>idletasks</STRONG> will cause them to run. However, there are some kinds of
  237. updates that only happen in response to events, such as those
  238. triggered by window size changes; these updates will not occur in
  239. <STRONG>idletasks</STRONG>.</P>
  240. <P></P>
  241. <DT><STRONG><A NAME="item_interps"><EM>$widget</EM>-><STRONG>interps</STRONG></A></STRONG><BR>
  242. <DD>
  243. Returns a list whose members are the names of all Tcl interpreters
  244. (e.g. all Tk-based applications) currently registered for
  245. a particular display.
  246. The return value refers
  247. to the display of <EM>$widget</EM>.
  248. <P></P>
  249. <DT><STRONG><A NAME="item_ismapped"><EM>$widget</EM>-><STRONG>ismapped</STRONG></A></STRONG><BR>
  250. <DD>
  251. Returns <STRONG>1</STRONG> if <EM>$widget</EM> is currently mapped, <STRONG>0</STRONG> otherwise.
  252. <P></P>
  253. <DT><STRONG><A NAME="item_lower"><EM>$widget-</EM>><STRONG>lower</STRONG>(?<EM>belowThis</EM>?)</A></STRONG><BR>
  254. <DD>
  255. If the <EM>belowThis</EM> argument is omitted then the command lowers
  256. $widget so that it is below all of its siblings in the stacking
  257. order (it will be obscured by any siblings that overlap it and
  258. will not obscure any siblings).
  259. If <EM>belowThis</EM> is specified then it must be the path name of
  260. a window that is either a sibling of $widget or the descendant
  261. of a sibling of $widget.
  262. In this case the <STRONG>lower</STRONG> command will insert
  263. $widget into the stacking order just below <EM>belowThis</EM>
  264. (or the ancestor of <EM>belowThis</EM> that is a sibling of $widget);
  265. this could end up either raising or lowering $widget.
  266. <P></P>
  267. <DT><STRONG><A NAME="item_MapWindow"><EM>$widget</EM>-><STRONG>MapWindow</STRONG></A></STRONG><BR>
  268. <DD>
  269. Cause <EM>$widget</EM> to be ``mapped'' i.e. made visible on the display.
  270. May confuse the geometry manager (pack, grid, place, ...)
  271. that thinks it is managing the widget.
  272. <P></P>
  273. <DT><STRONG><A NAME="item_manager"><EM>$widget</EM>-><STRONG>manager</STRONG></A></STRONG><BR>
  274. <DD>
  275. Returns the name of the geometry manager currently
  276. responsible for <EM>$widget</EM>, or an empty string if <EM>$widget</EM>
  277. isn't managed by any geometry manager.
  278. The name is usually the name of the method for the geometry
  279. manager, such as <STRONG>pack</STRONG> or <STRONG>place</STRONG>.
  280. If the geometry manager is a widget, such as canvases or text, the
  281. name is the widget's class command, such as <STRONG>canvas</STRONG>.
  282. <P></P>
  283. <DT><STRONG><A NAME="item_name"><EM>$widget</EM>-><STRONG>name</STRONG></A></STRONG><BR>
  284. <DD>
  285. Returns <EM>$widget</EM>'s name (i.e. its name within its parent, as opposed
  286. to its full path name).
  287. The command <EM>$mainwin</EM>-><STRONG>name</STRONG> will return the name of the application.
  288. <P></P>
  289. <DT><STRONG><A NAME="item_OnDestroy"><EM>$widget</EM>-><STRONG>OnDestroy</STRONG>(<EM>callback</EM>);</A></STRONG><BR>
  290. <DD>
  291. OnDestroy accepts a standard perl/Tk <EM>callback</EM>.
  292. When the window associated with <EM>$widget</EM> is destroyed then
  293. the callback is invoked. Unlike <EM>$widget-</EM>>bind('<Destroy>',...)
  294. the widgets methods are still available when <EM>callback</EM> is executed,
  295. so (for example) a <STRONG>Text</STRONG> widget can save its contents to a file.
  296. <P>OnDestroy was required for new <STRONG>after</STRONG> mechanism.</P>
  297. <P></P>
  298. <DT><STRONG><A NAME="item_parent"><EM>$widget</EM>-><STRONG>parent</STRONG></A></STRONG><BR>
  299. <DD>
  300. Returns <EM>$widget</EM>'s parent, or an empty string
  301. if <EM>$widget</EM> is the main window of the application.
  302. <P></P>
  303. <DT><STRONG><A NAME="item_PathName"><EM>$widget</EM>-><STRONG>PathName</STRONG></A></STRONG><BR>
  304. <DD>
  305. Returns the tk path name of <EM>$widget</EM>. (This is an import from the
  306. C interface.)
  307. <P></P>
  308. <DT><STRONG><A NAME="item_pathname"><EM>$widget</EM>-><STRONG>pathname</STRONG>(<EM>id</EM>)</A></STRONG><BR>
  309. <DD>
  310. Returns an object whose X identifier is <EM>id</EM>.
  311. The identifier is looked up on the display of <EM>$widget</EM>.
  312. <EM>Id</EM> must be a decimal, hexadecimal, or octal integer and must
  313. correspond to a window in the invoking application, or an error
  314. occurs which can be trapped with <A HREF="../../../lib/Pod/perlfunc.html#item_eval"><CODE>eval { }</CODE></A> or <CODE>Tk::catch { }</CODE>.
  315. If the window belongs to the application, but is not an object
  316. (for example wrapper windows, HList header, etc.) then <A HREF="../../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>
  317. is returned.
  318. <P></P>
  319. <DT><STRONG><A NAME="item_pixels"><EM>$widget</EM>-><STRONG>pixels</STRONG>(<EM>number</EM>)</A></STRONG><BR>
  320. <DD>
  321. Returns the number of pixels in <EM>$widget</EM> corresponding
  322. to the distance given by <EM>number</EM>.
  323. <EM>Number</EM> may be specified in any of the forms acceptable
  324. to <STRONG>Tk_GetPixels</STRONG>, such as ``2.0c'' or ``1i''.
  325. The result is rounded to the nearest integer value;  for a
  326. fractional result, use <EM>$widget</EM>-><STRONG>fpixels</STRONG>.
  327. <P></P>
  328. <DT><STRONG><A NAME="item_pointerx"><EM>$widget</EM>-><STRONG>pointerx</STRONG></A></STRONG><BR>
  329. <DD>
  330. If the mouse pointer is on the same screen as <EM>$widget</EM>, returns the
  331. pointer's x coordinate, measured in pixels in the screen's root window.
  332. If a virtual root window is in use on the screen, the position is
  333. measured in the virtual root.
  334. If the mouse pointer isn't on the same screen as <EM>$widget</EM> then
  335. -1 is returned.
  336. <P></P>
  337. <DT><STRONG><A NAME="item_pointerxy"><EM>$widget</EM>-><STRONG>pointerxy</STRONG></A></STRONG><BR>
  338. <DD>
  339. If the mouse pointer is on the same screen as <EM>$widget</EM>, returns a list
  340. with two elements, which are the pointer's x and y coordinates measured
  341. in pixels in the screen's root window.
  342. If a virtual root window is in use on the screen, the position
  343. is computed in the virtual root.
  344. If the mouse pointer isn't on the same screen as <EM>$widget</EM> then
  345. both of the returned coordinates are -1.
  346. <P></P>
  347. <DT><STRONG><A NAME="item_pointery"><EM>$widget</EM>-><STRONG>pointery</STRONG></A></STRONG><BR>
  348. <DD>
  349. If the mouse pointer is on the same screen as <EM>$widget</EM>, returns the
  350. pointer's y coordinate, measured in pixels in the screen's root window.
  351. If a virtual root window is in use on the screen, the position
  352. is computed in the virtual root.
  353. If the mouse pointer isn't on the same screen as <EM>$widget</EM> then
  354. -1 is returned.
  355. <P></P>
  356. <DT><STRONG><A NAME="item_raise"><EM>$widget</EM>-><STRONG>raise</STRONG>(?<EM>aboveThis</EM>?)</A></STRONG><BR>
  357. <DD>
  358. If the <EM>aboveThis</EM> argument is omitted then the command raises
  359. $widget so that it is above all of its siblings in the stacking
  360. order (it will not be obscured by any siblings and will obscure
  361. any siblings that overlap it).
  362. If <EM>aboveThis</EM> is specified then it must be the path name of
  363. a window that is either a sibling of $widget or the descendant
  364. of a sibling of $widget.
  365. In this case the <STRONG>raise</STRONG> command will insert
  366. $widget into the stacking order just above <EM>aboveThis</EM>
  367. (or the ancestor of <EM>aboveThis</EM> that is a sibling of $widget);
  368. this could end up either raising or lowering $widget.
  369. <P></P>
  370. <DT><STRONG><A NAME="item_reqheight"><EM>$widget</EM>-><STRONG>reqheight</STRONG></A></STRONG><BR>
  371. <DD>
  372. Returns a decimal string giving <EM>$widget</EM>'s requested height,
  373. in pixels.  This is the value used by <EM>$widget</EM>'s geometry
  374. manager to compute its geometry.
  375. <P></P>
  376. <DT><STRONG><A NAME="item_reqwidth"><EM>$widget</EM>-><STRONG>reqwidth</STRONG></A></STRONG><BR>
  377. <DD>
  378. Returns a decimal string giving <EM>$widget</EM>'s requested width,
  379. in pixels.  This is the value used by <EM>$widget</EM>'s geometry
  380. manager to compute its geometry.
  381. <P></P>
  382. <DT><STRONG><A NAME="item_rgb"><EM>$widget</EM>-><STRONG>rgb</STRONG>(<EM>color</EM>)</A></STRONG><BR>
  383. <DD>
  384. Returns a list containing three decimal values, which are the
  385. red, green, and blue intensities that correspond to <EM>color</EM> in
  386. the window given by <EM>$widget</EM>.  <EM>Color</EM>
  387. may be specified in any of the forms acceptable for a color
  388. option.
  389. <P></P>
  390. <DT><STRONG><A NAME="item_rootx"><EM>$widget</EM>-><STRONG>rootx</STRONG></A></STRONG><BR>
  391. <DD>
  392. Returns a decimal string giving the x-coordinate, in the root
  393. window of the screen, of the
  394. upper-left corner of <EM>$widget</EM>'s border (or <EM>$widget</EM> if it
  395. has no border).
  396. <P></P>
  397. <DT><STRONG><A NAME="item_rooty"><EM>$widget</EM>-><STRONG>rooty</STRONG></A></STRONG><BR>
  398. <DD>
  399. Returns a decimal string giving the y-coordinate, in the root
  400. window of the screen, of the
  401. upper-left corner of <EM>$widget</EM>'s border (or <EM>$widget</EM> if it
  402. has no border).
  403. <P></P>
  404. <DT><STRONG><A NAME="item_scaling"><STRONG>scaling</STRONG></A></STRONG><BR>
  405. <DD>
  406. <DT><STRONG><EM>$widget</EM>-><STRONG>scaling</STRONG>?(<EM>number</EM>)?</STRONG><BR>
  407. <DD>
  408. Sets and queries the current scaling factor used by Tk to convert between
  409. physical units (for example, points, inches, or millimeters) and pixels.  The
  410. <EM>number</EM> argument is a floating point number that specifies the number of
  411. pixels per point on $widget's display. If the <EM>number</EM> argument is
  412. omitted, the current value of the scaling factor is returned.
  413. <P>A ``point'' is a unit of measurement equal to 1/72 inch.  A scaling factor
  414. of 1.0 corresponds to 1 pixel per point, which is equivalent to a standard
  415. 72 dpi monitor.  A scaling factor of 1.25 would mean 1.25 pixels per point,
  416. which is the setting for a 90 dpi monitor; setting the scaling factor to
  417. 1.25 on a 72 dpi monitor would cause everything in the application to be
  418. displayed 1.25 times as large as normal.  The initial value for the scaling
  419. factor is set when the application starts, based on properties of the
  420. installed monitor (as reported via the window system),
  421. but it can be changed at any time.  Measurements made
  422. after the scaling factor is changed will use the new scaling factor, but it
  423. is undefined whether existing widgets will resize themselves dynamically to
  424. accomodate the new scaling factor.</P>
  425. <P></P>
  426. <DT><STRONG><A NAME="item_screen"><EM>$widget</EM>-><STRONG>screen</STRONG></A></STRONG><BR>
  427. <DD>
  428. Returns the name of the screen associated with <EM>$widget</EM>, in
  429. the form <EM>displayName</EM>.<EM>screenIndex</EM>.
  430. <P></P>
  431. <DT><STRONG><A NAME="item_screencells"><EM>$widget</EM>-><STRONG>screencells</STRONG></A></STRONG><BR>
  432. <DD>
  433. Returns a decimal string giving the number of cells in the default
  434. color map for <EM>$widget</EM>'s screen.
  435. <P></P>
  436. <DT><STRONG><A NAME="item_screendepth"><EM>$widget</EM>-><STRONG>screendepth</STRONG></A></STRONG><BR>
  437. <DD>
  438. Returns a decimal string giving the depth of the root window
  439. of <EM>$widget</EM>'s screen (number of bits per pixel).
  440. <P></P>
  441. <DT><STRONG><A NAME="item_screenheight"><EM>$widget</EM>-><STRONG>screenheight</STRONG></A></STRONG><BR>
  442. <DD>
  443. Returns a decimal string giving the height of <EM>$widget</EM>'s screen,
  444. in pixels.
  445. <P></P>
  446. <DT><STRONG><A NAME="item_screenmmheight"><EM>$widget</EM>-><STRONG>screenmmheight</STRONG></A></STRONG><BR>
  447. <DD>
  448. Returns a decimal string giving the height of <EM>$widget</EM>'s screen,
  449. in millimeters.
  450. <P></P>
  451. <DT><STRONG><A NAME="item_screenmmwidth"><EM>$widget</EM>-><STRONG>screenmmwidth</STRONG></A></STRONG><BR>
  452. <DD>
  453. Returns a decimal string giving the width of <EM>$widget</EM>'s screen,
  454. in millimeters.
  455. <P></P>
  456. <DT><STRONG><A NAME="item_screenvisual"><EM>$widget</EM>-><STRONG>screenvisual</STRONG></A></STRONG><BR>
  457. <DD>
  458. Returns one of the following strings to indicate the default visual
  459. class for <EM>$widget</EM>'s screen: <STRONG>directcolor</STRONG>, <STRONG>grayscale</STRONG>,
  460. <STRONG>pseudocolor</STRONG>, <STRONG>staticcolor</STRONG>, <STRONG>staticgray</STRONG>, or
  461. <STRONG>truecolor</STRONG>.
  462. <P></P>
  463. <DT><STRONG><A NAME="item_screenwidth"><EM>$widget</EM>-><STRONG>screenwidth</STRONG></A></STRONG><BR>
  464. <DD>
  465. Returns a decimal string giving the width of <EM>$widget</EM>'s screen,
  466. in pixels.
  467. <P></P>
  468. <DT><STRONG><A NAME="item_server"><EM>$widget</EM>-><STRONG>server</STRONG></A></STRONG><BR>
  469. <DD>
  470. Returns a string containing information about the server for
  471. <EM>$widget</EM>'s display.  The exact format of this string may vary
  472. from platform to platform.  For X servers the string
  473. has the form ``<STRONG>X</STRONG><EM>major</EM><STRONG>R</STRONG><EM>minor vendor vendorVersion</EM>''
  474. where <EM>major</EM> and <EM>minor</EM> are the version and revision
  475. numbers provided by the server (e.g., <STRONG>X11R5</STRONG>), <EM>vendor</EM>
  476. is the name of the vendor for the server, and <EM>vendorRelease</EM>
  477. is an integer release number provided by the server.
  478. <P></P>
  479. <DT><STRONG><A NAME="item_toplevel"><EM>$widget</EM>-><STRONG>toplevel</STRONG></A></STRONG><BR>
  480. <DD>
  481. Returns the reference of the top-level window containing <EM>$widget</EM>.
  482. <P></P>
  483. <DT><STRONG><A NAME="item_UnmapWindow"><EM>$widget</EM>-><STRONG>UnmapWindow</STRONG></A></STRONG><BR>
  484. <DD>
  485. Cause <EM>$widget</EM> to be ``unmapped'' i.e. removed from the display.
  486. This does for any widget what <EM>$widget</EM>->withdraw does for 
  487. toplevel widgets. May confuse the geometry manager (pack, grid, place, ...)
  488. that thinks it is managing the widget.
  489. <P></P>
  490. <DT><STRONG><A NAME="item_update"><EM>$widget</EM>-><STRONG>update</STRONG></A></STRONG><BR>
  491. <DD>
  492. One of two methods which are used to bring the application ``up to date''
  493. by entering the event loop repeated until all pending events
  494. (including idle callbacks) have been processed.
  495. <P>The <STRONG>update</STRONG> method is useful in scripts where you are performing a
  496. long-running computation but you still want the application to respond
  497. to events such as user interactions; if you occasionally call
  498. <STRONG>update</STRONG> then user input will be processed during the next call to
  499. <STRONG>update</STRONG>.</P>
  500. <P></P>
  501. <DT><STRONG><A NAME="item_Unbusy"><EM>$widget</EM>-><STRONG>Unbusy</STRONG></A></STRONG><BR>
  502. <DD>
  503. Restores widget state after a call to  <EM>$widget</EM>-><STRONG>Busy</STRONG>.
  504. <P></P>
  505. <DT><STRONG><A NAME="item_viewable"><EM>$widget</EM>-><STRONG>viewable</STRONG></A></STRONG><BR>
  506. <DD>
  507. Returns 1 if <EM>$widget</EM> and all of its ancestors up through the
  508. nearest toplevel window are mapped.  Returns 0 if any of these
  509. windows are not mapped.
  510. <P></P>
  511. <DT><STRONG><A NAME="item_visual"><EM>$widget</EM>-><STRONG>visual</STRONG></A></STRONG><BR>
  512. <DD>
  513. Returns one of the following strings to indicate the visual
  514. class for <EM>$widget</EM>: <STRONG>directcolor</STRONG>, <STRONG>grayscale</STRONG>,
  515. <STRONG>pseudocolor</STRONG>, <STRONG>staticcolor</STRONG>, <STRONG>staticgray</STRONG>, or
  516. <STRONG>truecolor</STRONG>.
  517. <P></P>
  518. <DT><STRONG><A NAME="item_visualid"><EM>$widget</EM>-><STRONG>visualid</STRONG></A></STRONG><BR>
  519. <DD>
  520. Returns the X identifier for the visual for $widget.
  521. <P></P>
  522. <DT><STRONG><A NAME="item_visualsavailable"><EM>$widget</EM>-><STRONG>visualsavailable</STRONG>(?<STRONG>includeids</STRONG>?)</A></STRONG><BR>
  523. <DD>
  524. Returns a list whose elements describe the visuals available for
  525. <EM>$widget</EM>'s screen.
  526. Each element consists of a visual class followed by an integer depth.
  527. The class has the same form as returned by <EM>$widget</EM>-><STRONG>visual</STRONG>.
  528. The depth gives the number of bits per pixel in the visual.
  529. In addition, if the <STRONG>includeids</STRONG> argument is provided, then the
  530. depth is followed by the X identifier for the visual.
  531. <P></P>
  532. <DT><STRONG><A NAME="item_vrootheight"><EM>$widget</EM>-><STRONG>vrootheight</STRONG></A></STRONG><BR>
  533. <DD>
  534. Returns the height of the virtual root window associated with <EM>$widget</EM>
  535. if there is one;  otherwise returns the height of <EM>$widget</EM>'s screen.
  536. <P></P>
  537. <DT><STRONG><A NAME="item_vrootwidth"><EM>$widget</EM>-><STRONG>vrootwidth</STRONG></A></STRONG><BR>
  538. <DD>
  539. Returns the width of the virtual root window associated with <EM>$widget</EM>
  540. if there is one;  otherwise returns the width of <EM>$widget</EM>'s screen.
  541. <P></P>
  542. <DT><STRONG><A NAME="item_vrootx"><EM>$widget</EM>-><STRONG>vrootx</STRONG></A></STRONG><BR>
  543. <DD>
  544. Returns the x-offset of the virtual root window associated with <EM>$widget</EM>,
  545. relative to the root window of its screen.
  546. This is normally either zero or negative.
  547. Returns 0 if there is no virtual root window for <EM>$widget</EM>.
  548. <P></P>
  549. <DT><STRONG><A NAME="item_vrooty"><EM>$widget</EM>-><STRONG>vrooty</STRONG></A></STRONG><BR>
  550. <DD>
  551. Returns the y-offset of the virtual root window associated with <EM>$widget</EM>,
  552. relative to the root window of its screen.
  553. This is normally either zero or negative.
  554. Returns 0 if there is no virtual root window for <EM>$widget</EM>.
  555. <P></P>
  556. <DT><STRONG><A NAME="item_waitVariable"><EM>$widget-</EM>><STRONG>waitVariable</STRONG>(\$<EM>name</EM>)</A></STRONG><BR>
  557. <DD>
  558. <DT><STRONG><A NAME="item_waitVisibility"><EM>$widget-</EM>><STRONG>waitVisibility</STRONG></A></STRONG><BR>
  559. <DD>
  560. <DT><STRONG><A NAME="item_waitWindow"><EM>$widget-</EM>><STRONG>waitWindow</STRONG></A></STRONG><BR>
  561. <DD>
  562. The <STRONG>tk wait</STRONG> methods wait for one of several things to happen,
  563. then it returns without taking any other actions.
  564. The return value is always an empty string.
  565. <STRONG>waitVariable</STRONG> expects a reference to a perl
  566. variable and the command waits for that variable to be modified.
  567. This form is typically used to wait for a user to finish interacting
  568. with a dialog which sets the variable as part (possibly final)
  569. part of the interaction.
  570. <STRONG>waitVisibility</STRONG> waits for a change in <EM>$widget</EM>'s
  571. visibility state (as indicated by the arrival of a VisibilityNotify
  572. event).  This form is typically used to wait for a newly-created
  573. window to appear on the screen before taking some action.
  574. <STRONG>waitWindow</STRONG> waits for <EM>$widget</EM> to be destroyed.
  575. This form is typically used to wait for a user to finish interacting
  576. with a dialog box before using the result of that interaction.
  577. Note that creating and destroying the window each time a dialog is required
  578. makes code modular but imposes overhead which can be avoided by <STRONG>withdrawing</STRONG>
  579. the window instead and using <STRONG>waitVisibility</STRONG>.
  580. <P>While the <STRONG>tk wait</STRONG> methods are waiting they processes events in
  581. the normal fashion, so the application will continue to respond
  582. to user interactions.
  583. If an event handler invokes <STRONG>tkwait</STRONG> again, the nested call
  584. to <STRONG>tkwait</STRONG> must complete before the outer call can complete.</P>
  585. <P></P>
  586. <DT><STRONG><A NAME="item_width"><EM>$widget</EM>-><STRONG>width</STRONG></A></STRONG><BR>
  587. <DD>
  588. Returns a decimal string giving <EM>$widget</EM>'s width in pixels.
  589. When a window is first created its width will be 1 pixel;  the
  590. width will eventually be changed by a geometry manager to fulfill
  591. the window's needs.
  592. If you need the true width immediately after creating a widget,
  593. invoke <STRONG>update</STRONG> to force the geometry manager to arrange it,
  594. or use <EM>$widget</EM>-><STRONG>reqwidth</STRONG> to get the window's requested width
  595. instead of its actual width.
  596. <P></P>
  597. <DT><STRONG><A NAME="item_x"><EM>$widget</EM>-><STRONG>x</STRONG></A></STRONG><BR>
  598. <DD>
  599. Returns a decimal string giving the x-coordinate, in <EM>$widget</EM>'s
  600. parent, of the upper-left corner of <EM>$widget</EM>'s border (or <EM>$widget</EM>
  601. if it has no border).
  602. <P></P>
  603. <DT><STRONG><A NAME="item_y"><EM>$widget</EM>-><STRONG>y</STRONG></A></STRONG><BR>
  604. <DD>
  605. Returns a decimal string giving the y-coordinate, in <EM>$widget</EM>'s
  606. parent, of the
  607. upper-left corner of <EM>$widget</EM>'s border (or <EM>$widget</EM> if it
  608. has no border).
  609. <P></P></DL>
  610. <P>
  611. <HR>
  612. <H1><A NAME="caveats">CAVEATS</A></H1>
  613. <P>The above documentaion on generic methods is incomplete.</P>
  614. <P>
  615. <HR>
  616. <H1><A NAME="keywords">KEYWORDS</A></H1>
  617. <P>atom, children, class, geometry, height, identifier, information, interpreters,
  618. mapped, parent, path name, screen, virtual root, width, window</P>
  619. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  620. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  621. <STRONG><P CLASS=block> Tk::Widget - Base class of all widgets</P></STRONG>
  622. </TD></TR>
  623. </TABLE>
  624.  
  625. </BODY>
  626.  
  627. </HTML>
  628.