8.1. Creating and Using a Text Widget

To create a text widget, use the Text method from the desired parent widget:

$text = $parent->Text( [ options ... ] )->pack;

After the text widget is created, there are several different ways to place text in it. The user can type directly into it, or you can use the insert method:

$text->insert('end', "To be or not to be...\nThat is the question");

The basic form of the insert method takes two arguments. The first is an index value that indicates where to start placing the text. The second argument is the string to insert. Unlike the listbox insert method, you can't use an array as the second argument. If you do, only the first item in the array is inserted into the text box.

A typical use of the text widget is to read a file and place it in the text widget as it's read:

$text = $mw->Scrolled("Text")->pack();
open (FH, "chapter1") || die "Could not open chapter1";
while (<FH>) {
  $text->insert('end', $_);
}
close(FH);

You can use the text widget to display the file backward (line by line) by changing the insert line to $text->insert(0, $_). This will put the next line read at the top of the text widget instead of at the end.

The text widget can do a lot more than just display a file or two lines from a Shakespearean play. In addition to options, we also have tags, indexes, and marks to control how the contents of a text widget are displayed.

Get Learning Perl/Tk now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.