diff options
Diffstat (limited to 'e-util/e-categories-master-list-wombat.h')
-rw-r--r-- | e-util/e-categories-master-list-wombat.h | 35 |
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_ */ |