From 60d68c06a933dec2555a21f2a666a769e3e4de3f Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 5 May 2014 02:45:13 +1000 Subject: Merge the window handle creation code, and add proper hiding for them. --- src/extantz/winFang.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/extantz/winFang.h') diff --git a/src/extantz/winFang.h b/src/extantz/winFang.h index 738a616..cc61847 100644 --- a/src/extantz/winFang.h +++ b/src/extantz/winFang.h @@ -8,6 +8,10 @@ typedef struct _winFang { Evas_Object *win; Eina_Clist widgets; + int x, y, w, h; + + Evas_Object *hand[4]; + Eina_Clist node; void *data; Evas_Smart_Cb on_del; @@ -31,5 +35,8 @@ typedef struct _Widget winFang *winFangAdd(globals *ourGlobals); void winFangComplete(globals *ourGlobals, winFang *win, int x, int y, int w, int h); +void winFangHide(winFang *win); +void winFangShow(winFang *win); void winFangDel(globals *ourGlobals, winFang *win); + Widget *widgetAdd(winFang *win, const Eo_Class *klass, Evas_Object *parent, char *title); -- cgit v1.1