Fix new shm engine to take resize edges into account.

Signed-off-by: Christopher Michael <cp.michael@samsung.com>
This commit is contained in:
Christopher Michael 2013-02-05 14:14:17 +00:00 committed by Rafael Antognolli
parent c95160baae
commit b717e948af
1 changed files with 28 additions and 1 deletions

View File

@ -297,7 +297,34 @@ _ecore_evas_wl_resize(Ecore_Evas *ee, int w, int h)
evas_object_resize(wdata->frame, w, h);
if (wdata->win)
ecore_wl_window_update_size(wdata->win, w, h);
{
Ecore_Wl_Window *win;
Evas_Coord x = 0, y = 0;
Evas_Engine_Info_Wayland_Shm *einfo;
win = wdata->win;
if (win->surface)
{
if (win->edges & 4)
x = win->server_allocation.w - win->allocation.w;
if (win->edges & 1)
y = win->server_allocation.h - win->allocation.h;
}
win->edges = 0;
if ((einfo = (Evas_Engine_Info_Wayland_Shm *)evas_engine_info_get(ee->evas)))
{
printf("Setting Resize Edges: %d %d\n", x, y);
einfo->info.edges.x = x;
einfo->info.edges.y = y;
if (!evas_engine_info_set(ee->evas, (Evas_Engine_Info *)einfo))
ERR("evas_engine_info_set() for engine '%s' failed.", ee->driver);
}
win->server_allocation = win->allocation;
ecore_wl_window_update_size(wdata->win, w, h);
}
if (ee->func.fn_resize) ee->func.fn_resize(ee);
}