FTXUI/ftxui/src/ftxui/component/component.cpp

54 lines
1.1 KiB
C++
Raw Normal View History

#include "ftxui/component/component.hpp"
#include <assert.h>
namespace ftxui {
2019-01-13 01:24:46 +08:00
void Component::Detach() { if (!parent_) return; auto it = std::find(std::begin(parent_->children_),
std::end(parent_->children_), this);
parent_->children_.erase(it);
}
2019-01-13 01:24:46 +08:00
void Component::Attach(Component* parent) {
Detach();
parent_ = parent;
parent_->children_.push_back(this);
}
2019-01-13 01:24:46 +08:00
void Component::Add(Component* child) {
child->Attach(this);
}
2019-01-13 01:24:46 +08:00
Component::~Component() {
Detach();
}
2019-01-13 01:24:46 +08:00
bool Component::OnEvent(Event event) {
for(Component* child : children_) {
if (child->OnEvent(event))
return true;
}
return false;
}
2019-01-13 01:24:46 +08:00
Component* Component::ActiveChild() {
return children_.empty() ? nullptr : children_.front();
}
2019-01-13 01:24:46 +08:00
Element Component::Render() {
return text(L"Not implemented component");
}
2019-01-13 01:24:46 +08:00
bool Component::Focused() {
Component* current = this;
for(;;) {
Component* parent = current->parent_;
if (!parent)
return true;
if (parent->ActiveChild() != current)
return false;
current = parent;
}
}
} // namespace ftxui