FTXUI/src/ftxui/dom/node_decorator.cpp

26 lines
727 B
C++
Raw Normal View History

2021-05-10 02:32:27 +08:00
#include <ext/alloc_traits.h> // for __alloc_traits<>::value_type
#include <memory> // for __shared_ptr_access
#include <vector> // for vector
2021-05-02 02:40:35 +08:00
2018-10-12 15:23:37 +08:00
#include "ftxui/dom/node_decorator.hpp"
2021-05-02 02:40:35 +08:00
#include "ftxui/dom/requirement.hpp" // for Requirement
#include "ftxui/screen/box.hpp" // for Box
2018-10-12 15:23:37 +08:00
namespace ftxui {
2018-10-12 15:23:37 +08:00
void NodeDecorator::ComputeRequirement() {
Node::ComputeRequirement();
requirement_ = children[0]->requirement();
}
void NodeDecorator::SetBox(Box box) {
Node::SetBox(box);
children[0]->SetBox(box);
}
2020-02-12 04:44:55 +08:00
} // namespace ftxui
// Copyright 2020 Arthur Sonzogni. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.