1
vote
2answers
147 views

PyGTK: gtk.FileChooserButton shows folder not identical to gtk.FileChooserButton.get_current_folder()

I have a problem with gtk.FileChooserButton in a Python script. If you choose the option ›Other ...‹ from the button menu, the gtk.FileChooserDialog opens where you can select a new folder. If I ...
1
vote
1answer
971 views

using the filechooser dialog with glade

I would like to ask if anyone knows how to use the filechooser dialog in glade and pygtk. (It should be very similar in any of the language bindings, and that is why I didn't specify the language.) ...
2
votes
1answer
1k views

pyGTK/GTK filechooser - Is it possible to validate user entry before file or folder is written to disc?

I would like to validate the users choice of folder name in a gtk.FileChooser dialogue when creating a new folder. I tried connecting to the dialogue 'response' signal, but it is already too late, the ...
7
votes
1answer
665 views

GTK+ Filechooser to open both files and folders

How do I get my filechooser to be able to select both files and folders when the open button on the filechooser dialog is hit ? I want to squeeze the ability to open files and filders in just one ...
14
votes
5answers
7k views

choosing a file in python - simple GUI

I would like to use the simplest library to choose a file in local directories. My program has nothing to do with a fancy user interface. It can take all the input from the console. I don't want users ...