From cde4673abe6e6f0fcfc11edea242e203c175d5d2 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Thu, 16 Aug 2012 09:35:41 +0000 Subject: [PATCH] Ecore_Wayland: Add alpha field to window structure, add cursor_name to input structure. These are required for fixes to _set_alpha/transparent, and upcoming cursor fixes. SVN revision: 75311 --- legacy/ecore/src/lib/ecore_wayland/Ecore_Wayland.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/legacy/ecore/src/lib/ecore_wayland/Ecore_Wayland.h b/legacy/ecore/src/lib/ecore_wayland/Ecore_Wayland.h index 8d25c06ab0..025357cfea 100644 --- a/legacy/ecore/src/lib/ecore_wayland/Ecore_Wayland.h +++ b/legacy/ecore/src/lib/ecore_wayland/Ecore_Wayland.h @@ -121,6 +121,7 @@ struct _Ecore_Wl_Input struct wl_keyboard *keyboard; struct wl_touch *touch; + const char *cursor_name; struct wl_surface *cursor_surface; struct wl_callback *cursor_frame_cb; @@ -182,6 +183,7 @@ struct _Ecore_Wl_Window /* Eina_Bool redraw_scheduled : 1; */ /* Eina_Bool resize_scheduled : 1; */ + Eina_Bool alpha : 1; Eina_Bool transparent : 1; Eina_Bool moving : 1; Eina_Bool resizing : 1;