From 8a93603cee02e71a6eef066a8ac0c182a3aaafa5 Mon Sep 17 00:00:00 2001 From: devilhorns Date: Fri, 13 Jan 2012 06:46:35 +0000 Subject: [PATCH] Ecore_Evas (wayland): Implement Fullscreen Set for Shm and Egl. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@67179 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/ecore_evas/ecore_evas_wayland_egl.c | 13 ++++++++++++- src/lib/ecore_evas/ecore_evas_wayland_shm.c | 13 ++++++++++++- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/src/lib/ecore_evas/ecore_evas_wayland_egl.c b/src/lib/ecore_evas/ecore_evas_wayland_egl.c index 783a597..b8fec09 100644 --- a/src/lib/ecore_evas/ecore_evas_wayland_egl.c +++ b/src/lib/ecore_evas/ecore_evas_wayland_egl.c @@ -70,6 +70,7 @@ static void _ecore_evas_wl_layer_set(Ecore_Evas *ee, int layer); static void _ecore_evas_wl_focus_set(Ecore_Evas *ee, int focus __UNUSED__); static void _ecore_evas_wl_iconified_set(Ecore_Evas *ee, int iconify); static void _ecore_evas_wl_maximized_set(Ecore_Evas *ee, int max); +static void _ecore_evas_wl_fullscreen_set(Ecore_Evas *ee, int full __UNUSED__); static int _ecore_evas_wl_render(Ecore_Evas *ee); static void _ecore_evas_wl_screen_geometry_get(const Ecore_Evas *ee __UNUSED__, int *x, int *y, int *w, int *h); @@ -148,7 +149,7 @@ static Ecore_Evas_Engine_Func _ecore_wl_engine_func = NULL, // func borderless set NULL, // func override set _ecore_evas_wl_maximized_set, - NULL, // func fullscreen set + _ecore_evas_wl_fullscreen_set, NULL, // _ecore_evas_wl_avoid_damage_set, NULL, // func withdrawn set NULL, // func sticky set @@ -753,6 +754,16 @@ _ecore_evas_wl_maximized_set(Ecore_Evas *ee, int max) /* FIXME: Implement this in Wayland someshow */ } +static void +_ecore_evas_wl_fullscreen_set(Ecore_Evas *ee, int full __UNUSED__) +{ + LOGFN(__FILE__, __LINE__, __FUNCTION__); + + if ((!ee) || (!ee->visible)) return; + if (!ee->engine.wl.shell_surface) return; + wl_shell_surface_set_fullscreen(ee->engine.wl.shell_surface); +} + static int _ecore_evas_wl_render(Ecore_Evas *ee) { diff --git a/src/lib/ecore_evas/ecore_evas_wayland_shm.c b/src/lib/ecore_evas/ecore_evas_wayland_shm.c index b9c2e82..97adc8c 100644 --- a/src/lib/ecore_evas/ecore_evas_wayland_shm.c +++ b/src/lib/ecore_evas/ecore_evas_wayland_shm.c @@ -70,6 +70,7 @@ static void _ecore_evas_wl_layer_set(Ecore_Evas *ee, int layer); static void _ecore_evas_wl_focus_set(Ecore_Evas *ee, int focus __UNUSED__); static void _ecore_evas_wl_iconified_set(Ecore_Evas *ee, int iconify); static void _ecore_evas_wl_maximized_set(Ecore_Evas *ee, int max); +static void _ecore_evas_wl_fullscreen_set(Ecore_Evas *ee, int full __UNUSED__); static int _ecore_evas_wl_render(Ecore_Evas *ee); static void _ecore_evas_wl_screen_geometry_get(const Ecore_Evas *ee __UNUSED__, int *x, int *y, int *w, int *h); static void _ecore_evas_wl_buffer_new(Ecore_Evas *ee, void **dest); @@ -149,7 +150,7 @@ static Ecore_Evas_Engine_Func _ecore_wl_engine_func = NULL, // func borderless set NULL, // func override set _ecore_evas_wl_maximized_set, - NULL, // func fullscreen set + _ecore_evas_wl_fullscreen_set, NULL, // func avoid_damage set NULL, // func withdrawn set NULL, // func sticky set @@ -828,6 +829,16 @@ _ecore_evas_wl_maximized_set(Ecore_Evas *ee, int max) /* FIXME: Implement this in Wayland someshow */ } +static void +_ecore_evas_wl_fullscreen_set(Ecore_Evas *ee, int full __UNUSED__) +{ + LOGFN(__FILE__, __LINE__, __FUNCTION__); + + if ((!ee) || (!ee->visible)) return; + if (!ee->engine.wl.shell_surface) return; + wl_shell_surface_set_fullscreen(ee->engine.wl.shell_surface); +} + static int _ecore_evas_wl_render(Ecore_Evas *ee) { -- 2.7.4