-
-
20 Nov 2021 15:13:20 UTC
- Distribution: Tickit-Widgets
- Module version: 0.34
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (12)
- Testers (79 / 1 / 34)
- Kwalitee
Bus factor: 1- % Coverage
- License: perl_5
- Perl: v5.20.0
- Activity
24 month- Tools
- Download (89.07KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
NAME
Tickit::Widgets
- load several Tickit::Widget classes at onceSYNOPSIS
use Tickit::Widgets qw( Static VBox HBox );
Equivalent to
use Tickit::Widget::Static; use Tickit::Widget::VBox; use Tickit::Widget::HBox;
DESCRIPTION
This module provides an
import
utility to simplify code that uses many different Tickit::Widget subclasses. Instead of ause
line per module, you can simplyuse
this module and pass it the base name of each class. It willrequire
each of the modules.Note that because each Widget module should be a pure object class with no exports, this utility does not run the
import
method of the used classes.An optional version check may be supplied using a
=
sign:use Tickit::Widgets qw( HBox=0.48 VBox=0.48 );
AUTHOR
Paul Evans <leonerd@leonerd.org.uk>
Module Install Instructions
To install Tickit::Widgets, copy and paste the appropriate command in to your terminal.
cpanm Tickit::Widgets
perl -MCPAN -e shell install Tickit::Widgets
For more information on module installation, please visit the detailed CPAN module installation guide.