FTXUI/src/ftxui/dom/size.cpp

84 lines
1.9 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.
2020-03-23 05:32:44 +08:00
#include <algorithm>
2019-01-07 02:17:27 +08:00
#include "ftxui/dom/elements.hpp"
#include "ftxui/dom/node.hpp"
2019-01-07 02:17:27 +08:00
namespace ftxui {
2019-01-07 02:17:27 +08:00
class Size : public Node {
public:
Size(Element child, Direction direction, Constraint constraint, size_t value)
: Node(unpack(std::move(child))),
direction_(direction),
constraint_(constraint),
value_(value) {}
2019-01-07 02:17:27 +08:00
~Size() override {}
2019-01-07 02:17:27 +08:00
void ComputeRequirement() override {
Node::ComputeRequirement();
2019-01-20 05:06:05 +08:00
requirement_ = children[0]->requirement();
auto& value = direction_ == WIDTH ? requirement_.min.x : requirement_.min.y;
switch (constraint_) {
case LESS_THAN:
value = std::min(value, value_);
break;
case EQUAL:
value = value_;
break;
case GREATER_THAN:
value = std::max(value, value_);
break;
}
if (direction_ == WIDTH)
requirement_.flex.x = 0;
else
requirement_.flex.y = 0;
2019-01-07 02:17:27 +08:00
}
void SetBox(Box box) override {
Node::SetBox(box);
if (direction_ == WIDTH) {
2020-03-23 05:32:44 +08:00
switch (constraint_) {
case LESS_THAN:
case EQUAL:
box.x_max = std::min(box.x_min + value_ + 1, box.x_max);
break;
case GREATER_THAN:
break;
}
} else {
2020-03-23 05:32:44 +08:00
switch (constraint_) {
case LESS_THAN:
case EQUAL:
box.y_max = std::min(box.y_min + value_ + 1, box.y_max);
break;
case GREATER_THAN:
break;
}
}
2019-01-07 02:17:27 +08:00
children[0]->SetBox(box);
}
private:
Direction direction_;
Constraint constraint_;
int value_;
2019-01-07 02:17:27 +08:00
};
Decorator size(Direction direction, Constraint constraint, int value) {
2019-01-07 02:17:27 +08:00
return [=](Element e) {
return std::make_shared<Size>(std::move(e), direction, constraint, value);
2019-01-07 02:17:27 +08:00
};
}
2020-02-12 04:44:55 +08:00
} // namespace ftxui