FTXUI/src/ftxui/dom/dbox.cpp

49 lines
1.2 KiB
C++
Raw Normal View History

2020-04-20 03:00:37 +08:00
// 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.
#include <algorithm>
2019-01-03 07:35:59 +08:00
#include "ftxui/dom/elements.hpp"
2020-03-23 05:32:44 +08:00
#include "ftxui/dom/node.hpp"
2019-01-03 07:35:59 +08:00
namespace ftxui {
2019-01-03 07:35:59 +08:00
class DBox : public Node {
public:
2019-01-13 01:24:46 +08:00
DBox(Elements children) : Node(std::move(children)) {}
2019-01-03 07:35:59 +08:00
~DBox() {}
void ComputeRequirement() override {
2020-06-01 22:13:29 +08:00
requirement_.min_x = 0;
requirement_.min_y = 0;
requirement_.flex_x = 1;
requirement_.flex_y = 0;
2019-01-03 07:35:59 +08:00
for (auto& child : children) {
child->ComputeRequirement();
2020-06-01 22:13:29 +08:00
requirement_.min_x =
std::max(requirement_.min_x, child->requirement().min_x);
requirement_.min_y =
std::max(requirement_.min_y, child->requirement().min_y);
2019-01-20 05:06:05 +08:00
if (requirement_.selection < child->requirement().selection) {
requirement_.selection = child->requirement().selection;
requirement_.selected_box = child->requirement().selected_box;
}
2019-01-03 07:35:59 +08:00
}
}
void SetBox(Box box) override {
Node::SetBox(box);
for (auto& child : children)
child->SetBox(box);
}
};
Element dbox(Elements children) {
return std::make_shared<DBox>(std::move(children));
2019-01-03 07:35:59 +08:00
}
2020-02-12 04:44:55 +08:00
} // namespace ftxui