FTXUI  0.8.1
C++ functional terminal UI.
box_helper.cpp
Go to the documentation of this file.
2 
3 namespace ftxui {
4 namespace box_helper {
5 
6 namespace {
7 // Called when the size allowed is greater than the requested size. This
8 // distributes the extra spaces toward the flexible elements, in relative
9 // proportions.
10 void ComputeGrow(std::vector<Element>* elements,
11  int extra_space,
12  int flex_grow_sum) {
13  for (Element& element : *elements) {
14  int added_space =
15  extra_space * element.flex_grow / std::max(flex_grow_sum, 1);
16  extra_space -= added_space;
17  flex_grow_sum -= element.flex_grow;
18  element.size = element.min_size + added_space;
19  }
20 }
21 
22 // Called when the size allowed is lower than the requested size, and the
23 // shrinkable element can absorbe the (negative) extra_space. This distribute
24 // the extra_space toward those.
25 void ComputeShrinkEasy(std::vector<Element>* elements,
26  int extra_space,
27  int flex_shrink_sum) {
28  for (Element& element : *elements) {
29  int added_space = extra_space * element.min_size * element.flex_shrink /
30  std::max(flex_shrink_sum, 1);
31  extra_space -= added_space;
32  flex_shrink_sum -= element.flex_shrink * element.min_size;
33  element.size = element.min_size + added_space;
34  }
35 }
36 
37 // Called when the size allowed is lower than the requested size, and the
38 // shrinkable element can not absorbe the (negative) extra_space. This assign
39 // zero to shrinkable elements and distribute the remaining (negative)
40 // extra_space toward the other non shrinkable elements.
41 void ComputeShrinkHard(std::vector<Element>* elements,
42  int extra_space,
43  int size) {
44  for (Element& element : *elements) {
45  if (element.flex_shrink) {
46  element.size = 0;
47  continue;
48  }
49 
50  int added_space = extra_space * element.min_size / std::max(1, size);
51  extra_space -= added_space;
52  size -= element.min_size;
53 
54  element.size = element.min_size + added_space;
55  }
56 }
57 
58 } // namespace
59 
60 void Compute(std::vector<Element>* elements, int target_size) {
61  int size = 0;
62  int flex_grow_sum = 0;
63  int flex_shrink_sum = 0;
64  int flex_shrink_size = 0;
65 
66  for (auto& element : *elements) {
67  flex_grow_sum += element.flex_grow;
68  flex_shrink_sum += element.min_size * element.flex_shrink;
69  if (element.flex_shrink)
70  flex_shrink_size += element.min_size;
71  size += element.min_size;
72  }
73 
74  int extra_space = target_size - size;
75  if (extra_space >= 0)
76  ComputeGrow(elements, extra_space, flex_grow_sum);
77  else if (flex_shrink_size + extra_space >= 0)
78  ComputeShrinkEasy(elements, extra_space, flex_shrink_sum);
79  else
80  ComputeShrinkHard(elements, extra_space + flex_shrink_size,
81  size - flex_shrink_size);
82 }
83 
84 } // namespace box_helper
85 } // namespace ftxui
ftxui
Definition: captured_mouse.hpp:6
box_helper.hpp
ftxui::size
Decorator size(Direction, Constraint, int value)
Apply a constraint on the size of an element.
Definition: size.cpp:86
ftxui::box_helper::Element
Definition: box_helper.hpp:9
ftxui::box_helper::Compute
void Compute(std::vector< Element > *elements, int target_size)
Definition: box_helper.cpp:60