Tk-Multi
view release on metacpan or search on metacpan
Multi/Canvas.pm view on Meta::CPAN
# Copyright (c) 1997-1998 Dominique Dumont. All rights reserved.
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
package Tk::Multi::Canvas ;
use strict;
use vars qw($printCmd $defaultPrintCmd $VERSION);
use base qw(Tk::Derived Tk::Frame Tk::Multi::Any);
$VERSION = sprintf "%d.%03d", q$Revision: 2.5 $ =~ /(\d+)\.(\d+)/;
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
$printCmd = $defaultPrintCmd = 'lp -opostscript' ;
Tk::Widget->Construct('MultiCanvas');
Multi/Frame.pm view on Meta::CPAN
# Copyright (c) 1997-1998 Dominique Dumont. All rights reserved.
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
package Tk::Multi::Frame ;
use strict;
use vars qw($printCmd $defaultPrintCmd $VERSION);
use base qw(Tk::Derived Tk::TFrame Tk::Multi::Any);
$VERSION = sprintf "%d.%03d", q$Revision: 1.4 $ =~ /(\d+)\.(\d+)/;
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
$printCmd = $defaultPrintCmd = 'lp -ol70 -otl66 -o12 -olm10' ;
Tk::Widget->Construct('MultiFrame');
Multi/Manager.pm view on Meta::CPAN
package Tk::Multi::Manager;
use strict;
use vars qw($VERSION @ISA $errno);
use Carp ;
use Tk::Derived;
use Tk::Frame;
use Tk::Adjuster ;
use Tie::IxHash ;
use Tk::Multi::Any ;
@ISA = qw(Tk::Derived Tk::Frame);
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
$VERSION = sprintf "%d.%03d", q$Revision: 2.5 $ =~ /(\d+)\.(\d+)/;
Tk::Widget->Construct('MultiManager');
my $title_num = 0;
Multi/Text.pm view on Meta::CPAN
package Tk::Multi::Text ;
use strict;
use vars qw($printCmd $defaultPrintCmd $VERSION);
use base qw(Tk::Derived Tk::Frame Tk::Multi::Any);
$VERSION = sprintf "%d.%03d", q$Revision: 2.5 $ =~ /(\d+)\.(\d+)/;
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
$printCmd = $defaultPrintCmd = 'lp -ol70 -otl66 -o12 -olm10' ;
Tk::Widget->Construct('MultiText');
Multi/Toplevel.pm view on Meta::CPAN
#
############################################################
package Tk::Multi::Toplevel ;
use Carp ;
use strict ;
use Tk::Multi::Any ;
require Tk::Toplevel;
require Tk::Derived;
use vars qw(@ISA $VERSION) ;
$VERSION = sprintf "%d.%03d", q$Revision: 1.9 $ =~ /(\d+)\.(\d+)/;
@ISA = qw(Tk::Derived Tk::Toplevel);
Tk::Widget->Construct('MultiTop') ;
sub Populate
{
my ($cw,$args) = @_ ;
Tk::Multi::Any::normalize($cw,$args) ;
require Tk::Multi::Manager ;
( run in 1.495 second using v1.01-cache-2.11-cpan-d7a12ab2c7f )