Files
panopainter/src/node_changelog.cpp

26 lines
551 B
C++

#include "pch.h"
#include "log.h"
#include "node_changelog.h"
#include "layout.h"
Node* NodeChangelog::clone_instantiate() const
{
return new NodeChangelog();
}
void NodeChangelog::init()
{
SetPosition(0, 0);
SetWidthP(100);
SetHeightP(100);
SetPositioning(YGPositionTypeAbsolute);
add_child_file("data/dialogs/changelog.xml", "changelog");
btn_ok = find<NodeButton>("btn-ok");
btn_ok->on_click = [&](Node*) { destroy(); };
}
kEventResult NodeChangelog::handle_event(Event* e)
{
return kEventResult::Consumed;
}