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++

#include "DoricRegistry.h"
#include "plugin/DoricModalPlugin.h"
#include "plugin/DoricShaderPlugin.h"
#include "shader/DoricHLayoutNode.h"
#include "shader/DoricRootNode.h"
#include "shader/DoricScrollerNode.h"
#include "shader/DoricStackNode.h"
#include "shader/DoricTextNode.h"
#include "shader/DoricVLayoutNode.h"
DoricRegistry::DoricRegistry() {
registerNativePlugin<DoricShaderPlugin>("shader");
registerNativePlugin<DoricModalPlugin>("modal");
registerViewNode<DoricRootNode>("Root");
registerViewNode<DoricStackNode>("Stack");
registerViewNode<DoricVLayoutNode>("VLayout");
registerViewNode<DoricHLayoutNode>("HLayout");
registerViewNode<DoricTextNode>("Text");
registerViewNode<DoricScrollerNode>("Scroller");
}
bool DoricRegistry::acquirePluginInfo(QString name) {
return plugins.acquireClass(name);
}
bool DoricRegistry::acquireNodeInfo(QString name) {
return nodes.acquireClass(name);
}