From 2ab60ecb15ab1a7e30226563a15bbeec05dda54d Mon Sep 17 00:00:00 2001 From: javier Date: Sun, 7 Nov 2010 03:00:56 +0100 Subject: initial import --- preset_list.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 preset_list.h (limited to 'preset_list.h') diff --git a/preset_list.h b/preset_list.h new file mode 100644 index 0000000..9930242 --- /dev/null +++ b/preset_list.h @@ -0,0 +1,37 @@ +/* + * GPL 2 + */ + +#ifndef _CFM_PRESET_LIST_H_ +#define _CFM_PRESET_LIST_H_ + +#include +#include "presets.h" + +#define CFM_TYPE_PRESET_LIST (cfm_preset_list_get_type ()) +#define CFM_PRESET_LIST(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CFM_TYPE_PRESET_LIST, CFmPresetList)) +#define CFM_IS_PRESET_LIST(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CFM_TYPE_PRESET_LIST)) +#define CFM_PRESET_LIST_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CFM_TYPE_PRESET_LIST, CFmPresetListClass)) +#define CFM_IS_PRESET_LIST_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CFM_TYPE_PRESET_LIST)) +#define CFM_PRESET_LIST_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CFM_TYPE_PRESET_LIST, CFmPresetListClass)) + +typedef struct _CFmPresetList CFmPresetList; +typedef struct _CFmPresetListPrivate CFmPresetListPrivate; +typedef struct _CFmPresetListClass CFmPresetListClass; + +struct _CFmPresetList +{ + HildonStackableWindow parent; + CFmPresetListPrivate *priv; +}; + +struct _CFmPresetListClass +{ + HildonStackableWindowClass parent; +}; + +GType cfm_preset_list_get_type (void); +CFmPresetList* cfm_preset_list_new(); +void cfm_preset_list_show_for(CFmPresetList *self, CFmPresets *presets); + +#endif /* _CFM_PRESET_LIST_H_ */ -- cgit v1.2.3