2024-02-25 15:46:47 +01:00
|
|
|
#pragma once
|
2023-06-20 14:33:09 +10:00
|
|
|
|
|
|
|
#include "StarWidgetParsing.hpp"
|
|
|
|
|
|
|
|
namespace Star {
|
|
|
|
|
|
|
|
STAR_EXCEPTION(GUIBuilderException, StarException);
|
2023-07-04 22:36:27 +10:00
|
|
|
STAR_CLASS(GuiReader);
|
2023-06-20 14:33:09 +10: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);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|