metaforce/Editor/InformationCenter.hpp

74 lines
1.6 KiB
C++
Raw Normal View History

2016-02-02 08:31:05 +00:00
#ifndef INFORMATIONCENTER_HPP
#define INFORMATIONCENTER_HPP
#include "Space.hpp"
#include "ViewManager.hpp"
namespace URDE
{
class InformationCenter : public ViewerSpace
{
struct State : Space::State
{
DECL_YAML
Value<bool> showLog;
} m_state;
const Space::State& spaceState() const { return m_state; }
struct View : Specter::View
{
InformationCenter& m_ic;
std::vector<HECL::SystemString> m_log;
View(InformationCenter& ic, Specter::ViewResources& res)
: Specter::View(res, ic.m_vm.rootView()), m_ic(ic)
{
commitResources(res);
}
};
std::unique_ptr<View> m_view;
public:
InformationCenter(ViewManager& vm, Space* parent)
: ViewerSpace(vm, Class::InformationCenter, parent)
{
reloadState();
}
InformationCenter(ViewManager& vm, Space* parent, const InformationCenter& other)
: InformationCenter(vm, parent)
{
m_state = other.m_state;
reloadState();
}
InformationCenter(ViewManager& vm, Space* parent, ConfigReader& r)
: InformationCenter(vm, parent)
{
m_state.read(r);
reloadState();
}
void reloadState()
{
}
virtual Specter::View* buildContentView(Specter::ViewResources& res)
{
m_view.reset(new View(*this, res));
return m_view.get();
}
Space* copy(Space *parent) const
{
return new InformationCenter(m_vm, parent, *this);
}
bool usesToolbar() const { return true; }
};
}
#endif // INFORMATIONCENTER_HPP