ecore-wl2: Add more window types to Window Type enum
authorChris Michael <cp.michael@samsung.com>
Tue, 27 Jun 2017 15:14:26 +0000 (11:14 -0400)
committerChris Michael <cp.michael@samsung.com>
Tue, 27 Jun 2017 15:14:26 +0000 (11:14 -0400)
Small patch which adds more window types to the Window Type enum.
These window types may be used by various compositors in different
ways. This patch does not add or change any functionality, it just
extends the window type enum to include the ability to specify other
types of windows.

'#divergence'

@feature

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

index c191ec5..7b4857f 100644 (file)
@@ -323,6 +323,11 @@ typedef enum _Ecore_Wl2_Window_Type
    ECORE_WL2_WINDOW_TYPE_MENU,
    ECORE_WL2_WINDOW_TYPE_DND,
    ECORE_WL2_WINDOW_TYPE_CUSTOM,
+   ECORE_WL2_WINDOW_TYPE_NOTIFICATION, /** @since 1.20 */
+   ECORE_WL2_WINDOW_TYPE_UTILITY, /** @since 1.20 */
+   ECORE_WL2_WINDOW_TYPE_DIALOG, /** @since 1.20 */
+   ECORE_WL2_WINDOW_TYPE_DOCK, /** @since 1.20 */
+   ECORE_WL2_WINDOW_TYPE_SPLASH, /** @since 1.20 */
    ECORE_WL2_WINDOW_TYPE_LAST
 } Ecore_Wl2_Window_Type;