~ubuntu-branches/debian/experimental/gtk+2.0/experimental

« back to all changes in this revision

Viewing changes to gtk/gtkfilechoosersettings.h

  • Committer: Package Import Robot
  • Author(s): Josselin Mouette
  • Date: 2011-09-02 17:17:47 UTC
  • mto: (72.4.15 sid)
  • mto: This revision was merged to the branch mainline in revision 102.
  • Revision ID: package-import@ubuntu.com-20110902171747-i8dr3czswn2sk7tu
Tags: upstream-2.24.6
ImportĀ upstreamĀ versionĀ 2.24.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
{
45
45
  GObject object;
46
46
 
 
47
  char *last_folder_uri;
 
48
 
47
49
  LocationMode location_mode;
48
50
 
49
51
  GtkSortType sort_order;
57
59
  guint settings_read    : 1;
58
60
  guint show_hidden      : 1;
59
61
  guint show_size_column : 1;
60
 
  guint expand_folders   : 1;
61
62
};
62
63
 
63
64
struct _GtkFileChooserSettingsClass
69
70
 
70
71
GtkFileChooserSettings *_gtk_file_chooser_settings_new (void);
71
72
 
 
73
char *_gtk_file_chooser_settings_get_last_folder_uri (GtkFileChooserSettings *settings);
 
74
void  _gtk_file_chooser_settings_set_last_folder_uri (GtkFileChooserSettings *settings, const char *uri);
 
75
 
72
76
LocationMode _gtk_file_chooser_settings_get_location_mode (GtkFileChooserSettings *settings);
73
77
void         _gtk_file_chooser_settings_set_location_mode (GtkFileChooserSettings *settings,
74
78
                                                           LocationMode            location_mode);
77
81
void     _gtk_file_chooser_settings_set_show_hidden (GtkFileChooserSettings *settings,
78
82
                                                     gboolean                show_hidden);
79
83
 
80
 
gboolean _gtk_file_chooser_settings_get_expand_folders (GtkFileChooserSettings *settings);
81
 
void     _gtk_file_chooser_settings_set_expand_folders (GtkFileChooserSettings *settings,
82
 
                                                        gboolean                expand_folders);
83
 
 
84
84
gboolean _gtk_file_chooser_settings_get_show_size_column (GtkFileChooserSettings *settings);
85
85
void     _gtk_file_chooser_settings_set_show_size_column (GtkFileChooserSettings *settings,
86
86
                                                          gboolean                show_column);