name = NULL;
}
}
+
+void etWin::move(int x, int y)
+{
+ this->x = x;
+ this->y = y;
+ elm_win_aux_hint_add(elm_win, "wm.policy.win.user.geometry", "1");
+ evas_object_move(elm_win, x, y);
+}
+
+void etWin::resize(int w, int h)
+{
+ this->w = w;
+ this->h = h;
+ elm_win_aux_hint_add(elm_win, "wm.policy.win.user.geometry", "1");
+ evas_object_resize(elm_win, w, h);
+}
EINA_SAFETY_ON_NULL_RETURN(elm_win);
evas_object_hide(elm_win);
}
+ void move(int x, int y);
+ void resize(int w, int h);
/* getter&setter */
Evas_Object *getElmWin() { return elm_win; }