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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Tk::NumEntryPlain - A numeric entry widget</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::NumEntryPlain - A numeric entry widget</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="#standard options">STANDARD OPTIONS</A></LI>
  26.     <LI><A HREF="#widgetspecific options">WIDGET-SPECIFIC OPTIONS</A></LI>
  27.     <LI><A HREF="#caveats">CAVEATS</A></LI>
  28.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  29.     <LI><A HREF="#history">HISTORY</A></LI>
  30.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  31. </UL>
  32. <!-- INDEX END -->
  33.  
  34. <HR>
  35. <P>
  36. <H1><A NAME="name">NAME</A></H1>
  37. <P>Tk::NumEntryPlain - A numeric entry widget</P>
  38. <P>
  39. <HR>
  40. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  41. <UL>
  42. <LI>Linux</LI>
  43. <LI>Solaris</LI>
  44. <LI>Windows</LI>
  45. </UL>
  46. <HR>
  47. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  48. <P>    <STRONG>use Tk::NumEntryPlain</STRONG>;</P>
  49. <P>
  50. <HR>
  51. <H1><A NAME="description">DESCRIPTION</A></H1>
  52. <P><STRONG>Tk::NumEntryPlain</STRONG> defines a widget for entering integer numbers.</P>
  53. <P><STRONG>Tk::NumEntryPlain</STRONG> supports all the options and methods that a normal
  54. <A HREF="../../../site/lib/Tk/Entry.html">Entry</A> widget provides, plus the following options</P>
  55. <P>
  56. <HR>
  57. <H1><A NAME="standard options">STANDARD OPTIONS</A></H1>
  58. <P><STRONG>-repeatdelay</STRONG>
  59. <STRONG>-repeatinterval</STRONG></P>
  60. <P>
  61. <HR>
  62. <H1><A NAME="widgetspecific options">WIDGET-SPECIFIC OPTIONS</A></H1>
  63. <DL>
  64. <DT><STRONG><A NAME="item_%2Dminvalue">-minvalue</A></STRONG><BR>
  65. <DD>
  66. Defines the minimum legal value that the widget can hold. If this
  67. value is <A HREF="../../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> then there is no minimum value (default = undef).
  68. <P></P>
  69. <DT><STRONG><A NAME="item_%2Dmaxvalue">-maxvalue</A></STRONG><BR>
  70. <DD>
  71. Defines the maximum legal value that the widget can hold. If this
  72. value is <A HREF="../../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> then there is no maximum value (default = undef).
  73. <P></P>
  74. <DT><STRONG><A NAME="item_%2Dbell">-bell</A></STRONG><BR>
  75. <DD>
  76. Specifies a boolean value. If true then a bell will ring if the user
  77. attempts to enter an illegal character into the entry widget, and
  78. when the user reaches the upper or lower limits when using the
  79. up/down buttons for keys (default = true).
  80. <P></P>
  81. <DT><STRONG><A NAME="item_%2Dtextvariable">-textvariable</A></STRONG><BR>
  82. <DD>
  83. Reference to a scalar variable that contains the value currently
  84. in the <STRONG>NumEntry</STRONG>.  Use the variable only for reading (see
  85. <A HREF="#caveats">CAVEATS</A> below).
  86. <P></P>
  87. <DT><STRONG><A NAME="item_%2Dvalue">-value</A></STRONG><BR>
  88. <DD>
  89. Specifies the value to be inserted into the entry widget. Similar
  90. to the standard <STRONG>-text</STRONG> option, but will perform a range
  91. check on the value.
  92. <P></P></DL>
  93. <P>
  94. <HR>
  95. <H1><A NAME="caveats">CAVEATS</A></H1>
  96. <DL>
  97. <DT><STRONG>-textvariable</STRONG><BR>
  98. <DD>
  99. <STRONG>-textvariable</STRONG> should only be used to read out the current
  100. value in the <STRONG>NumEntry</STRONG>.
  101. <P>Values set via <STRONG>-textvariable</STRONG> are not valided. Therefore
  102. it's possible to insert, e.g., 'abc', into the <STRONG>NumEntry</STRONG>.</P>
  103. <P></P></DL>
  104. <P>
  105. <HR>
  106. <H1><A NAME="see also">SEE ALSO</A></H1>
  107. <P><A HREF="../../../site/lib/Tk/NumEntry.html">Tk::NumEntry</A>
  108. <A HREF="../../../site/lib/Tk/Entry.html">Tk::Entry</A></P>
  109. <P>
  110. <HR>
  111. <H1><A NAME="history">HISTORY</A></H1>
  112. <P>The code was extracted from <STRONG>Tk::NumEntry</STRONG> and slightly modified
  113. by Achim Bohnet ><A HREF="mailto:ach@mpe.mpg.de">ach@mpe.mpg.de</A>>.  <STRONG>Tk::NumEntry</STRONG>'s author
  114. is Graham Barr ><A HREF="mailto:gbarr@pobox.com">gbarr@pobox.com</A>>.</P>
  115. <P>
  116. <HR>
  117. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  118. <P>Copyright (c) 1997-1998 Graham Barr. All rights reserved.
  119. This program is free software; you can redistribute it and/or modify it
  120. under the same terms as Perl itself.</P>
  121. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  122. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  123. <STRONG><P CLASS=block> Tk::NumEntryPlain - A numeric entry widget</P></STRONG>
  124. </TD></TR>
  125. </TABLE>
  126.  
  127. </BODY>
  128.  
  129. </HTML>
  130.