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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Tk::Label - Create and manipulate Label 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::Label - Create and manipulate Label 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="#standard options">STANDARD OPTIONS</A></LI>
  25.     <LI><A HREF="#widgetspecific options">WIDGET-SPECIFIC OPTIONS</A></LI>
  26.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  27.     <LI><A HREF="#widget methods">WIDGET METHODS</A></LI>
  28.     <LI><A HREF="#bindings">BINDINGS</A></LI>
  29.     <LI><A HREF="#keywords">KEYWORDS</A></LI>
  30. </UL>
  31. <!-- INDEX END -->
  32.  
  33. <HR>
  34. <P>
  35. <H1><A NAME="name">NAME</A></H1>
  36. <P>Tk::Label - Create and manipulate Label widgets</P>
  37. <P>
  38. <HR>
  39. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  40. <UL>
  41. <LI>Linux</LI>
  42. <LI>Solaris</LI>
  43. <LI>Windows</LI>
  44. </UL>
  45. <HR>
  46. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  47. <P><EM>$label</EM> = <EM>$parent</EM>-><STRONG>Label</STRONG>(?<EM>options</EM>?);</P>
  48. <P>
  49. <HR>
  50. <H1><A NAME="standard options">STANDARD OPTIONS</A></H1>
  51. <P><TABLE CELLSPACING=0 CELLPADDING=0><TR><TD><STRONG>-anchor</STRONG><TD><STRONG>-font</STRONG><TD><STRONG>-image</STRONG><TD><STRONG>-takefocus</STRONG>
  52. <TR><TD><STRONG>-background</STRONG><TD><STRONG>-foreground</STRONG><TD><STRONG>-justify</STRONG><TD><STRONG>-text</STRONG>
  53. <TR><TD><STRONG>-bitmap</STRONG><TD><STRONG>-highlightbackground</STRONG><TD><STRONG>-padx</STRONG><TD><STRONG>-textvariable</STRONG>
  54. <TR><TD><STRONG>-borderwidth</STRONG><TD><STRONG>-highlightcolor</STRONG><TD><STRONG>-pady</STRONG><TD><STRONG>-underline</STRONG>
  55. <TR><TD><STRONG>-cursor</STRONG><TD><STRONG>-highlightthickness</STRONG><TD><STRONG>-relief</STRONG><TD><STRONG>-wraplength</STRONG></TABLE></P>
  56. <P>See <A HREF="../../../site/lib/Tk/options.html">the Tk::options manpage</A> for details of the standard options.</P>
  57. <P>
  58. <HR>
  59. <H1><A NAME="widgetspecific options">WIDGET-SPECIFIC OPTIONS</A></H1>
  60. <DL>
  61. <DT><STRONG><A NAME="item_Name%3A_height">Name:    <STRONG>height</STRONG></A></STRONG><BR>
  62. <DD>
  63. <DT><STRONG><A NAME="item_Class%3A_Height">Class:    <STRONG>Height</STRONG></A></STRONG><BR>
  64. <DD>
  65. <DT><STRONG><A NAME="item_Switch%3A_%2Dheight">Switch:    <STRONG>-height</STRONG></A></STRONG><BR>
  66. <DD>
  67. Specifies a desired height for the label.
  68. If an image or bitmap is being displayed in the label then the value is in
  69. screen units (i.e. any of the forms acceptable to <STRONG>Tk_GetPixels</STRONG>);
  70. for text it is in lines of text.
  71. If this option isn't specified, the label's desired height is computed
  72. from the size of the image or bitmap or text being displayed in it.
  73. <P></P>
  74. <DT><STRONG><A NAME="item_Name%3A_width">Name:    <STRONG>width</STRONG></A></STRONG><BR>
  75. <DD>
  76. <DT><STRONG><A NAME="item_Class%3A_Width">Class:    <STRONG>Width</STRONG></A></STRONG><BR>
  77. <DD>
  78. <DT><STRONG><A NAME="item_Switch%3A_%2Dwidth">Switch:    <STRONG>-width</STRONG></A></STRONG><BR>
  79. <DD>
  80. Specifies a desired width for the label.
  81. If an image or bitmap is being displayed in the label then the value is in
  82. screen units (i.e. any of the forms acceptable to <STRONG>Tk_GetPixels</STRONG>);
  83. for text it is in characters.
  84. If this option isn't specified, the label's desired width is computed
  85. from the size of the image or bitmap or text being displayed in it.
  86. <P></P></DL>
  87. <P>
  88. <HR>
  89. <H1><A NAME="description">DESCRIPTION</A></H1>
  90. <P>The <STRONG>Label</STRONG> method creates a new window (given by the
  91. $widget argument) and makes it into a label widget.
  92. Additional
  93. options, described above, may be specified on the command line
  94. or in the option database
  95. to configure aspects of the label such as its colors, font,
  96. text, and initial relief.  The <STRONG>label</STRONG> command returns its
  97. $widget argument.  At the time this command is invoked,
  98. there must not exist a window named $widget, but
  99. $widget's parent must exist.</P>
  100. <P>A label is a widget that displays a textual string, bitmap or image.
  101. If text is displayed, it must all be in a single font, but it
  102. can occupy multiple lines on the screen (if it contains newlines
  103. or if wrapping occurs because of the <STRONG>wrapLength</STRONG> option) and
  104. one of the characters may optionally be underlined using the
  105. <STRONG>underline</STRONG> option.
  106. The label can be manipulated in a few simple ways, such as
  107. changing its relief or text, using the commands described below.</P>
  108. <P>
  109. <HR>
  110. <H1><A NAME="widget methods">WIDGET METHODS</A></H1>
  111. <P>The <STRONG>Label</STRONG> method creates a widget object.
  112. This object supports the <STRONG>configure</STRONG> and <STRONG>cget</STRONG> methods
  113. described in <A HREF="../../../site/lib/Tk/options.html">the Tk::options manpage</A> which can be used to enquire and
  114. modify the options described above.
  115. The widget also inherits all the methods provided by the generic
  116. <A HREF="../../../site/lib/Tk/Widget.html">Tk::Widget</A> class.</P>
  117. <P>
  118. <HR>
  119. <H1><A NAME="bindings">BINDINGS</A></H1>
  120. <P>When a new label is created, it has no default event bindings:
  121. labels are not intended to be interactive.</P>
  122. <P>
  123. <HR>
  124. <H1><A NAME="keywords">KEYWORDS</A></H1>
  125. <P>label, widget</P>
  126. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  127. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  128. <STRONG><P CLASS=block> Tk::Label - Create and manipulate Label widgets</P></STRONG>
  129. </TD></TR>
  130. </TABLE>
  131.  
  132. </BODY>
  133.  
  134. </HTML>
  135.