]> Pileus Git - ~andy/gtk/blob - gtk/gtkfilechoosersettings.h
Fix minor typo in docs. (#378632, Hannes Mueller)
[~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 <glib-object.h>
27 #include "gtkfilechooserprivate.h"
28
29 G_BEGIN_DECLS
30
31 #define GTK_FILE_CHOOSER_SETTINGS_TYPE (_gtk_file_chooser_settings_get_type ())
32
33 typedef struct _GtkFileChooserSettings GtkFileChooserSettings;
34 typedef struct _GtkFileChooserSettingsClass GtkFileChooserSettingsClass;
35
36 struct _GtkFileChooserSettings
37 {
38   GObject object;
39
40   LocationMode location_mode;
41
42   guint settings_read : 1;
43
44   guint show_hidden : 1;
45 };
46
47 struct _GtkFileChooserSettingsClass
48 {
49   GObjectClass parent_class;
50 };
51
52 GType _gtk_file_chooser_settings_get_type (void) G_GNUC_CONST;
53
54 GtkFileChooserSettings *_gtk_file_chooser_settings_new (void);
55
56 LocationMode _gtk_file_chooser_settings_get_location_mode (GtkFileChooserSettings *settings);
57 void         _gtk_file_chooser_settings_set_location_mode (GtkFileChooserSettings *settings,
58                                                            LocationMode            location_mode);
59
60 gboolean _gtk_file_chooser_settings_get_show_hidden (GtkFileChooserSettings *settings);
61 void     _gtk_file_chooser_settings_set_show_hidden (GtkFileChooserSettings *settings,
62                                                      gboolean                show_hidden);
63
64 gboolean _gtk_file_chooser_settings_save (GtkFileChooserSettings *settings,
65                                           GError                **error);
66
67 /* FIXME: persist these options:
68  *
69  * - paned width
70  * - show_hidden
71  */
72
73 G_END_DECLS
74
75 #endif