Tickit::Widget::VSplit(3pm) | User Contributed Perl Documentation | Tickit::Widget::VSplit(3pm) |
"Tickit::Widget::VSplit" - an adjustable vertical split between two widgets
use Tickit; use Tickit::Widget::VSplit; use Tickit::Widget::Static; my $vsplit = Tickit::Widget::VSplit->new( left_child => Tickit::Widget::Static->new( text => "Text above" ), right_child => Tickit::Widget::Static->new( text => "Text below" ), ); Tickit->new( root => $vsplit )->run;
This container widget holds two child widgets, displayed side by side. The two widgets are displayed with a vertical split bar between them, which reacts to mouse click-drag events, allowing the user to adjust the proportion of space given to the two widgets.
The default style pen is used as the widget pen. The following style pen prefixes are also used:
The following style keys are used:
The following style tags are used:
Constructs a new "Tickit::Widget::VSplit" object.
Takes the following named arguments
Accessor for the child widget used in the left half of the display.
Accessor for the child widget used in the right half of the display.
Paul Evans <leonerd@leonerd.org.uk>
2018-07-30 | perl v5.26.2 |