- _E_Pointer
Change-Id: Ic98fb6b94f0ecc842d86ba2290eb81f215473f0f
#define E_POINTER_TYPE 0xE0b01013
+struct _E_Pointer
+{
+ E_Object e_obj_inherit;
+
+ E_View_Client *view_client;
+ struct wl_listener destroy_listener;
+
+ int x, y, w, h;
+ int rotation;
+
+ struct
+ {
+ int x, y;
+ Eina_Bool update : 1;
+ } hot;
+
+ E_Pointer_Device device;
+ char *name;
+
+ Eina_Bool e_cursor : 1;
+ Eina_Bool canvas : 1;
+};
+
EINTERN int e_pointer_init(void);
EINTERN int e_pointer_shutdown(void);
E_POINTER_HOOK_LAST,
} E_Pointer_Hook_Point;
-struct _E_Pointer
-{
- E_Object e_obj_inherit;
-
- E_View_Client *view_client;
- struct wl_listener destroy_listener;
-
- int x, y, w, h;
- int rotation;
-
- struct
- {
- int x, y;
- Eina_Bool update : 1;
- } hot;
-
- E_Pointer_Device device;
- char *name;
-
- Eina_Bool e_cursor : 1;
- Eina_Bool canvas : 1;
-};
-
struct _E_Pointer_Hook
{
EINA_INLIST;