.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Message 3" .TH Message 3 2023-07-25 "perl v5.38.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME Tk::Message \- Create and manipulate Message widgets .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 7 \& use Tk::Message; \& ... \& my $message = $parent\->Message( \& \-text => \*(Aqsomewhat long message text\*(Aq, \& \-aspect => 100, \& \-justify => \*(Aqleft\*(Aq, \& )\->pack(); .Ve .SH "STANDARD OPTIONS" .IX Header "STANDARD OPTIONS" \&\fB\-anchor\fR \fB\-font\fR \fB\-highlightthickness\fR \fB\-takefocus\fR \&\fB\-background\fR \fB\-foreground\fR \fB\-padx\fR \fB\-text\fR \&\fB\-borderwidth\fR \fB\-highlightbackground\fR \fB\-pady\fR \fB\-textvariable\fR \&\fB\-cursor\fR \fB\-highlightcolor\fR \fB\-relief\fR \fB\-width\fR .PP See Tk::options for details of the standard options. .SH "WIDGET-SPECIFIC OPTIONS" .IX Header "WIDGET-SPECIFIC OPTIONS" .IP "Name: \fBaspect\fR" 4 .IX Item "Name: aspect" .PD 0 .IP "Class: \fBAspect\fR" 4 .IX Item "Class: Aspect" .IP "Switch: \fB\-aspect\fR" 4 .IX Item "Switch: -aspect" .PD 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 \fBwidth\fR option isn't specified. Defaults to 150. .IP "Name: \fBjustify\fR" 4 .IX Item "Name: justify" .PD 0 .IP "Class: \fBJustify\fR" 4 .IX Item "Class: Justify" .IP "Switch: \fB\-justify\fR" 4 .IX Item "Switch: -justify" .PD Specifies how to justify lines of text. Must be one of \fBleft\fR, \fBcenter\fR, or \fBright\fR. Defaults to \fBleft\fR. This option works together with the \fBanchor\fR, \fBaspect\fR, \&\fBpadX\fR, \fBpadY\fR, and \fBwidth\fR options to provide a variety of arrangements of the text within the window. The \fBaspect\fR and \fBwidth\fR options determine the amount of screen space needed to display the text. The \fBanchor\fR, \fBpadX\fR, and \fBpadY\fR options determine where this rectangular area is displayed within the widget's window, and the \&\fBjustify\fR option determines how each line is displayed within that rectangular region. For example, suppose \fBanchor\fR is \fBe\fR and \fBjustify\fR is \&\fBleft\fR, 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 \fBpadX\fR from the right side of the window; the entire text block will be centered in the vertical span of the window. .IP "Name: \fBwidth\fR" 4 .IX Item "Name: width" .PD 0 .IP "Class: \fBWidth\fR" 4 .IX Item "Class: Width" .IP "Switch: \fB\-width\fR" 4 .IX Item "Switch: -width" .PD Specifies the length of lines in the window. The value may have any of the forms acceptable to \fBTk_GetPixels\fR. If this option has a value greater than zero then the \fBaspect\fR option is ignored and the \fBwidth\fR option determines the line length. If this option has a value less than or equal to zero, then the \fBaspect\fR option determines the line length. .SH DESCRIPTION .IX Header "DESCRIPTION" The \fBMessage\fR method creates a new window (given by the \&\f(CW$widget\fR 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 \fBmessage\fR command returns its \&\f(CW$widget\fR argument. At the time this command is invoked, there must not exist a window named \f(CW$widget\fR, but \&\f(CW$widget\fR's parent must exist. .PP 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. .PP 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). .PP 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 \fB\ex\fR\fIhh\fR where \&\fIhh\fR 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\ex'' then control characters and undefined characters are not displayed at all. .SH "WIDGET METHODS" .IX Header "WIDGET METHODS" The \fBMessage\fR method creates a widget object. This object supports the \fBconfigure\fR and \fBcget\fR methods described in Tk::options which can be used to enquire and modify the options described above. The widget also inherits all the methods provided by the generic Tk::Widget class. .SH "DEFAULT BINDINGS" .IX Header "DEFAULT BINDINGS" When a new message is created, it has no default event bindings: messages are intended for output purposes only. .SH BUGS .IX Header "BUGS" 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. .SH KEYWORDS .IX Header "KEYWORDS" message, widget