ecore-wl2: Add API to return a windows preferred rotation
authorChris Michael <cp.michael@samsung.com>
Fri, 9 Jun 2017 13:51:19 +0000 (09:51 -0400)
committerChris Michael <cp.michael@samsung.com>
Fri, 9 Jun 2017 16:30:41 +0000 (12:30 -0400)
@feature

Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/lib/ecore_wl2/Ecore_Wl2.h
src/lib/ecore_wl2/ecore_wl2_window.c

index aa03746..1185780 100644 (file)
@@ -1030,6 +1030,18 @@ EAPI Eina_Bool ecore_wl2_window_rotation_app_get(Ecore_Wl2_Window *window);
 EAPI void ecore_wl2_window_preferred_rotation_set(Ecore_Wl2_Window *window, int rot);
 
 /**
+ * Get preferred rotation for a given window
+ *
+ * @param window
+ *
+ * @return Given windows preferred rotation
+ *
+ * @ingroup Ecore_Wl2_Window
+ * @since 1.20
+ */
+EAPI int ecore_wl2_window_preferred_rotation_get(Ecore_Wl2_Window *window);
+
+/**
  * @defgroup Ecore_Wl2_Input_Group Wayland Library Input Functions
  * @ingroup Ecore_Wl2_Group
  *
index 951b8f7..4d5733a 100644 (file)
@@ -1248,3 +1248,10 @@ ecore_wl2_window_preferred_rotation_set(Ecore_Wl2_Window *window, int rot)
    EINA_SAFETY_ON_NULL_RETURN(window);
    window->wm_rot.preferred_rot = rot;
 }
+
+EAPI int
+ecore_wl2_window_preferred_rotation_get(Ecore_Wl2_Window *window)
+{
+   EINA_SAFETY_ON_NULL_RETURN_VAL(window, 0);
+   return window->wm_rot.preferred_rot;
+}