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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#ifndef EGG_ACTION_GROUP_H
#define EGG_ACTION_GROUP_H
#include <gtk/gtk.h>
#include <egg-action.h>
#define EGG_TYPE_ACTION_GROUP (egg_action_group_get_type ())
#define EGG_ACTION_GROUP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EGG_TYPE_ACTION_GROUP, EggActionGroup))
#define EGG_ACTION_GROUP_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), EGG_TYPE_ACTION_GROUP, EggActionGroupClass))
#define EGG_IS_ACTION_GROUP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EGG_TYPE_ACTION_GROUP))
#define EGG_IS_ACTION_GROUP_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), EGG_TYPE_ACTION_GROUP))
#define EGG_ACTION_GROUP_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), EGG_TYPE_ACTION_GROUP, EggActionGroupClass))
typedef struct _EggActionGroup EggActionGroup;
typedef struct _EggActionGroupClass EggActionGroupClass;
typedef struct _EggActionGroupEntry EggActionGroupEntry;
struct _EggActionGroup
{
GObject parent;
gchar *name;
GHashTable *actions;
};
struct _EggActionGroupClass
{
GObjectClass parent_class;
EggAction *(* get_action) (EggActionGroup *action_group,
const gchar *action_name);
};
typedef enum {
NORMAL_ACTION,
TOGGLE_ACTION,
RADIO_ACTION
} EggActionGroupEntryType;
struct _EggActionGroupEntry {
gchar *name;
gchar *label;
gchar *stock_id;
gchar *accelerator;
gchar *tooltip;
GCallback callback;
gpointer user_data;
EggActionGroupEntryType entry_type;
gchar *extra_data;
};
GType egg_action_group_get_type (void);
EggActionGroup *egg_action_group_new (const gchar *name);
const gchar *egg_action_group_get_name (EggActionGroup *action_group);
EggAction *egg_action_group_get_action (EggActionGroup *action_group,
const gchar *action_name);
GList *egg_action_group_list_actions (EggActionGroup *action_group);
void egg_action_group_add_action (EggActionGroup *action_group,
EggAction *action);
void egg_action_group_remove_action (EggActionGroup *action_group,
EggAction *action);
void egg_action_group_add_actions (EggActionGroup *action_group,
EggActionGroupEntry *entries,
guint n_entries);
#endif
|