in reply to Reclaiming Perl

Perhaps you should try to write a GUI text editor using POE (see http://poe.perl.org/ - basically POE is event based programming in Perl) and the GTK+ Perl modules. You should be able to prototype an editor with not very many lines of code.

Have a look on the POE site for examples using Gtk; who knows, it might be your bag.

$h=$ENV{HOME};my@q=split/\n\n/,`cat $h/.quotes`;$s="$h/." ."signature";$t=`cat $s`;print$t,"\n",$q[rand($#q)],"\n";

Replies are listed 'Best First'.
Re: Re: Reclaiming Perl
by iamnothing (Friar) on Feb 14, 2003 at 15:35 UTC
    I will definitely take a look at POE. I think I checked it out a while ago and hadn't been back. I was already planning on using GTK+ for the GUI aspects, so this seems right up my alley. Thanks for the suggestion!