diff options
author | Ramiro Estrugo <ramiro@src.gnome.org> | 2000-03-12 13:06:25 +0000 |
---|---|---|
committer | Ramiro Estrugo <ramiro@src.gnome.org> | 2000-03-12 13:06:25 +0000 |
commit | 9e8ada1277206f2f1ca78e7212b39fd1ad721e07 (patch) | |
tree | 364e36fed32f23999465389641e532d6dd8801ac /libnautilus-private/nautilus-preferences-pane.h | |
parent | 3539ca758811297bf7f3c4399e59189829be9c17 (diff) | |
download | nautilus-9e8ada1277206f2f1ca78e7212b39fd1ad721e07.tar.gz |
Cleanup naming of everything to use "preferences" instead of
"prefs". Remove a bunch of unused includes. Use "Details"
instead of "Private" for private structures.
Diffstat (limited to 'libnautilus-private/nautilus-preferences-pane.h')
-rw-r--r-- | libnautilus-private/nautilus-preferences-pane.h | 46 |
1 files changed, 22 insertions, 24 deletions
diff --git a/libnautilus-private/nautilus-preferences-pane.h b/libnautilus-private/nautilus-preferences-pane.h index 3a7674b30..4dcf2ea03 100644 --- a/libnautilus-private/nautilus-preferences-pane.h +++ b/libnautilus-private/nautilus-preferences-pane.h @@ -22,53 +22,51 @@ Authors: Ramiro Estrugo <ramiro@eazel.com> */ -#ifndef NAUTILUS_PREFS_PANE_H -#define NAUTILUS_PREFS_PANE_H +#ifndef NAUTILUS_PREFERENCES_PANE_H +#define NAUTILUS_PREFERENCES_PANE_H #include <libgnomeui/gnome-dialog.h> #include <gtk/gtkvbox.h> #include <nautilus-widgets/nautilus-preferences-group.h> -//#include <gnome.h> - BEGIN_GNOME_DECLS -#define NAUTILUS_TYPE_PREFS_PANE (nautilus_prefs_pane_get_type ()) -#define NAUTILUS_PREFS_PANE(obj) (GTK_CHECK_CAST ((obj), NAUTILUS_TYPE_PREFS_PANE, NautilusPrefsPane)) -#define NAUTILUS_PREFS_PANE_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), NAUTILUS_TYPE_PREFS_PANE, NautilusPrefsPaneClass)) +#define NAUTILUS_TYPE_PREFS_PANE (nautilus_preferences_pane_get_type ()) +#define NAUTILUS_PREFERENCES_PANE(obj) (GTK_CHECK_CAST ((obj), NAUTILUS_TYPE_PREFS_PANE, NautilusPreferencesPane)) +#define NAUTILUS_PREFERENCES_PANE_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), NAUTILUS_TYPE_PREFS_PANE, NautilusPreferencesPaneClass)) #define NAUTILUS_IS_PREFS_PANE(obj) (GTK_CHECK_TYPE ((obj), NAUTILUS_TYPE_PREFS_PANE)) #define NAUTILUS_IS_PREFS_PANE_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), NAUTILUS_TYPE_PREFS_PANE)) -typedef struct _NautilusPrefsPane NautilusPrefsPane; -typedef struct _NautilusPrefsPaneClass NautilusPrefsPaneClass; -typedef struct _NautilusPrefsPanePrivate NautilusPrefsPanePrivate; +typedef struct _NautilusPreferencesPane NautilusPreferencesPane; +typedef struct _NautilusPreferencesPaneClass NautilusPreferencesPaneClass; +typedef struct _NautilusPreferencesPaneDetails NautilusPreferencesPaneDetails; -struct _NautilusPrefsPane +struct _NautilusPreferencesPane { /* Super Class */ GtkVBox vbox; /* Private stuff */ - NautilusPrefsPanePrivate *priv; + NautilusPreferencesPaneDetails *details; }; -struct _NautilusPrefsPaneClass +struct _NautilusPreferencesPaneClass { GtkVBoxClass parent_class; - void (*construct) (NautilusPrefsPane *prefs_pane, GtkWidget *box); + void (*construct) (NautilusPreferencesPane *prefs_pane, GtkWidget *box); }; -GtkType nautilus_prefs_pane_get_type (void); -GtkWidget* nautilus_prefs_pane_new (const gchar *pane_title, - const gchar *pane_description); -void nautilus_prefs_pane_set_title (NautilusPrefsPane * prefs_pane, - const gchar *pane_title); -void nautilus_prefs_pane_set_description (NautilusPrefsPane * prefs_pane, - const gchar *pane_description); -void nautilus_prefs_pane_add_group (NautilusPrefsPane *prefs_pane, - GtkWidget *prefs_group); +GtkType nautilus_preferences_pane_get_type (void); +GtkWidget* nautilus_preferences_pane_new (const gchar *pane_title, + const gchar *pane_description); +void nautilus_preferences_pane_set_title (NautilusPreferencesPane *prefs_pane, + const gchar *pane_title); +void nautilus_preferences_pane_set_description (NautilusPreferencesPane *prefs_pane, + const gchar *pane_description); +void nautilus_preferences_pane_add_group (NautilusPreferencesPane *prefs_pane, + GtkWidget *prefs_group); BEGIN_GNOME_DECLS -#endif /* NAUTILUS_PREFS_PANE_H */ +#endif /* NAUTILUS_PREFERENCES_PANE_H */ |