summaryrefslogtreecommitdiff
path: root/libnautilus-extensions/nautilus-preferences-item.h
diff options
context:
space:
mode:
authorRamiro Estrugo <ramiro@src.gnome.org>2000-03-11 00:08:07 +0000
committerRamiro Estrugo <ramiro@src.gnome.org>2000-03-11 00:08:07 +0000
commitb948827821e27c22c1d23683d70c257290f932e9 (patch)
tree65c88f2a1c5501567e8802e879335d7992751d4f /libnautilus-extensions/nautilus-preferences-item.h
parentbddcc07d4b212d667f3f8030d8a8cf831412ed13 (diff)
downloadnautilus-b948827821e27c22c1d23683d70c257290f932e9.tar.gz
Moved all the preference widetry to nautilus-widgets.
Added a test program for preferences (not built). Renamed files to user "preference" instead of "prefs".
Diffstat (limited to 'libnautilus-extensions/nautilus-preferences-item.h')
-rw-r--r--libnautilus-extensions/nautilus-preferences-item.h81
1 files changed, 81 insertions, 0 deletions
diff --git a/libnautilus-extensions/nautilus-preferences-item.h b/libnautilus-extensions/nautilus-preferences-item.h
new file mode 100644
index 000000000..4a9bb30a2
--- /dev/null
+++ b/libnautilus-extensions/nautilus-preferences-item.h
@@ -0,0 +1,81 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
+
+/* nautilus-preferences-item.h - Interface for an individual prefs item.
+
+ Copyright (C) 1999, 2000 Eazel, Inc.
+
+ The Gnome Library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version.
+
+ The Gnome Library 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
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with the Gnome Library; see the file COPYING.LIB. If not,
+ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+ Authors: Ramiro Estrugo <ramiro@eazel.com>
+*/
+
+#ifndef NAUTILUS_PREFERENCES_ITEM_H
+#define NAUTILUS_PREFERENCES_ITEM_H
+
+#include <gtk/gtkvbox.h>
+#include <gnome.h>
+
+BEGIN_GNOME_DECLS
+
+#define NAUTILUS_TYPE_PREFERENCES_ITEM (nautilus_preferences_item_get_type ())
+#define NAUTILUS_PREFERENCES_ITEM(obj) (GTK_CHECK_CAST ((obj), NAUTILUS_TYPE_PREFERENCES_ITEM, NautilusPreferencesItem))
+#define NAUTILUS_PREFERENCES_ITEM_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), NAUTILUS_TYPE_PREFERENCES_ITEM, NautilusPreferencesItemClass))
+#define NAUTILUS_IS_PREFERENCES_ITEM(obj) (GTK_CHECK_TYPE ((obj), NAUTILUS_TYPE_PREFERENCES_ITEM))
+#define NAUTILUS_IS_PREFERENCES_ITEM_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), NAUTILUS_TYPE_PREFERENCES_ITEM))
+
+typedef struct _NautilusPreferencesItem NautilusPreferencesItem;
+typedef struct _NautilusPreferencesItemClass NautilusPreferencesItemClass;
+typedef struct _NautilusPreferencesItemDetails NautilusPreferencesItemDetails;
+
+typedef enum
+{
+ NAUTILUS_PREFERENCES_ITEM_UNKNOWN,
+ NAUTILUS_PREFERENCES_ITEM_BOOL,
+ NAUTILUS_PREFERENCES_ITEM_ENUM,
+ NAUTILUS_PREFERENCES_ITEM_INT
+} NautilusPreferencesItemType;
+
+struct _NautilusPreferencesItem
+{
+ /* Super Class */
+ GtkVBox vbox;
+
+ /* Private stuff */
+ NautilusPreferencesItemDetails *details;
+};
+
+struct _NautilusPreferencesItemClass
+{
+ GtkVBoxClass vbox_class;
+
+// void (*construct) (NautilusPreferencesItem *preferences_item,
+// const gchar * group_title,
+// GtkObject *prefs,
+// const gchar *pref_name);
+
+// void (*changed) (NautilusPreferencesItem *preferences_item);
+};
+
+GtkType nautilus_preferences_item_get_type (void);
+GtkWidget* nautilus_preferences_item_new (GtkObject *prefs,
+ const gchar *pref_name,
+ NautilusPreferencesItemType item_type);
+
+BEGIN_GNOME_DECLS
+
+#endif /* NAUTILUS_PREFERENCES_ITEM_H */
+
+