1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/* -*- mode: c; style: linux -*- */
/* preferences.h
* Copyright (C) 2000 Helix Code, Inc.
*
* Written by Bradford Hovinen (hovinen@helixcode.com)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#ifndef __PREFERENCES_H
#define __PREFERENCES_H
typedef enum _CappletDirViewLayout {
LAYOUT_NONE, LAYOUT_ICON_LIST, LAYOUT_TREE
} CappletDirViewLayout;
#define GNOMECC_PREFERENCES(obj) GTK_CHECK_CAST (obj, gnomecc_preferences_get_type (), GnomeCCPreferences)
#define GNOMECC_PREFERENCES_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gnomecc_preferences_get_type (), GnomeCCPreferencesClass)
#define IS_GNOMECC_PREFERENCES(obj) GTK_CHECK_TYPE (obj, gnomecc_preferences_get_type ())
typedef struct _GnomeCCPreferences GnomeCCPreferences;
typedef struct _GnomeCCPreferencesClass GnomeCCPreferencesClass;
struct _GnomeCCPreferences
{
GtkObject object;
gboolean embed;
gboolean single_window;
CappletDirViewLayout layout;
};
struct _GnomeCCPreferencesClass
{
GtkObjectClass parent;
void (*changed) (GnomeCCPreferences *);
};
guint gnomecc_preferences_get_type (void);
GnomeCCPreferences *gnomecc_preferences_new (void);
GnomeCCPreferences *gnomecc_preferences_clone (GnomeCCPreferences *prefs);
void gnomecc_preferences_copy (GnomeCCPreferences *new,
GnomeCCPreferences *old);
void gnomecc_preferences_load (GnomeCCPreferences *prefs);
void gnomecc_preferences_save (GnomeCCPreferences *prefs);
GtkWidget *gnomecc_preferences_get_config_dialog (GnomeCCPreferences *prefs);
#endif /* __PREFERNCES_H */
|