home *** CD-ROM | disk | FTP | other *** search
-
- <HTML>
- <HEAD>
- <TITLE>Tk::Message - Create and manipulate Message 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::Message - Create and manipulate Message 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="#default bindings">DEFAULT BINDINGS</A></LI>
- <LI><A HREF="#bugs">BUGS</A></LI>
- <LI><A HREF="#keywords">KEYWORDS</A></LI>
- </UL>
- <!-- INDEX END -->
-
- <HR>
- <P>
- <H1><A NAME="name">NAME</A></H1>
- <P>Tk::Message - Create and manipulate Message 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>$message</EM> = <EM>$parent</EM>-><STRONG>Message</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>-highlightthickness</STRONG><TD><STRONG>-takefocus</STRONG>
- <TR><TD><STRONG>-background</STRONG><TD><STRONG>-foreground</STRONG><TD><STRONG>-padx</STRONG><TD><STRONG>-text</STRONG>
- <TR><TD><STRONG>-borderwidth</STRONG><TD><STRONG>-highlightbackground</STRONG><TD><STRONG>-pady</STRONG><TD><STRONG>-textvariable</STRONG>
- <TR><TD><STRONG>-cursor</STRONG><TD><STRONG>-highlightcolor</STRONG><TD><STRONG>-relief</STRONG><TD><STRONG>-width</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_aspect">Name: <STRONG>aspect</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Class%3A_Aspect">Class: <STRONG>Aspect</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Switch%3A_%2Daspect">Switch: <STRONG>-aspect</STRONG></A></STRONG><BR>
- <DD>
- Specifies a non-negative integer value indicating desired
- aspect ratio for the text. The aspect ratio is specified as
- 100*width/height. 100 means the text should
- be as wide as it is tall, 200 means the text should
- be twice as wide as it is tall, 50 means the text should
- be twice as tall as it is wide, and so on.
- Used to choose line length for text if <STRONG>width</STRONG> option
- isn't specified.
- Defaults to 150.
- <P></P>
- <DT><STRONG><A NAME="item_Name%3A_justify">Name: <STRONG>justify</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Class%3A_Justify">Class: <STRONG>Justify</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Switch%3A_%2Djustify">Switch: <STRONG>-justify</STRONG></A></STRONG><BR>
- <DD>
- Specifies how to justify lines of text.
- Must be one of <STRONG>left</STRONG>, <STRONG>center</STRONG>, or <STRONG>right</STRONG>. Defaults
- to <STRONG>left</STRONG>.
- This option works together with the <STRONG>anchor</STRONG>, <STRONG>aspect</STRONG>,
- <STRONG>padX</STRONG>, <STRONG>padY</STRONG>, and <STRONG>width</STRONG> options to provide a variety
- of arrangements of the text within the window.
- The <STRONG>aspect</STRONG> and <STRONG>width</STRONG> options determine the amount of
- screen space needed to display the text.
- The <STRONG>anchor</STRONG>, <STRONG>padX</STRONG>, and <STRONG>padY</STRONG> options determine where this
- rectangular area is displayed within the widget's window, and the
- <STRONG>justify</STRONG> option determines how each line is displayed within that
- rectangular region.
- For example, suppose <STRONG>anchor</STRONG> is <STRONG>e</STRONG> and <STRONG>justify</STRONG> is
- <STRONG>left</STRONG>, and that the message window is much larger than needed
- for the text.
- The the text will displayed so that the left edges of all the lines
- line up and the right edge of the longest line is <STRONG>padX</STRONG> from
- the right side of the window; the entire text block will be centered
- in the vertical span of the window.
- <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 the length of lines in the window.
- The value may have any of the forms acceptable to <STRONG>Tk_GetPixels</STRONG>.
- If this option has a value greater than zero then the <STRONG>aspect</STRONG>
- option is ignored and the <STRONG>width</STRONG> option determines the line
- length.
- If this option has a value less than or equal to zero, then
- the <STRONG>aspect</STRONG> option determines the line length.
- <P></P></DL>
- <P>
- <HR>
- <H1><A NAME="description">DESCRIPTION</A></H1>
- <P>The <STRONG>Message</STRONG> method creates a new window (given by the
- $widget argument) and makes it into a message widget.
- Additional
- options, described above, may be specified on the command line
- or in the option database
- to configure aspects of the message such as its colors, font,
- text, and initial relief. The <STRONG>message</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 message is a widget that displays a textual string. A message
- widget has three special features. First, it breaks up
- its string into lines in order to produce a given aspect ratio
- for the window. The line breaks are chosen at word boundaries
- wherever possible (if not even a single word would fit on a
- line, then the word will be split across lines). Newline characters
- in the string will force line breaks; they can be used, for example,
- to leave blank lines in the display.</P>
- <P>The second feature of a message widget is justification. The text
- may be displayed left-justified (each line starts at the left side of
- the window), centered on a line-by-line basis, or right-justified
- (each line ends at the right side of the window).</P>
- <P>The third feature of a message widget is that it handles control
- characters and non-printing characters specially. Tab characters
- are replaced with enough blank space to line up on the next
- 8-character boundary. Newlines cause line breaks. Other control
- characters (ASCII code less than 0x20) and characters not defined
- in the font are displayed as a four-character sequence <STRONG>\x</STRONG><EM>hh</EM> where
- <EM>hh</EM> is the two-digit hexadecimal number corresponding to
- the character. In the unusual case where the font doesn't contain
- all of the characters in ``0123456789abcdef\x'' then control
- characters and undefined characters are not displayed at all.</P>
- <P>
- <HR>
- <H1><A NAME="widget methods">WIDGET METHODS</A></H1>
- <P>The <STRONG>Message</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="default bindings">DEFAULT BINDINGS</A></H1>
- <P>When a new message is created, it has no default event bindings:
- messages are intended for output purposes only.</P>
- <P>
- <HR>
- <H1><A NAME="bugs">BUGS</A></H1>
- <P>Tabs don't work very well with text that is centered or right-justified.
- The most common result is that the line is justified wrong.</P>
- <P>
- <HR>
- <H1><A NAME="keywords">KEYWORDS</A></H1>
- <P>message, 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::Message - Create and manipulate Message widgets</P></STRONG>
- </TD></TR>
- </TABLE>
-
- </BODY>
-
- </HTML>
-