Ecore_Wayland: Add alpha field to window structure, add cursor_name to
authorChristopher Michael <cpmichael1@comcast.net>
Thu, 16 Aug 2012 09:35:41 +0000 (09:35 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Thu, 16 Aug 2012 09:35:41 +0000 (09:35 +0000)
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

index 8d25c06..025357c 100644 (file)
@@ -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;