Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: making a GUI for a web client

by friedo (Prior)
on Jul 14, 2004 at 10:53 UTC ( [id://374259]=note: print w/replies, xml ) Need Help??


in reply to making a GUI for a web client

In order for your retry function to report its status back to the window, you'll need to give it a callback function, or simply pass a reference to the window itself. Assuming retry is called from, say a button push, then you could pass $fr1 to it as a parameter, e.g.

retry($ua, $url, $fr1); ... sub retry { # Retry downloading page in case of failure my $ua=shift; my $url=shift; for (my $i=1; $i<101; $i++) { sleep 5; # Delay my $request= $ua->request(GET "$url"); return $request if ($request->is_success); $fr1->Label(-text=>'Download failed: ' . $request->status_line +, -background=>'yellow', -foreground=>'red')->pack(-fill=>'y'); .....
NOTE: untested.

You get the idea. Any object you can pass to retry you can mess with in the function itself.

However I would prefer passing retry a code reference which it can call with a status message. That way, it could report its status to anything; a GUI, a Curses interface, etc, depending on what that callback sub does.

Replies are listed 'Best First'.
Re^2: making a GUI for a web client
by dannoura (Pilgrim) on Jul 14, 2004 at 11:40 UTC

    Thanks. Unless there's something I'm overlooking, this code produces a new label at each iteration. How do I fix that?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (7)
As of 2024-04-24 09:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found