14 lines
313 B
C++
14 lines
313 B
C++
#include "DoricRootNode.h"
|
|
|
|
void DoricRootNode::setRootView(QQuickItem *rootView) {
|
|
this->mView = rootView;
|
|
this->createLayouts(rootView);
|
|
|
|
this->getLayouts()->setLayoutType(DoricLayoutType::DoricStack);
|
|
}
|
|
|
|
void DoricRootNode::requestLayout() {
|
|
getLayouts()->apply();
|
|
DoricStackNode::requestLayout();
|
|
}
|