]> Pileus Git - ~andy/gtk/blob - gtk/gtkfilechoosersettings.h
Revert name change
[~andy/gtk] / gtk / gtkfilechoosersettings.h
1 /* GTK - The GIMP Toolkit
2  * gtkfilechoosersettings.h: Internal settings for the GtkFileChooser widget
3  * Copyright (C) 2006, Novell, Inc.
4  *
5  * Authors: Federico Mena-Quintero <federico@novell.com>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifndef __GTK_FILE_CHOOSER_SETTINGS_H__
24 #define __GTK_FILE_CHOOSER_SETTINGS_H__
25
26 #include "gtkfilechooserprivate.h"
27
28 G_BEGIN_DECLS
29
30 #define GTK_FILE_CHOOSER_SETTINGS_TYPE (_gtk_file_chooser_settings_get_type ())
31
32 typedef struct _GtkFileChooserSettings GtkFileChooserSettings;
33 typedef struct _GtkFileChooserSettingsClass GtkFileChooserSettingsClass;
34
35 struct _GtkFileChooserSettings
36 {
37   GObject object;
38
39   LocationMode location_mode;
40
41   guint settings_read : 1;
42
43   guint show_hidden : 1;
44
45   guint expand_folders : 1;
46 };
47
48 struct _GtkFileChooserSettingsClass
49 {
50   GObjectClass parent_class;
51 };
52
53 GType _gtk_file_chooser_settings_get_type (void) G_GNUC_CONST;
54
55 GtkFileChooserSettings *_gtk_file_chooser_settings_new (void);
56
57 LocationMode _gtk_file_chooser_settings_get_location_mode (GtkFileChooserSettings *settings);
58 void         _gtk_file_chooser_settings_set_location_mode (GtkFileChooserSettings *settings,
59                                                            LocationMode            location_mode);
60
61 gboolean _gtk_file_chooser_settings_get_show_hidden (GtkFileChooserSettings *settings);
62 void     _gtk_file_chooser_settings_set_show_hidden (GtkFileChooserSettings *settings,
63                                                      gboolean                show_hidden);
64
65 gboolean _gtk_file_chooser_settings_get_expand_folders (GtkFileChooserSettings *settings);
66 void     _gtk_file_chooser_settings_set_expand_folders (GtkFileChooserSettings *settings,
67                                                         gboolean                expand_folders);
68
69 gboolean _gtk_file_chooser_settings_save (GtkFileChooserSettings *settings,
70                                           GError                **error);
71
72 /* FIXME: persist these options:
73  *
74  * - paned width
75  * - show_hidden
76  */
77
78 G_END_DECLS
79
80 #endif