Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Re: Redraw windows

by NaSe77 (Monk)
on May 06, 2002 at 14:06 UTC ( [id://164325]=note: print w/replies, xml ) Need Help??


in reply to Re: Redraw windows
in thread Redraw windows

Thanks - it wasn't really what i searched for but it helped my find the answer - using fileevent:
#!/usr/bin/perl -w use Tk; open(CHILD, "perl script.pl|") or die "Nope: $!"; my $mw = new MainWindow; my $t = $mw->Text(-width => 80, -height => 25, -wrap => 'none'); $t->pack(-expand => 1); $mw->fileevent(\*CHILD, 'readable', [\&fill_text_widget, $t]); MainLoop; sub fill_text_widget { my($widget) = @_; $_ = <H>; $widget->insert('end', $_); $widget->yview('end'); }
NaSe

Replies are listed 'Best First'.
Re: Re: Re: Redraw windows
by Rich36 (Chaplain) on May 06, 2002 at 14:15 UTC

    Cool. Didn't know about that one. That seems a little more general in that it looks like it can be tied to a variety of widgets.


    Rich36
    There's more than one way to screw it up...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://164325]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (7)
As of 2024-03-28 19:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found