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
72
73
74
75
76
77
78
79
80
81
82
83
|
#ifndef EGG_ACTION_H
#define EGG_ACTION_H
#include <gtk/gtk.h>
#define EGG_TYPE_ACTION (egg_action_get_type ())
#define EGG_ACTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EGG_TYPE_ACTION, EggAction))
#define EGG_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EGG_TYPE_ACTION, EggActionClass))
#define EGG_IS_ACTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EGG_TYPE_ACTION))
#define EGG_IS_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), EGG_TYPE_ACTION))
#define EGG_ACTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), EGG_TYPE_ACTION, EggActionClass))
typedef struct _EggAction EggAction;
typedef struct _EggActionClass EggActionClass;
struct _EggAction
{
GObject object;
gchar *name;
gchar *label;
gchar *short_label;
gchar *tooltip;
gchar *stock_id; /* icon */
guint sensitive : 1;
guint visible : 1;
guint label_set : 1; /* these two used so we can set label */
guint short_label_set : 1; /* based on stock id */
/* accelerator */
GQuark accel_quark;
/* list of proxy widgets */
GSList *proxies;
GtkTooltips *tooltips;
};
struct _EggActionClass
{
GObjectClass parent_class;
/* activation signal */
void (* activate) (EggAction *action);
GType menu_item_type;
GType toolbar_item_type;
/* widget creation routines (not signals) */
GtkWidget *(* create_menu_item) (EggAction *action);
GtkWidget *(* create_tool_item) (EggAction *action);
void (* connect_proxy) (EggAction *action,
GtkWidget *proxy);
void (* disconnect_proxy) (EggAction *action,
GtkWidget *proxy);
};
GType egg_action_get_type (void);
void egg_action_activate (EggAction *action);
GtkWidget *egg_action_create_icon (EggAction *action,
GtkIconSize icon_size);
GtkWidget *egg_action_create_menu_item (EggAction *action);
GtkWidget *egg_action_create_tool_item (EggAction *action);
void egg_action_connect_proxy (EggAction *action,
GtkWidget *proxy);
void egg_action_disconnect_proxy (EggAction *action,
GtkWidget *proxy);
/* protected ... for use by child actions */
void egg_action_block_activate_from (EggAction *action,
GtkWidget *proxy);
void egg_action_unblock_activate_from (EggAction *action,
GtkWidget *proxy);
/* protected ... for use by action groups */
void egg_action_set_accel_path (EggAction *action,
const gchar *accel_path);
#endif
|