/* * InterfaceBuilder.h, part of VCMI engine * * Authors: listed in file AUTHORS in main folder * * License: GNU General Public License v2.0 or later * Full text of license available in license.txt file, in main folder * */ #pragma once #include "CIntObject.h" #include "../../lib/JsonNode.h" class InterfaceBuilder: public CIntObject { public: InterfaceBuilder(); InterfaceBuilder(const JsonNode & config); protected: //must be called after adding callbacks void init(const JsonNode & config); void addCallback(const std::string & callbackName, std::function callback); const std::shared_ptr widget(const std::string &) const; private: std::map> widgets; std::map> callbacks; std::shared_ptr buildWidget(const JsonNode & config); std::string buildText(const JsonNode & param) const; };