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

Tcl::pTk::widgets - Convenience Module for loading Tcl::pTk Widgets

SYNOPSIS

        use Tcl::pTk;
        
        # Load Text and Tree widgets (without have to call our on separate lines.)
        use Tcl::pTk::widgets qw/ Text Tree /;
        
        # Above is equivalent to
        use Tcl::pTk::Text;
        use Tcl::pTk::Tree;

DESCRIPTION

Tcl::pTk::widget is a module for loading multiple widgets, without having to call-out each on separate 'use' lines. See the SYNOPSIS line above for examples.