e_client: add a E_EVENT_CLIENT_ROTATION_GEOMETRY_SET event type 75/215875/1
authorDoyoun Kang <doyoun.kang@samsung.com>
Thu, 17 Oct 2019 05:27:53 +0000 (14:27 +0900)
committerDoyoun Kang <doyoun.kang@samsung.com>
Thu, 17 Oct 2019 05:27:53 +0000 (14:27 +0900)
Change-Id: I517850466d5ee48bf74cd105a3566788ce0496df

src/bin/e_client.c
src/bin/e_client.h

index 71476f138a574c24cd5a70ce45d4d04ef81bdcd4..1cf3d3d6ef6f597021a4e65f17f719b4771a3acc 100644 (file)
@@ -26,6 +26,7 @@ E_API int E_EVENT_CLIENT_UNFULLSCREEN = -1;
 E_API int E_EVENT_CLIENT_ROTATION_CHANGE_BEGIN = -1;
 E_API int E_EVENT_CLIENT_ROTATION_CHANGE_CANCEL = -1;
 E_API int E_EVENT_CLIENT_ROTATION_CHANGE_END = -1;
+E_API int E_EVENT_CLIENT_ROTATION_GEOMETRY_SET = -1;
 #endif
 E_API int E_EVENT_CLIENT_VISIBILITY_CHANGE = -1;
 E_API int E_EVENT_CLIENT_BUFFER_CHANGE = -1;
@@ -4081,6 +4082,7 @@ e_client_init(void)
    E_EVENT_CLIENT_ROTATION_CHANGE_BEGIN = ecore_event_type_new();
    E_EVENT_CLIENT_ROTATION_CHANGE_CANCEL = ecore_event_type_new();
    E_EVENT_CLIENT_ROTATION_CHANGE_END = ecore_event_type_new();
+   E_EVENT_CLIENT_ROTATION_GEOMETRY_SET = ecore_event_type_new();
 #endif
    E_EVENT_CLIENT_VISIBILITY_CHANGE = ecore_event_type_new();
    E_EVENT_CLIENT_BUFFER_CHANGE = ecore_event_type_new();
index 5e8964c1ce915208c46921afca009436cc206b64..8d7e1b7fb5ce687970e43156eaaf1589db687807 100644 (file)
@@ -215,6 +215,7 @@ typedef struct _E_Client_Intercept_Hook E_Client_Intercept_Hook;
 typedef struct E_Event_Client E_Event_Client_Rotation_Change_Begin;
 typedef struct E_Event_Client E_Event_Client_Rotation_Change_Cancel;
 typedef struct E_Event_Client E_Event_Client_Rotation_Change_End;
+typedef struct E_Event_Client E_Event_Client_Rotation_Geometry_Set;
 #endif
 
 typedef enum _E_Client_Hook_Point
@@ -1032,6 +1033,7 @@ E_API extern int E_EVENT_CLIENT_UNFULLSCREEN;
 E_API extern int E_EVENT_CLIENT_ROTATION_CHANGE_BEGIN;
 E_API extern int E_EVENT_CLIENT_ROTATION_CHANGE_CANCEL;
 E_API extern int E_EVENT_CLIENT_ROTATION_CHANGE_END;
+E_API extern int E_EVENT_CLIENT_ROTATION_GEOMETRY_SET;
 #endif
 E_API extern int E_EVENT_CLIENT_VISIBILITY_CHANGE;
 E_API extern int E_EVENT_CLIENT_BUFFER_CHANGE;