FTXUI/include/ftxui/dom/requirement.hpp
ArthurSonzogni 493e734680 Set clang-format macro indent.
1) Set clang-format macro indent.
2) Run clang-format on every files.
2020-03-23 21:26:00 +01:00

33 lines
558 B
C++

#ifndef FTXUI_DOM_REQUIREMENT_HPP
#define FTXUI_DOM_REQUIREMENT_HPP
#include "ftxui/screen/box.hpp"
namespace ftxui {
struct Requirement {
// The required size to fully draw the element.
struct {
int x = 0;
int y = 0;
} min;
// How much flexibility is given to the component.
struct {
int x = 0;
int y = 0;
} flex;
// Frame.
enum Selection {
NORMAL = 0,
SELECTED = 1,
FOCUSED = 2,
} selection = NORMAL;
Box selected_box;
};
} // namespace ftxui
#endif /* end of include guard: FTXUI_REQUIREMENT_HPP */