Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: RFC: Class::Proxy::MethodChain

by Aristotle (Chancellor)
on Feb 21, 2003 at 15:54 UTC ( [id://237466]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $file_dialog = Gtk::FileSelection->new("File Selection Demo");
    
    ...
    $file_dialog->set_filename("penguin.png");
    $file_dialog->signal_connect(destroy => sub{Gtk->main_quit});
    $file_dialog->show();
    
  2. or download this
    my $file_dialog;
    $file_dialog = Gtk::FileSelection
    ...
        ->set_filename("penguin.png")
        ->signal_connect(destroy => sub{Gtk->main_quit})
        ->show();
    

Log In?
Username:
Password:

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

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

    No recent polls found