]> Pileus Git - ~andy/gtk/blob - gtk/gtkfilechoosersettings.h
Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
[~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   guint expand_folders : 1;
47 };
48
49 struct _GtkFileChooserSettingsClass
50 {
51   GObjectClass parent_class;
52 };
53
54 GType _gtk_file_chooser_settings_get_type (void) G_GNUC_CONST;
55
56 GtkFileChooserSettings *_gtk_file_chooser_settings_new (void);
57
58 LocationMode _gtk_file_chooser_settings_get_location_mode (GtkFileChooserSettings *settings);
59 void         _gtk_file_chooser_settings_set_location_mode (GtkFileChooserSettings *settings,
60                                                            LocationMode            location_mode);
61
62 gboolean _gtk_file_chooser_settings_get_show_hidden (GtkFileChooserSettings *settings);
63 void     _gtk_file_chooser_settings_set_show_hidden (GtkFileChooserSettings *settings,
64                                                      gboolean                show_hidden);
65
66 gboolean _gtk_file_chooser_settings_get_expand_folders (GtkFileChooserSettings *settings);
67 void     _gtk_file_chooser_settings_set_expand_folders (GtkFileChooserSettings *settings,
68                                                         gboolean                expand_folders);
69
70 gboolean _gtk_file_chooser_settings_save (GtkFileChooserSettings *settings,
71                                           GError                **error);
72
73 /* FIXME: persist these options:
74  *
75  * - paned width
76  * - show_hidden
77  */
78
79 G_END_DECLS
80
81 #endif