The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Tickit::Widget::Static - a widget displaying static text

SYNOPSIS

 use Tickit;
 use Tickit::Widget::Static;
 
 my $tickit = Tickit->new;
 
 my $hello = Tickit::Widget::Static->new(
    text   => "Hello, world",
    align  => "centre",
    valign => "middle",
 );
 
 $tickit->set_root_widget( $hello );
 
 $tickit->run;

DESCRIPTION

This class provides a widget which displays a single piece of static text.

CONSTRUCTOR

$static = Tickit::Widget::Static->new( %args )

Constructs a new Tickit::Widget::Static object.

Takes the following named arguments in addition to those taken by the base Tickit::Widget constructor:

text => STRING

The text to display

align => FLOAT|STRING

Optional. Defaults to 0.0 if unspecified.

valign => FLOAT|STRING

Optional. Defaults to 0.0 if unspecified.

For more details see the accessors below.

ACCESSORS

$text = $static->text

$static->set_text( $text )

Accessor for text property; the actual text on display in the widget

$align = $static->align

$static->set_align( $align )

Accessor for horizontal alignment value.

Gives a value in the range from 0.0 to 1.0 to align the text display within the window. If the window is larger than the width of the text, it will be aligned according to this value; with 0.0 on the left, 1.0 on the right, and other values inbetween.

The symbolic values left, centre and right can be supplied instead of 0.0, 0.5 and 1.0 respectively.

AUTHOR

Paul Evans <leonerd@leonerd.org.uk>