Change-Id: I595e7cc1c33f8f0a6a5055caa58360e03b3038ca
}
}
+bool DSZone::setWindowParent(DSWaylandSurface *dswlSurface, DSWaylandSurface *dswlParentSurface)
+{
+ DSWindowShell *wShell = __findWindowShell(dswlSurface);
+ if (!wShell) return false;
+
+ DSWindowShell *pwShell = __findWindowShell(dswlParentSurface);
+
+ return wShell->setParent(pwShell);
+}
+
bool DSZone::setWindowTitle(DSWaylandSurface *dswSurface, const std::string &title)
{
DSWindowShell *wShell = __findWindowShell(dswSurface);
bool testCreateWindow(std::shared_ptr<DSWaylandSurface> waylandSurface);
// for window property
+ bool setWindowParent(DSWaylandSurface *dswlSurface, DSWaylandSurface *dswlParentSurface);
bool setWindowTitle(DSWaylandSurface *dswSurface, const std::string &title);
bool setWindowType(DSWaylandSurface *dswSurface, int type);
bool setWindowGeometry(DSWaylandSurface *dswSurface, int x, int y, unsigned int w, unsigned h);