The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Tickit::SingleChildWidget - abstract base class for widgets that contain a single other widget

SYNOPSIS

 TODO

DESCRIPTION

This subclass of Tickit::ContainerWidget acts as an abstract base class for widgets that contain exactly one other widget. It enforces that only one child widget may be contained at any one time, and provides a convenient accessor to obtain it.

CONSTRUCTOR

$widget = Tickit::SingleChildWidget->new( %args )

Constructs a new Tickit::SingleChildWidget object. If passed an argument called child this will be added as the contained child widget.

METHODS

$child = $widget->child

Returns the contained child widget.

AUTHOR

Paul Evans <leonerd@leonerd.org.uk>