This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/doric/DoricRegistry.cpp

32 lines
924 B
C++
Raw Normal View History

2021-02-04 16:59:58 +08:00
#include "DoricRegistry.h"
#include "plugin/DoricModalPlugin.h"
2021-02-04 16:59:58 +08:00
#include "plugin/DoricShaderPlugin.h"
2021-02-25 19:04:14 +08:00
#include "shader/DoricHLayoutNode.h"
#include "shader/DoricRootNode.h"
2021-04-08 19:50:39 +08:00
#include "shader/DoricScrollerNode.h"
#include "shader/DoricStackNode.h"
2021-02-25 19:04:14 +08:00
#include "shader/DoricTextNode.h"
2021-02-23 14:28:08 +08:00
#include "shader/DoricVLayoutNode.h"
2021-02-04 16:59:58 +08:00
DoricRegistry::DoricRegistry() {
registerNativePlugin<DoricShaderPlugin>("shader");
registerNativePlugin<DoricModalPlugin>("modal");
registerViewNode<DoricRootNode>("Root");
registerViewNode<DoricStackNode>("Stack");
2021-02-23 14:28:08 +08:00
registerViewNode<DoricVLayoutNode>("VLayout");
2021-02-25 18:06:08 +08:00
registerViewNode<DoricHLayoutNode>("HLayout");
2021-02-25 19:04:14 +08:00
registerViewNode<DoricTextNode>("Text");
2021-04-08 19:50:39 +08:00
registerViewNode<DoricScrollerNode>("Scroller");
2021-02-04 16:59:58 +08:00
}
bool DoricRegistry::acquirePluginInfo(QString name) {
2021-02-20 16:20:18 +08:00
return plugins.acquireClass(name);
2021-02-04 16:59:58 +08:00
}
bool DoricRegistry::acquireNodeInfo(QString name) {
return nodes.acquireClass(name);
}