devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=2b41f198db48bcb38b9ca0f314747d25ef80924c

commit 2b41f198db48bcb38b9ca0f314747d25ef80924c
Author: Chris Michael <cp.mich...@samsung.com>
Date:   Wed Sep 9 11:18:38 2015 -0400

    ecore-wl2: Add bool fields to window structure to store state
    
    Signed-off-by: Chris Michael <cp.mich...@samsung.com>
---
 src/lib/ecore_wl2/ecore_wl2_private.h | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/src/lib/ecore_wl2/ecore_wl2_private.h 
b/src/lib/ecore_wl2/ecore_wl2_private.h
index 7df7ff7..6080ae1 100644
--- a/src/lib/ecore_wl2/ecore_wl2_private.h
+++ b/src/lib/ecore_wl2/ecore_wl2_private.h
@@ -59,6 +59,8 @@ struct _Ecore_Wl2_Display
    Ecore_Fd_Handler *fd_hdl;
 
    Eina_Hash *globals;
+
+   Eina_Bool sync_done : 1;
 };
 
 struct _Ecore_Wl2_Window
@@ -72,13 +74,19 @@ struct _Ecore_Wl2_Window
    const char *class;
 
    struct wl_surface *surface;
-   struct wl_shell_surface *shell_surface;
+   struct wl_shell_surface *wl_shell_surface;
    struct xdg_surface *xdg_surface;
    struct xdg_popup *xdg_popup;
 
    Eina_Rectangle geometry;
 
    Ecore_Wl2_Window_Type type;
+
+   Eina_Bool minimized : 1;
+   Eina_Bool maximized : 1;
+   Eina_Bool fullscreen : 1;
+   Eina_Bool focused : 1;
+   Eina_Bool resizing : 1;
 };
 
 #endif

-- 


Reply via email to