FTXUI/src/ftxui/dom/size.cpp

99 lines
2.7 KiB
C++
Raw Normal View History

2021-05-15 04:00:49 +08:00
#include <stddef.h> // for size_t
#include <algorithm> // for min, max
#include <memory> // for make_shared, __shared_ptr_access
#include <utility> // for move
#include <vector> // for __alloc_traits<>::value_type, vector
2020-03-23 05:32:44 +08:00
2021-05-02 02:40:35 +08:00
#include "ftxui/dom/elements.hpp" // for Constraint, Direction, EQUAL, GREATER_THAN, LESS_THAN, WIDTH, unpack, Decorator, Element, size
#include "ftxui/dom/node.hpp" // for Node
#include "ftxui/dom/requirement.hpp" // for Requirement
#include "ftxui/screen/box.hpp" // for Box
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();
2020-06-01 22:13:29 +08:00
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_grow_x = 0;
requirement_.flex_shrink_x = 0;
} else {
requirement_.flex_grow_y = 0;
requirement_.flex_shrink_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
};
2020-08-16 08:24:50 +08:00
/// @brief Apply a constraint on the size of an element.
/// @param direction Whether the WIDTH of the HEIGHT of the element must be
/// constrained.
/// @param constrain The type of constaint.
/// @param value the value.
/// @ingroup dom
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
// 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.