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 >
Wrap
Text File
|
2000-03-23
|
6KB
|
135 lines
<HTML>
<HEAD>
<TITLE>Tk::Label - Create and manipulate Label 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::Label - Create and manipulate Label 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="#standard options">STANDARD OPTIONS</A></LI>
<LI><A HREF="#widgetspecific options">WIDGET-SPECIFIC OPTIONS</A></LI>
<LI><A HREF="#description">DESCRIPTION</A></LI>
<LI><A HREF="#widget methods">WIDGET METHODS</A></LI>
<LI><A HREF="#bindings">BINDINGS</A></LI>
<LI><A HREF="#keywords">KEYWORDS</A></LI>
</UL>
<!-- INDEX END -->
<HR>
<P>
<H1><A NAME="name">NAME</A></H1>
<P>Tk::Label - Create and manipulate Label 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>
<P><EM>$label</EM> = <EM>$parent</EM>-><STRONG>Label</STRONG>(?<EM>options</EM>?);</P>
<P>
<HR>
<H1><A NAME="standard options">STANDARD OPTIONS</A></H1>
<P><TABLE CELLSPACING=0 CELLPADDING=0><TR><TD><STRONG>-anchor</STRONG><TD><STRONG>-font</STRONG><TD><STRONG>-image</STRONG><TD><STRONG>-takefocus</STRONG>
<TR><TD><STRONG>-background</STRONG><TD><STRONG>-foreground</STRONG><TD><STRONG>-justify</STRONG><TD><STRONG>-text</STRONG>
<TR><TD><STRONG>-bitmap</STRONG><TD><STRONG>-highlightbackground</STRONG><TD><STRONG>-padx</STRONG><TD><STRONG>-textvariable</STRONG>
<TR><TD><STRONG>-borderwidth</STRONG><TD><STRONG>-highlightcolor</STRONG><TD><STRONG>-pady</STRONG><TD><STRONG>-underline</STRONG>
<TR><TD><STRONG>-cursor</STRONG><TD><STRONG>-highlightthickness</STRONG><TD><STRONG>-relief</STRONG><TD><STRONG>-wraplength</STRONG></TABLE></P>
<P>See <A HREF="../../../site/lib/Tk/options.html">the Tk::options manpage</A> for details of the standard options.</P>
<P>
<HR>
<H1><A NAME="widgetspecific options">WIDGET-SPECIFIC OPTIONS</A></H1>
<DL>
<DT><STRONG><A NAME="item_Name%3A_height">Name: <STRONG>height</STRONG></A></STRONG><BR>
<DD>
<DT><STRONG><A NAME="item_Class%3A_Height">Class: <STRONG>Height</STRONG></A></STRONG><BR>
<DD>
<DT><STRONG><A NAME="item_Switch%3A_%2Dheight">Switch: <STRONG>-height</STRONG></A></STRONG><BR>
<DD>
Specifies a desired height for the label.
If an image or bitmap is being displayed in the label then the value is in
screen units (i.e. any of the forms acceptable to <STRONG>Tk_GetPixels</STRONG>);
for text it is in lines of text.
If this option isn't specified, the label's desired height is computed
from the size of the image or bitmap or text being displayed in it.
<P></P>
<DT><STRONG><A NAME="item_Name%3A_width">Name: <STRONG>width</STRONG></A></STRONG><BR>
<DD>
<DT><STRONG><A NAME="item_Class%3A_Width">Class: <STRONG>Width</STRONG></A></STRONG><BR>
<DD>
<DT><STRONG><A NAME="item_Switch%3A_%2Dwidth">Switch: <STRONG>-width</STRONG></A></STRONG><BR>
<DD>
Specifies a desired width for the label.
If an image or bitmap is being displayed in the label then the value is in
screen units (i.e. any of the forms acceptable to <STRONG>Tk_GetPixels</STRONG>);
for text it is in characters.
If this option isn't specified, the label's desired width is computed
from the size of the image or bitmap or text being displayed in it.
<P></P></DL>
<P>
<HR>
<H1><A NAME="description">DESCRIPTION</A></H1>
<P>The <STRONG>Label</STRONG> method creates a new window (given by the
$widget argument) and makes it into a label widget.
Additional
options, described above, may be specified on the command line
or in the option database
to configure aspects of the label such as its colors, font,
text, and initial relief. The <STRONG>label</STRONG> command returns its
$widget argument. At the time this command is invoked,
there must not exist a window named $widget, but
$widget's parent must exist.</P>
<P>A label is a widget that displays a textual string, bitmap or image.
If text is displayed, it must all be in a single font, but it
can occupy multiple lines on the screen (if it contains newlines
or if wrapping occurs because of the <STRONG>wrapLength</STRONG> option) and
one of the characters may optionally be underlined using the
<STRONG>underline</STRONG> option.
The label can be manipulated in a few simple ways, such as
changing its relief or text, using the commands described below.</P>
<P>
<HR>
<H1><A NAME="widget methods">WIDGET METHODS</A></H1>
<P>The <STRONG>Label</STRONG> method creates a widget object.
This object supports the <STRONG>configure</STRONG> and <STRONG>cget</STRONG> methods
described in <A HREF="../../../site/lib/Tk/options.html">the Tk::options manpage</A> which can be used to enquire and
modify the options described above.
The widget also inherits all the methods provided by the generic
<A HREF="../../../site/lib/Tk/Widget.html">Tk::Widget</A> class.</P>
<P>
<HR>
<H1><A NAME="bindings">BINDINGS</A></H1>
<P>When a new label is created, it has no default event bindings:
labels are not intended to be interactive.</P>
<P>
<HR>
<H1><A NAME="keywords">KEYWORDS</A></H1>
<P>label, widget</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::Label - Create and manipulate Label widgets</P></STRONG>
</TD></TR>
</TABLE>
</BODY>
</HTML>