aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-categories-master-list-wombat.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-07-03 10:57:58 +0800
committerChris Lahey <clahey@src.gnome.org>2001-07-03 10:57:58 +0800
commite3997d78ae0e2451090c934983568ed89b86e87e (patch)
tree9d585beca9bec6951b830d9a9032179b6d4ca985 /e-util/e-categories-master-list-wombat.h
parente1e2d6393df2a7e1af08a18330fe65c49d81d9c9 (diff)
downloadgsoc2013-evolution-e3997d78ae0e2451090c934983568ed89b86e87e.tar
gsoc2013-evolution-e3997d78ae0e2451090c934983568ed89b86e87e.tar.gz
gsoc2013-evolution-e3997d78ae0e2451090c934983568ed89b86e87e.tar.bz2
gsoc2013-evolution-e3997d78ae0e2451090c934983568ed89b86e87e.tar.lz
gsoc2013-evolution-e3997d78ae0e2451090c934983568ed89b86e87e.tar.xz
gsoc2013-evolution-e3997d78ae0e2451090c934983568ed89b86e87e.tar.zst
gsoc2013-evolution-e3997d78ae0e2451090c934983568ed89b86e87e.zip
Added e-categories-master-list-wombat.c and
2001-07-02 Christopher James Lahey <clahey@ximian.com> * Makefile.am (libeutil_la_SOURCES): Added e-categories-master-list-wombat.c and e-categories-master-list-wombat.h. (INCLUDES): Added $(BONOBO_CONF_CFLAGS). * e-categories-master-list-wombat.c, e-categories-master-list-wombat.h: New class implementing a master list that stores its state using bonobo-conf. svn path=/trunk/; revision=10720
Diffstat (limited to 'e-util/e-categories-master-list-wombat.h')
-rw-r--r--e-util/e-categories-master-list-wombat.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/e-util/e-categories-master-list-wombat.h b/e-util/e-categories-master-list-wombat.h
new file mode 100644
index 0000000000..a6fe2a04ff
--- /dev/null
+++ b/e-util/e-categories-master-list-wombat.h
@@ -0,0 +1,35 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+#ifndef _E_CATEGORIES_MASTER_LIST_WOMBAT_H_
+#define _E_CATEGORIES_MASTER_LIST_WOMBAT_H_
+
+#include <gal/widgets/e-categories-master-list-array.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+#define E_CATEGORIES_MASTER_LIST_WOMBAT_TYPE (e_categories_master_list_wombat_get_type ())
+#define E_CATEGORIES_MASTER_LIST_WOMBAT(o) (GTK_CHECK_CAST ((o), E_CATEGORIES_MASTER_LIST_WOMBAT_TYPE, ECategoriesMasterListWombat))
+#define E_CATEGORIES_MASTER_LIST_WOMBAT_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_CATEGORIES_MASTER_LIST_WOMBAT_TYPE, ECategoriesMasterListWombatClass))
+#define E_IS_CATEGORIES_MASTER_LIST_WOMBAT(o) (GTK_CHECK_TYPE ((o), E_CATEGORIES_MASTER_LIST_WOMBAT_TYPE))
+#define E_IS_CATEGORIES_MASTER_LIST_WOMBAT_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_CATEGORIES_MASTER_LIST_WOMBAT_TYPE))
+
+typedef struct _ECategoriesMasterListWombatPriv ECategoriesMasterListWombatPriv;
+
+typedef struct {
+ ECategoriesMasterListArray base;
+ ECategoriesMasterListWombatPriv *priv;
+} ECategoriesMasterListWombat;
+
+typedef struct {
+ ECategoriesMasterListArrayClass parent_class;
+} ECategoriesMasterListWombatClass;
+
+GtkType e_categories_master_list_wombat_get_type (void);
+ECategoriesMasterList *e_categories_master_list_wombat_new (void);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* _E_CATEGORIES_MASTER_LIST_WOMBAT_H_ */