Add geometry to surface.

Add ecore_evas and evas to surface.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-05-03 14:37:02 +01:00
parent ed277e2070
commit 4253fe41cb
1 changed files with 10 additions and 0 deletions

View File

@ -14,8 +14,18 @@ struct _E_Surface
struct wl_list link;
} wl;
struct
{
Evas_Coord x, y;
Evas_Coord w, h;
Eina_Bool changed : 1;
} geometry;
E_Shell_Surface *shell_surface;
Evas *evas;
Ecore_Evas *ee;
Eina_Bool mapped : 1;
void (*map)(E_Surface *surface, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h);