blob: 8390d308bd9786ce37dfc9bd30bc7a8b30281a28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*
* GPL 2
*/
#ifndef _CFM_PRESET_LIST_H_
#define _CFM_PRESET_LIST_H_
#include <hildon/hildon.h>
#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) G_GNUC_CONST;
CFmPresetList* cfm_preset_list_new();
void cfm_preset_list_show(CFmPresetList *self);
void cfm_preset_list_hide(CFmPresetList *self);
#endif /* _CFM_PRESET_LIST_H_ */
|