Open Source
perlooui.txt
Associated article: An Object-Oriented UI for Perl
Tags: Open Source Design
Published source code accompanying the article by Robert Kiesling in which he shows one way Perl's features can contribute to it's usefulness in object-oriented projects. Also see WORKSP.ZIP.
An Object-Oriented UI for Perl
by Robert Kiesling
Listing One
Tk::Widget
Tk::TextUndo
Tk::Workspace
Listing Two
@ISA = qw(Tk::TextUndo);
Construct Tk::Widget `Workspace';
sub new {
my $proto = shift;
my $class = ref( $proto ) || $proto;
my $self = {
window => ...


