2024-02-25 14:46:47 +00:00
|
|
|
#pragma once
|
2023-06-20 04:33:09 +00:00
|
|
|
|
|
|
|
#include "StarWidgetParsing.hpp"
|
|
|
|
|
|
|
|
namespace Star {
|
|
|
|
|
|
|
|
STAR_EXCEPTION(GUIBuilderException, StarException);
|
2023-07-04 12:36:27 +00:00
|
|
|
STAR_CLASS(GuiReader);
|
2023-06-20 04:33:09 +00:00
|
|
|
|
|
|
|
class GuiReader : public WidgetParser {
|
|
|
|
public:
|
|
|
|
GuiReader();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
WidgetConstructResult titleHandler(String const& _unused, Json const& config);
|
|
|
|
WidgetConstructResult paneFeatureHandler(String const& _unused, Json const& config);
|
|
|
|
WidgetConstructResult backgroundHandler(String const& _unused, Json const& config);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|