Tickit::Widget::HLine(3pm) | User Contributed Perl Documentation | Tickit::Widget::HLine(3pm) |
"Tickit::Widget::HLine" - a widget displaying a horizontal line
use Tickit::Widget::VBox; use Tickit::Widget::HLine; my $vbox = Tickit::Widget::VBox->new; $vbox->add( ... ); $vbox->add( Tickit::Widget::HLine->new ); $vbox->add( ... ); Tickit->new( root => $vbox )->run;
This class provides a widget which displays a single horizontal line, using line-drawing characters. It consumes the full width of the window given to it by its parent. By default it is drawn in the vertical middle of the window but this can be adjusted by the "valign" style value.
The default style pen is used as the widget pen.
The following additional style keys are used:
Symbolic names of "top", "middle" and "bottom" are also accepted.
$hline = Tickit::Widget::HLine->new( %args );
Constructs a new "Tickit::Widget::HLine" object.
Paul Evans <leonerd@leonerd.org.uk>
2024-01-02 | perl v5.36.0 |