summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlperl/lib/Tk/ROText.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/tlperl/lib/Tk/ROText.pm')
-rw-r--r--Master/tlpkg/tlperl/lib/Tk/ROText.pm43
1 files changed, 0 insertions, 43 deletions
diff --git a/Master/tlpkg/tlperl/lib/Tk/ROText.pm b/Master/tlpkg/tlperl/lib/Tk/ROText.pm
deleted file mode 100644
index cc5634f5475..00000000000
--- a/Master/tlpkg/tlperl/lib/Tk/ROText.pm
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright (c) 1995-2003 Nick Ing-Simmons. 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::ROText;
-
-use vars qw($VERSION);
-$VERSION = sprintf '4.%03d', q$Revision: #10 $ =~ /\D(\d+)\s*$/;
-
-use Tk::Text;
-use base qw(Tk::Derived Tk::Text);
-
-Construct Tk::Widget 'ROText';
-
-sub clipEvents
-{
- return qw[Copy];
-}
-
-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;
-}
-
-sub Populate {
- my($self,$args) = @_;
- $self->SUPER::Populate($args);
- my $m = $self->menu->entrycget($self->menu->index('Search'), '-menu');
- $m->delete($m->index('Replace'));
-}
-
-sub Tk::Widget::ScrlROText { shift->Scrolled('ROText' => @_) }
-
-1;
-
-__END__
-