mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-05-06 17:21:13 +08:00
Format.
This commit is contained in:
parent
985cb35ffb
commit
957387adaa
@ -11,19 +11,13 @@
|
|||||||
int main(int argc, const char* argv[]) {
|
int main(int argc, const char* argv[]) {
|
||||||
using namespace ftxui;
|
using namespace ftxui;
|
||||||
auto make_box = [](const std::wstring title) {
|
auto make_box = [](const std::wstring title) {
|
||||||
return
|
return window(text(title) | hcenter | bold,
|
||||||
window(
|
text(L"content") | hcenter | dim);
|
||||||
text(title) | hcenter | bold,
|
|
||||||
text(L"content") | hcenter | dim
|
|
||||||
);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Elements content;
|
Elements content;
|
||||||
for (int x = 3; x < 30; ++x) {
|
for (int x = 3; x < 30; ++x) {
|
||||||
content.push_back(
|
content.push_back(make_box(to_wstring(x)) | size(WIDTH, EQUAL, x));
|
||||||
make_box(to_wstring(x))
|
|
||||||
| size(WIDTH, EQUAL, x)
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
auto document = hbox(std::move(content));
|
auto document = hbox(std::move(content));
|
||||||
|
@ -42,8 +42,7 @@ Element select(Element child) {
|
|||||||
|
|
||||||
class Focus : public Select {
|
class Focus : public Select {
|
||||||
public:
|
public:
|
||||||
Focus(std::vector<Element> children)
|
Focus(std::vector<Element> children) : Select(std::move(children)) {}
|
||||||
: Select(std::move(children)) {}
|
|
||||||
|
|
||||||
void ComputeRequirement() override {
|
void ComputeRequirement() override {
|
||||||
Select::ComputeRequirement();
|
Select::ComputeRequirement();
|
||||||
@ -64,8 +63,7 @@ Element focus(Element child) {
|
|||||||
|
|
||||||
class Frame : public Node {
|
class Frame : public Node {
|
||||||
public:
|
public:
|
||||||
Frame(std::vector<Element> children)
|
Frame(std::vector<Element> children) : Node(std::move(children)) {}
|
||||||
: Node(std::move(children)) {}
|
|
||||||
|
|
||||||
void ComputeRequirement() override {
|
void ComputeRequirement() override {
|
||||||
Node::ComputeRequirement();
|
Node::ComputeRequirement();
|
||||||
|
Loading…
Reference in New Issue
Block a user