From: Christopher Michael Date: Thu, 16 Aug 2012 09:35:41 +0000 (+0000) Subject: Ecore_Wayland: Add alpha field to window structure, add cursor_name to X-Git-Tag: submit/devel/efl/20131022.203902~4618 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cde4673abe6e6f0fcfc11edea242e203c175d5d2;p=platform%2Fupstream%2Fefl.git 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 --- diff --git a/legacy/ecore/src/lib/ecore_wayland/Ecore_Wayland.h b/legacy/ecore/src/lib/ecore_wayland/Ecore_Wayland.h index 8d25c06..025357c 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;