summaryrefslogtreecommitdiff
path: root/src/bin/e_actions.h
blob: 7381d0dcc3d2ab33351959387108352bd5d86fed (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
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
#ifdef E_TYPEDEFS

typedef struct _E_Action E_Action;
typedef struct _E_Action_Description E_Action_Description;
typedef struct _E_Action_Group E_Action_Group;

#else
#ifndef E_ACTIONS_H
#define E_ACTIONS_H

#define E_ACTION_TYPE 0xE0b01010

struct _E_Action
{
   E_Object e_obj_inherit;

   const char *name;
   struct 
     {
	void (*go)        (E_Object *obj, const char *params);
	void (*go_mouse)  (E_Object *obj, const char *params, Ecore_Event_Mouse_Button *ev);
	void (*go_wheel)  (E_Object *obj, const char *params, Ecore_Event_Mouse_Wheel *ev);
	void (*go_edge)   (E_Object *obj, const char *params, E_Event_Zone_Edge *ev);
	void (*go_key)    (E_Object *obj, const char *params, Ecore_Event_Key *ev);
	void (*go_signal) (E_Object *obj, const char *params, const char *sig, const char *src);
	void (*go_acpi)   (E_Object *obj, const char *params, E_Event_Acpi *ev);
	void (*end)       (E_Object *obj, const char *params);
	void (*end_mouse) (E_Object *obj, const char *params, Ecore_Event_Mouse_Button *ev);
	void (*end_key)   (E_Object *obj, const char *params, Ecore_Event_Key *ev);
     } func;
};

struct _E_Action_Description
{
   const char *act_name;
   const char *act_cmd;
   const char *act_params;
   const char *param_example;
   int editable;
};

struct _E_Action_Group
{
   const char *act_grp;
   Eina_List *acts;
};

EINTERN int         e_actions_init(void);
EINTERN int         e_actions_shutdown(void);

EAPI Eina_List  *e_action_name_list(void);
EAPI E_Action   *e_action_add(const char *name);
/* e_action_del allows, for example, modules to define their own actions dynamically. */
EAPI void	e_action_del(const char *name);
EAPI E_Action   *e_action_find(const char *name);

EAPI const char *e_action_predef_label_get(const char *action, const char *params);
EAPI void       e_action_predef_name_set(const char *act_grp, const char *act_name, const char *act_cmd, const char *act_params, const char *param_example, int editable);
EAPI void       e_action_predef_name_del(const char *act_grp, const char *act_name);
EAPI void       e_action_predef_name_all_del(void);
EAPI Eina_List  *e_action_groups_get(void);

#endif
#endif