Top | ![]() |
![]() |
![]() |
![]() |
GObject ╰── GInitiallyUnowned ╰── GtkObject ╰── GtkWidget ╰── GtkContainer ╰── GtkBin ╰── GtkWindow ╰── GtkIconFileSel
It is a nice looking file selection dialog using icons. It combines GtkDirTree and GtkFileList to navigate the file system and select files. It has also two entries to select the file and filter.
void gtk_icon_file_selection_construct (GtkIconFileSel *filesel
,const gchar *title
);
Sets the window title for GtkIconFileSelection widget.
void gtk_icon_file_selection_show_tree (GtkIconFileSel *filesel
,gboolean show
);
Show icon file selection tree in filesel widget.
gint gtk_icon_file_selection_open_dir (GtkIconFileSel *filesel
,const gchar *path
);
Show the file from path directory in filesel widget.
void gtk_icon_file_selection_show_hidden (GtkIconFileSel *filesel
,gboolean visible
);
Set the visibility of hidden files.
void gtk_icon_file_selection_set_filter (GtkIconFileSel *filesel
,const gchar *filter
);
Set a filter for the files show in filelist.
const gchar *
gtk_icon_file_selection_get_selection (GtkIconFileSel *filesel
);
Gets the current selection applied on GtkIconFileSelection.