ecore-wl2: Add API to get if window manager rotation is supported
authorChris Michael <cp.michael@samsung.com>
Fri, 9 Jun 2017 13:13:36 +0000 (09:13 -0400)
committerChris Michael <cp.michael@samsung.com>
Fri, 9 Jun 2017 16:29:25 +0000 (12:29 -0400)
This patch adds an API function which can be called to determine if
window manager rotation is supported.

@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 6548a0c..bd832b3 100644 (file)
@@ -984,6 +984,18 @@ EAPI void ecore_wl2_window_buffer_transform_set(Ecore_Wl2_Window *window, int tr
 EAPI void ecore_wl2_window_wm_rotation_supported_set(Ecore_Wl2_Window *window, Eina_Bool enabled);
 
 /**
+ * Get if window rotation is supported by the window manager
+ *
+ * @param window
+ *
+ * @return EINA_TRUE if supported, EINA_FALSE otherwise
+ *
+ * @ingroup Ecore_Wl2_Window_Group
+ * @since 1.20
+ */
+EAPI Eina_Bool ecore_wl2_window_wm_rotation_supported_get(Ecore_Wl2_Window *window);
+
+/**
  * @defgroup Ecore_Wl2_Input_Group Wayland Library Input Functions
  * @ingroup Ecore_Wl2_Group
  *
index 26cdd7f..ef5da9d 100644 (file)
@@ -1220,3 +1220,10 @@ ecore_wl2_window_wm_rotation_supported_set(Ecore_Wl2_Window *window, Eina_Bool e
    EINA_SAFETY_ON_NULL_RETURN(window);
    window->wm_rot.supported = enabled;
 }
+
+EAPI Eina_Bool
+ecore_wl2_window_wm_rotation_supported_get(Ecore_Wl2_Window *window)
+{
+   EINA_SAFETY_ON_NULL_RETURN_VAL(window, EINA_FALSE);
+   return window->wm_rot.supported;
+}