Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Gtk2 File Selection

by phenom (Chaplain)
on Jul 27, 2007 at 02:21 UTC ( [id://629042]=note: print w/replies, xml ) Need Help??


in reply to Gtk2 File Selection

This should work:
my $file; my $dialog = Gtk2::FileChooserDialog->new( 'Select a File', undef, 'open', 'gtk-cancel' => 'cancel', 'gtk-ok' => 'ok', ); if ( "ok" eq $dialog->run ) { $file = $dialog->get_filename; print "file = $file\n"; } $dialog->destroy;
See the documentation page for more: FileChooserDialog.

Replies are listed 'Best First'.
Re^2: Gtk2 File Selection
by Cheater (Novice) on Jul 27, 2007 at 03:32 UTC
    That code worked perfect. I have one last question. How can I make it so the user can only select files of a certain format (i.e. only image files)?
      you reject his choice, and re-present the dialog

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-19 21:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found