Tagged Questions
0
votes
1answer
28 views
How to resolve this error in GTK File Chooser Dialog
I have a button that will open a filechooser. But, I got this error:
(gui.py:9127): Gtk-CRITICAL **: gtk_widget_grab_default: assertion
`gtk_widget_get_can_default (widget)' failed
...
0
votes
1answer
69 views
C GTK+ segfault if call gtkfilechooser after calling any function
Linux IBM370 3.5.0-17-generic #28-Ubuntu SMP Tue Oct 9 19:31:23 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1)
ldd (Ubuntu EGLIBC 2.15-0ubuntu20) 2.15
GTK+ ...
1
vote
2answers
173 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
2answers
176 views
Get name of file from filechooser
I am trying to get the name of a file when I select it using a file chooser.
I managed to do
gchar *name = gtk_file_chooser_get_filename(open_dialog);
but that will return ...
1
vote
1answer
1k 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.) ...
1
vote
1answer
293 views
SFML and GTK+ - GtkFileChooserDialog
I'm writing an app using SFML and I want to use GTK+ to create file chooser dialogs. I have this code:
gtk_init(&argc, &argv);
GtkWidget *dialog;
dialog = gtk_file_chooser_dialog_new ("Open ...
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
674 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 ...
2
votes
1answer
310 views
Enable GtkFileChooserDialog to select files OR folders
Using GTK+'s GtkFileChooserDialog, how can I allow the user to select a file or a folder (both are valid here). The actions available are mutually exclusive.
0
votes
2answers
1k views
How to set gtk file chooser button default to user's home folder
I've got a gtk file chooser button on my application I am writing in c# using Mono Develop. I would like to set the file chooser's default location to the users' home directory regardless of what user ...
