2021-02-04 16:59:58 +08:00
|
|
|
#include "DoricRegistry.h"
|
|
|
|
|
2021-04-20 11:46:56 +08:00
|
|
|
#include "plugin/DoricModalPlugin.h"
|
2021-02-04 16:59:58 +08:00
|
|
|
#include "plugin/DoricShaderPlugin.h"
|
2021-04-20 11:46:56 +08:00
|
|
|
|
2021-02-25 19:04:14 +08:00
|
|
|
#include "shader/DoricHLayoutNode.h"
|
2021-02-22 16:42:19 +08:00
|
|
|
#include "shader/DoricRootNode.h"
|
2021-04-08 19:50:39 +08:00
|
|
|
#include "shader/DoricScrollerNode.h"
|
2021-02-22 16:42:19 +08:00
|
|
|
#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");
|
2021-04-20 11:46:56 +08:00
|
|
|
registerNativePlugin<DoricModalPlugin>("modal");
|
2021-02-22 16:42:19 +08:00
|
|
|
|
|
|
|
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
|
|
|
}
|
2021-02-22 16:42:19 +08:00
|
|
|
|
|
|
|
bool DoricRegistry::acquireNodeInfo(QString name) {
|
|
|
|
return nodes.acquireClass(name);
|
|
|
|
}
|