27 lines
583 B
C++
27 lines
583 B
C++
#include "pch.h"
|
|
#include "log.h"
|
|
#include "legacy_ui_overlay_services.h"
|
|
#include "node_about.h"
|
|
#include "layout.h"
|
|
|
|
Node* NodeAbout::clone_instantiate() const
|
|
{
|
|
return new NodeAbout();
|
|
}
|
|
|
|
void NodeAbout::init()
|
|
{
|
|
SetPosition(0, 0);
|
|
SetWidthP(100);
|
|
SetHeightP(100);
|
|
SetPositioning(YGPositionTypeAbsolute);
|
|
add_child_file("data/dialogs/about.xml", "about");
|
|
btn_ok = find<NodeButton>("btn-ok");
|
|
pp::panopainter::bind_legacy_click_destroys_node(*btn_ok, *this);
|
|
}
|
|
|
|
kEventResult NodeAbout::handle_event(Event* e)
|
|
{
|
|
return kEventResult::Consumed;
|
|
}
|