GtkFileSelection

Name

GtkFileSelection -- prompt the user for a file or directory name.

Synopsis


#include <gtk/gtk.h>


struct      GtkFileSelection;
GtkWidget*  gtk_file_selection_new          (const gchar *title);
void        gtk_file_selection_set_filename (GtkFileSelection *filesel,
                                             const gchar *filename);
G_CONST_RETURN gchar* gtk_file_selection_get_filename
                                            (GtkFileSelection *filesel);
void        gtk_file_selection_complete     (GtkFileSelection *filesel,
                                             const gchar *pattern);
void        gtk_file_selection_show_fileop_buttons
                                            (GtkFileSelection *filesel);
void        gtk_file_selection_hide_fileop_buttons
                                            (GtkFileSelection *filesel);
gchar**     gtk_file_selection_get_selections
                                            (GtkFileSelection *filesel);
void        gtk_file_selection_set_select_multiple
                                            (GtkFileSelection *filesel,
                                             gboolean select_multiple);
gboolean    gtk_file_selection_get_select_multiple
                                            (GtkFileSelection *filesel);


Object Hierarchy


  GObject
   +----GtkObject
         +----GtkWidget
               +----GtkContainer
                     +----GtkBin
                           +----GtkWindow
                                 +----GtkDialog
                                       +----GtkFileSelection

Properties


  "show-fileops"         gboolean             : Read / Write
  "filename"             gchararray           : Read / Write
  "select-multiple"      gboolean             : Read / Write

Description

GtkFileSelection should be used to retrieve file or directory names from the user. It will create a new dialog window containing a directory list, and a file list corresponding to the current working directory. The filesystem can be navigated using the directory list or the drop-down history menu. Alternatively, the TAB key can be used to navigate using filename completion - common in text based editors such as emacs and jed.

File selection dialogs are created with a call to gtk_file_selection_new().

The default filename can be set using gtk_file_selection_set_filename() and the selected filename retrieved using gtk_file_selection_get_filename().

Use gtk_file_selection_complete() to display files and directories that match a given pattern. This can be used for example, to show only *.txt files, or only files beginning with gtk*.

Simple file operations; create directory, delete file, and rename file, are available from buttons at the top of the dialog. These can be hidden using gtk_file_selection_hide_fileop_buttons() and shown again using gtk_file_selection_show_fileop_buttons().

Example 1. Getting a filename from the user.


/* The file selection widget and the string to store the chosen filename */

GtkWidget *file_selector;
gchar *selected_filename;

void store_filename (GtkFileSelection *selector, gpointer user_data) {
   selected_filename = gtk_file_selection_get_filename (GTK_FILE_SELECTION (file_selector));
}

void create_file_selection (void) {

   /* Create the selector */
   
   file_selector = gtk_file_selection_new ("Please select a file for editing.");
   
   g_signal_connect (GTK_OBJECT (GTK_FILE_SELECTION (file_selector)->ok_button),
                     "clicked",
                     G_CALLBACK (store_filename),
                     NULL);
   			   
   /* Ensure that the dialog box is destroyed when the user clicks a button. */
   
   g_signal_connect_swapped (GTK_OBJECT (GTK_FILE_SELECTION (file_selector)->ok_button),
                             "clicked",
                             G_CALLBACK (gtk_widget_destroy), 
                             (gpointer) file_selector); 

   g_signal_connect_swapped (GTK_OBJECT (GTK_FILE_SELECTION (file_selector)->cancel_button),
                             "clicked",
                             G_CALLBACK (gtk_widget_destroy),
                             (gpointer) file_selector); 
   
   /* Display that dialog */
   
   gtk_widget_show (file_selector);
}

Details

struct GtkFileSelection

struct GtkFileSelection;

The GtkFileSelection struct contains the following GtkWidget fields:


gtk_file_selection_new ()

GtkWidget*  gtk_file_selection_new          (const gchar *title);

Creates a new file selection dialog box. By default it will contain a GtkCList of the application's current working directory, and a file listing. Operation buttons that allow the user to create a directory, delete files and rename files, are also present.


gtk_file_selection_set_filename ()

void        gtk_file_selection_set_filename (GtkFileSelection *filesel,
                                             const gchar *filename);

Sets a default path for the file requestor. If filename includes a directory path, then the requestor will open with that path as its current working directory.


gtk_file_selection_get_filename ()

G_CONST_RETURN gchar* gtk_file_selection_get_filename
                                            (GtkFileSelection *filesel);

This function returns the selected filename in encoding of g_filename_from_utf8(), which may or may not be the same as that used by GTK+ (UTF-8). To convert to UTF-8, call g_filename_to_utf8(). The returned string points to a statically allocated buffer and should be copied if you plan to keep it around.

Retrieves the currently selected filename from the file selection dialog. If no file is selected then the selected directory path is returned.


gtk_file_selection_complete ()

void        gtk_file_selection_complete     (GtkFileSelection *filesel,
                                             const gchar *pattern);

Will attempt to match pattern to a valid filenames or subdirectories in the current directory. If a match can be made, the matched filename will appear in the text entry field of the file selection dialog. If a partial match can be made, the "Files" list will contain those file names which have been partially matched, and the "Directories" list those directories which have been partially matched.


gtk_file_selection_show_fileop_buttons ()

void        gtk_file_selection_show_fileop_buttons
                                            (GtkFileSelection *filesel);

Shows the file operation buttons, if they have previously been hidden. The rest of the widgets in the dialog will be resized accordingly.


gtk_file_selection_hide_fileop_buttons ()

void        gtk_file_selection_hide_fileop_buttons
                                            (GtkFileSelection *filesel);

Hides the file operation buttons that normally appear at the top of the dialog. Useful if you wish to create a custom file selector, based on GtkFileSelection.


gtk_file_selection_get_selections ()

gchar**     gtk_file_selection_get_selections
                                            (GtkFileSelection *filesel);

Retrieves the list of file selections the user has made in the dialog box. This function is intended for use when the user can select multiple files in the file list. The first file in the list is equivalent to what gtk_file_selection_get_filename() would return.

The filenames are in the encoding of g_filename_from_utf8, which may or may not be the same as that used by GTK+ (UTF-8). To convert to UTF-8, call g_filename_to_utf8() on each string.


gtk_file_selection_set_select_multiple ()

void        gtk_file_selection_set_select_multiple
                                            (GtkFileSelection *filesel,
                                             gboolean select_multiple);

Sets whether the user is allowed to select multiple files in the file list. Use gtk_file_selection_get_selections() to get the list of selected files.


gtk_file_selection_get_select_multiple ()

gboolean    gtk_file_selection_get_select_multiple
                                            (GtkFileSelection *filesel);

Determines whether or not the user is allowed to select multiple files in the file list. See gtk_file_selection_set_select_multiple().

Properties

"show-fileops" (gboolean : Read / Write)

"filename" (gchararray : Read / Write)

"select-multiple" (gboolean : Read / Write)

See Also

GtkDialog

Add your own widgets into the GtkFileSelection.