metaforce/Editor/InformationCenter.hpp

51 lines
1.3 KiB
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2016-02-02 00:31:05 -08:00
#include "Space.hpp"
#include "ViewManager.hpp"
2021-04-10 01:42:06 -07:00
namespace metaforce {
2018-12-07 21:30:43 -08:00
class InformationCenter : public ViewerSpace {
struct State : Space::State {
2019-08-10 17:49:41 -07:00
AT_DECL_DNA_YAMLV
2018-12-07 21:30:43 -08:00
Value<bool> showLog;
} m_state;
2016-02-02 00:31:05 -08:00
const Space::State& spaceState() const override { return m_state; }
2016-02-02 00:31:05 -08:00
2018-12-07 21:30:43 -08:00
struct View : specter::View {
InformationCenter& m_ic;
std::vector<hecl::SystemString> m_log;
2016-02-02 00:31:05 -08:00
2018-12-07 21:30:43 -08:00
View(InformationCenter& ic, specter::ViewResources& res) : specter::View(res, ic.m_vm.rootView()), m_ic(ic) {}
};
2016-02-02 00:31:05 -08:00
2018-12-07 21:30:43 -08:00
std::unique_ptr<View> m_view;
2016-02-02 00:31:05 -08:00
public:
2018-12-07 21:30:43 -08:00
InformationCenter(ViewManager& vm, Space* parent) : ViewerSpace(vm, Class::InformationCenter, parent) {
reloadState();
}
2016-02-02 00:31:05 -08:00
2018-12-07 21:30:43 -08:00
InformationCenter(ViewManager& vm, Space* parent, const InformationCenter& other) : InformationCenter(vm, parent) {
m_state = other.m_state;
reloadState();
}
2016-02-02 00:31:05 -08:00
2018-12-07 21:30:43 -08:00
InformationCenter(ViewManager& vm, Space* parent, ConfigReader& r) : InformationCenter(vm, parent) {
m_state.read(r);
reloadState();
}
2016-02-02 00:31:05 -08:00
void reloadState() override {}
2016-02-02 00:31:05 -08:00
specter::View* buildContentView(specter::ViewResources& res) override {
2018-12-07 21:30:43 -08:00
m_view.reset(new View(*this, res));
return m_view.get();
}
2016-02-02 00:31:05 -08:00
Space* copy(Space* parent) const override { return new InformationCenter(m_vm, parent, *this); }
2016-02-02 00:31:05 -08:00
bool usesToolbar() const override { return true; }
2016-02-02 00:31:05 -08:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce