Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl use Tk; $num=1; sub newnote { my $txt=shift; my $t=shift; my %win; $t=$num++ unless($t); return if($winlist{$t}); $win{main}=$main->Toplevel; $win{main}->geometry("240x320");$win{main}->title($t); $win{main}->protocol('WM_DELETE_WINDOW',[ sub{ my $t = shift; my $w=$winlist{$t}; $tlist{$t}=$w->{main_txt}->get("0.0","end"); $tlist{$t}=~ s/\n+$/\n/m; $w->{main}->destroy; delete $winlist{$t}; }, $t]); $win{main_txt}=$win{main}->Text(-background=>"#ffff00",-takefocus= +>1) ->pack; $win{main_txt}->insert("end",$txt); $winlist{$t}=\%win; } $main=MainWindow->new; $main_new=$main->Button(-text=>"New",-command=>'newnote', -padx=>0,-pady=>0)->pack; $main_old=$main->Button(-text=>"Saved",-command=>sub { foreach $t (keys %tlist) { newnote($tlist{$t},$t); } },-padx=>0,-pady=>0)->pack; $main->protocol('WM_DELETE_WINDOW',sub{ my $t; foreach $t (keys %winlist) { my $w=$winlist{$t}; $tlist{$t}=$w->{main_txt}->get("0.0","end"); } system "rm $v/*"; foreach $t (keys %tlist) { open(OUT,">$v/$t"); print OUT $tlist{$t}; } $main->destroy; }); $v=$ENV{HOME}."/.ptknotes"; mkdir $v unless(-e $v); opendir(DIR,$v); @n=readdir(DIR); closedir(DIR); foreach $i (@n) { next unless(-f "$v/$i"); local $/; open(IN,"<$v/$i"); $tlist{$num++}=<IN>; } MainLoop;

In reply to ptknotes by strredwolf

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-04-20 12:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found