The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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.