This commit is contained in:
MihailRis
2024-04-23 18:43:02 +03:00
parent 67f34ceb8c
commit 051f0b8c6a
35 changed files with 61 additions and 62 deletions
+60
View File
@@ -0,0 +1,60 @@
#ifndef FRONTEND_GUI_GUI_XML_HPP_
#define FRONTEND_GUI_GUI_XML_HPP_
#include <memory>
#include <stack>
#include <unordered_set>
#include <unordered_map>
#include "GUI.hpp"
#include "../../coders/xml.h"
namespace gui {
class UiXmlReader;
using uinode_reader = std::function<std::shared_ptr<UINode>(UiXmlReader&, xml::xmlelement)>;
class UiXmlReader {
std::unordered_map<std::string, uinode_reader> readers;
std::unordered_set<std::string> ignored;
std::stack<std::string> contextStack;
std::string filename;
const scriptenv& env;
public:
UiXmlReader(const scriptenv& env);
void add(const std::string& tag, uinode_reader reader);
bool hasReader(const std::string& tag) const;
void addIgnore(const std::string& tag);
std::shared_ptr<UINode> readUINode(xml::xmlelement element);
void readUINode(
UiXmlReader& reader,
xml::xmlelement element,
UINode& node
);
void readUINode(
UiXmlReader& reader,
xml::xmlelement element,
Container& container
);
std::shared_ptr<UINode> readXML(
const std::string& filename,
const std::string& source
);
std::shared_ptr<UINode> readXML(
const std::string& filename,
xml::xmlelement root
);
const std::string& getContext() const;
const scriptenv& getEnvironment() const;
const std::string& getFilename() const;
};
}
#endif // FRONTEND_GUI_GUI_XML_HPP_