Tk-Markdown
view release on metacpan or search on metacpan
lib/Tk/Markdown.pm view on Meta::CPAN
=cut
sub ClassInit {
my ($class,$mw) = @_;
my $val = $class->bindRdOnly($mw);
my $cb = $mw->bind($class,'<Next>');
$mw->bind($class,'<space>',$cb) if (defined $cb);
$cb = $mw->bind($class,'<Prior>');
$mw->bind($class,'<BackSpace>', $cb) if (defined $cb);
$class->clipboardOperations($mw,'Copy');
return $val;
}
=head2 Populate
This is copied and modified from L<Tk::ROText>. The modification is the addition of a call to C<setDefaultStyles>. That's all.
=cut
( run in 2.556 seconds using v1.01-cache-2.11-cpan-81fc1098f69 )