Tk-IDElayout
view release on metacpan or search on metacpan
IDEdragShadow.pm view on Meta::CPAN
package Tk::IDEdragShadow;
our ($VERSION) = ('0.37');
use Carp;
use strict;
use Tk;
use base qw/ Tk::Derived Tk::Frame/;
Tk::Widget->Construct("IDEdragShadow");
sub Populate {
my ($cw, $args) = @_;
$cw->SUPER::Populate($args);
IDEdragShadowToplevel.pm view on Meta::CPAN
package Tk::IDEdragShadowToplevel;
our ($VERSION) = ('0.37');
use Carp;
use strict;
use Tk;
use base qw/ Tk::Derived Tk::Frame/;
Tk::Widget->Construct("IDEdragShadowToplevel");
sub Populate {
my ($cw, $args) = @_;
$cw->SUPER::Populate($args);
IDElayout.pm view on Meta::CPAN
use Carp;
use Tk;
use Tk::Font;
use Tk::IDEpanedwindow;
use Graph::Directed; # Used for representation and manipulation of the frame layout structure
use Tk::IDElayoutDropSite;
use base qw/ Tk::Derived Tk::Frame/;
Tk::Widget->Construct("IDElayout");
sub Populate {
my ( $cw, $args ) = @_;
my $frameStructure;
if ( defined( $args->{-frameStructure} ) ) {
$frameStructure = $args->{-frameStructure};
}
IDEpanedwindow.pm view on Meta::CPAN
package Tk::IDEpanedwindow;
our ($VERSION) = ('0.37');
use Carp;
use strict;
use Tk;
use base qw/ Tk::Derived Tk::Panedwindow/;
our ($DEBUG);
Tk::Widget->Construct("IDEpanedwindow");
sub Populate {
my ($cw, $args) = @_;
IDEtabFrame.pm view on Meta::CPAN
use strict;
use Tk;
use Tk::IDEdragDrop;
use Tk::DropSite;
use Tk::IDEdragShadow;
use Tk::CaptureRelease;
use Tk::IDElayout::DropBox; # Used for temp storage during drag/drop operations
use base qw/ Tk::Derived Tk::DynaTabFrame/;
our ($DEBUG);
Tk::Widget->Construct("IDEtabFrame");
sub Populate {
my ($cw, $args) = @_;
$cw->SUPER::Populate($args);
( run in 0.818 second using v1.01-cache-2.11-cpan-a1f116cd669 )