]> Pileus Git - ~andy/gtk/blob - gtk/gtkfilechooserprivate.h
Merge of the GTK+ asynchronous file chooser branch. Please see the
[~andy/gtk] / gtk / gtkfilechooserprivate.h
1 /* GTK - The GIMP Toolkit
2  * gtkfilechooserprivate.h: Interface definition for file selector GUIs
3  * Copyright (C) 2003, Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef __GTK_FILE_CHOOSER_PRIVATE_H__
22 #define __GTK_FILE_CHOOSER_PRIVATE_H__
23
24 #include "gtkfilechooser.h"
25 #include "gtkfilesystem.h"
26 #include "gtkfilesystemmodel.h"
27 #include "gtkliststore.h"
28 #include "gtktooltips.h"
29 #include "gtktreemodelsort.h"
30 #include "gtktreestore.h"
31 #include "gtktreeview.h"
32 #include "gtkvbox.h"
33
34 G_BEGIN_DECLS
35
36 #define GTK_FILE_CHOOSER_GET_IFACE(inst)  (G_TYPE_INSTANCE_GET_INTERFACE ((inst), GTK_TYPE_FILE_CHOOSER, GtkFileChooserIface))
37
38 typedef struct _GtkFileChooserIface GtkFileChooserIface;
39
40 struct _GtkFileChooserIface
41 {
42   GTypeInterface base_iface;
43
44   /* Methods
45    */
46   gboolean       (*set_current_folder)     (GtkFileChooser    *chooser,
47                                             const GtkFilePath *path,
48                                             GError           **error);
49   GtkFilePath *  (*get_current_folder)     (GtkFileChooser    *chooser);
50   void           (*set_current_name)       (GtkFileChooser    *chooser,
51                                             const gchar       *name);
52   gboolean       (*select_path)            (GtkFileChooser    *chooser,
53                                             const GtkFilePath *path,
54                                             GError           **error);
55   void           (*unselect_path)          (GtkFileChooser    *chooser,
56                                             const GtkFilePath *path);
57   void           (*select_all)             (GtkFileChooser    *chooser);
58   void           (*unselect_all)           (GtkFileChooser    *chooser);
59   GSList *       (*get_paths)              (GtkFileChooser    *chooser);
60   GtkFilePath *  (*get_preview_path)       (GtkFileChooser    *chooser);
61   GtkFileSystem *(*get_file_system)        (GtkFileChooser    *chooser);
62   void           (*add_filter)             (GtkFileChooser    *chooser,
63                                             GtkFileFilter     *filter);
64   void           (*remove_filter)          (GtkFileChooser    *chooser,
65                                             GtkFileFilter     *filter);
66   GSList *       (*list_filters)           (GtkFileChooser    *chooser);
67   gboolean       (*add_shortcut_folder)    (GtkFileChooser    *chooser,
68                                             const GtkFilePath *path,
69                                             GError           **error);
70   gboolean       (*remove_shortcut_folder) (GtkFileChooser    *chooser,
71                                             const GtkFilePath *path,
72                                             GError           **error);
73   GSList *       (*list_shortcut_folders)  (GtkFileChooser    *chooser);
74   
75   /* Signals
76    */
77   void (*current_folder_changed) (GtkFileChooser *chooser);
78   void (*selection_changed)      (GtkFileChooser *chooser);
79   void (*update_preview)         (GtkFileChooser *chooser);
80   void (*file_activated)         (GtkFileChooser *chooser);
81   GtkFileChooserConfirmation (*confirm_overwrite) (GtkFileChooser *chooser);
82 };
83
84 GtkFileSystem *_gtk_file_chooser_get_file_system         (GtkFileChooser    *chooser);
85 gboolean       _gtk_file_chooser_set_current_folder_path (GtkFileChooser    *chooser,
86                                                           const GtkFilePath *path,
87                                                           GError           **error);
88 GtkFilePath *  _gtk_file_chooser_get_current_folder_path (GtkFileChooser    *chooser);
89 gboolean       _gtk_file_chooser_select_path             (GtkFileChooser    *chooser,
90                                                           const GtkFilePath *path,
91                                                           GError           **error);
92 void           _gtk_file_chooser_unselect_path           (GtkFileChooser    *chooser,
93                                                           const GtkFilePath *path);
94 GSList *       _gtk_file_chooser_get_paths               (GtkFileChooser    *chooser);
95 GtkFilePath *  _gtk_file_chooser_get_preview_path        (GtkFileChooser    *chooser);
96 gboolean       _gtk_file_chooser_add_shortcut_folder     (GtkFileChooser    *chooser,
97                                                           const GtkFilePath *path,
98                                                           GError           **error);
99 gboolean       _gtk_file_chooser_remove_shortcut_folder  (GtkFileChooser    *chooser,
100                                                           const GtkFilePath *path,
101                                                           GError           **error);
102
103 /* GtkFileChooserDialog private */
104
105 struct _GtkFileChooserDialogPrivate
106 {
107   GtkWidget *widget;
108   
109   char *file_system;
110
111   /* for use with GtkFileChooserEmbed */
112   gint default_width;
113   gint default_height;
114   gboolean resize_horizontally;
115   gboolean resize_vertically;
116   gboolean response_requested;
117 };
118
119
120 /* GtkFileChooserWidget private */
121
122 struct _GtkFileChooserWidgetPrivate
123 {
124   GtkWidget *impl;
125
126   char *file_system;
127 };
128
129
130 /* GtkFileChooserDefault private */
131
132 typedef enum {
133   LOAD_EMPTY,                   /* There is no model */
134   LOAD_PRELOAD,                 /* Model is loading and a timer is running; model isn't inserted into the tree yet */
135   LOAD_LOADING,                 /* Timeout expired, model is inserted into the tree, but not fully loaded yet */
136   LOAD_FINISHED                 /* Model is fully loaded and inserted into the tree */
137 } LoadState;
138
139 typedef enum {
140   RELOAD_EMPTY,                 /* No folder has been set */
141   RELOAD_HAS_FOLDER,            /* We have a folder, although it may not be completely loaded yet; no need to reload */
142   RELOAD_WAS_UNMAPPED           /* We had a folder but got unmapped; reload is needed */
143 } ReloadState;
144
145 struct _GtkFileChooserDefault
146 {
147   GtkVBox parent_instance;
148
149   GtkFileChooserAction action;
150
151   GtkFileSystem *file_system;
152
153   /* Save mode widgets */
154   GtkWidget *save_widgets;
155
156   GtkWidget *save_file_name_entry;
157   GtkWidget *save_folder_label;
158   GtkWidget *save_folder_combo;
159   GtkWidget *save_expander;
160
161   /* The file browsing widgets */
162   GtkWidget *browse_widgets;
163   GtkWidget *browse_shortcuts_tree_view;
164   GtkWidget *browse_shortcuts_add_button;
165   GtkWidget *browse_shortcuts_remove_button;
166   GtkWidget *browse_shortcuts_popup_menu;
167   GtkWidget *browse_shortcuts_popup_menu_remove_item;
168   GtkWidget *browse_shortcuts_popup_menu_rename_item;
169   GtkWidget *browse_files_tree_view;
170   GtkWidget *browse_files_popup_menu;
171   GtkWidget *browse_files_popup_menu_add_shortcut_item;
172   GtkWidget *browse_files_popup_menu_hidden_files_item;
173   GtkWidget *browse_new_folder_button;
174   GtkWidget *browse_path_bar;
175
176   GtkFileSystemModel *browse_files_model;
177
178   GtkWidget *filter_combo_hbox;
179   GtkWidget *filter_combo;
180   GtkWidget *preview_box;
181   GtkWidget *preview_label;
182   GtkWidget *preview_widget;
183   GtkWidget *extra_align;
184   GtkWidget *extra_widget;
185
186   GtkListStore *shortcuts_model;
187   GtkTreeModel *shortcuts_filter_model;
188
189   GtkTreeModelSort *sort_model;
190
191   /* Handles */
192   GSList *loading_shortcuts;
193   GSList *reload_icon_handles;
194   GtkFileSystemHandle *file_list_drag_data_received_handle;
195   GtkFileSystemHandle *update_current_folder_handle;
196   GtkFileSystemHandle *show_and_select_paths_handle;
197   GtkFileSystemHandle *should_respond_get_info_handle;
198   GtkFileSystemHandle *update_from_entry_handle;
199   GtkFileSystemHandle *shortcuts_activate_iter_handle;
200   GSList *pending_handles;
201
202   LoadState load_state;
203   ReloadState reload_state;
204   guint load_timeout_id;
205
206   GSList *pending_select_paths;
207
208   GtkFileFilter *current_filter;
209   GSList *filters;
210
211   GtkTooltips *tooltips;
212
213   gboolean has_home;
214   gboolean has_desktop;
215
216   int num_volumes;
217   int num_shortcuts;
218   int num_bookmarks;
219
220   gulong volumes_changed_id;
221   gulong bookmarks_changed_id;
222
223   GtkFilePath *current_volume_path;
224   GtkFilePath *current_folder;
225   GtkFilePath *preview_path;
226   char *preview_display_name;
227
228   GtkTreeViewColumn *list_name_column;
229   GtkCellRenderer *list_name_renderer;
230
231   GSource *edited_idle;
232   char *edited_new_text;
233
234   gulong settings_signal_id;
235   int icon_size;
236
237   gulong toplevel_set_focus_id;
238   GtkWidget *toplevel_last_focus_widget;
239
240 #if 0
241   GdkDragContext *shortcuts_drag_context;
242   GSource *shortcuts_drag_outside_idle;
243 #endif
244
245   /* Flags */
246
247   guint local_only : 1;
248   guint preview_widget_active : 1;
249   guint use_preview_label : 1;
250   guint select_multiple : 1;
251   guint show_hidden : 1;
252   guint do_overwrite_confirmation : 1;
253   guint list_sort_ascending : 1;
254   guint changing_folder : 1;
255   guint shortcuts_current_folder_active : 1;
256
257 #if 0
258   guint shortcuts_drag_outside : 1;
259 #endif
260 };
261
262
263 /* GtkFileSystemModel private */
264
265 typedef struct _FileModelNode           FileModelNode;
266
267 struct _GtkFileSystemModel
268 {
269   GObject parent_instance;
270
271   GtkFileSystem  *file_system;
272   GtkFileInfoType types;
273   FileModelNode  *roots;
274   GtkFileFolder  *root_folder;
275   GtkFilePath    *root_path;
276
277   GtkFileSystemModelFilter filter_func;
278   gpointer filter_data;
279
280   GSList *idle_clears;
281   GSource *idle_clear_source;
282
283   gushort max_depth;
284
285   GSList *pending_handles;
286   
287   guint show_hidden : 1;
288   guint show_folders : 1;
289   guint show_files : 1;
290   guint folders_only : 1;
291   guint has_editable : 1;
292 };
293
294 struct _FileModelNode
295 {
296   GtkFilePath *path;
297   FileModelNode *next;
298
299   GtkFileInfo *info;
300   GtkFileFolder *folder;
301   
302   FileModelNode *children;
303   FileModelNode *parent;
304   GtkFileSystemModel *model;
305
306   guint ref_count;
307   guint n_referenced_children;
308
309   gushort depth;
310
311   guint has_dummy : 1;
312   guint is_dummy : 1;
313   guint is_visible : 1;
314   guint loaded : 1;
315   guint idle_clear : 1;
316   guint load_pending : 1;
317 };
318
319
320 G_END_DECLS
321
322 #endif /* __GTK_FILE_CHOOSER_PRIVATE_H__ */