Ecore_Evas (wayland): Implement Fullscreen Set for Shm and Egl.

SVN revision: 67179
This commit is contained in:
Christopher Michael 2012-01-13 06:46:35 +00:00
parent 5623ed37ce
commit 21975a748f
2 changed files with 24 additions and 2 deletions

View File

@ -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)
{

View File

@ -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)
{