File: toggle.cpp

package info (click to toggle)
ftxui 5.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,084 kB
  • sloc: cpp: 23,669; xml: 211; sh: 25; javascript: 20; python: 16; makefile: 15
file content (64 lines) | stat: -rw-r--r-- 2,080 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// 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.
#include <memory>  // for allocator, __shared_ptr_access
#include <string>  // for string, basic_string
#include <vector>  // for vector

#include "ftxui/component/captured_mouse.hpp"  // for ftxui
#include "ftxui/component/component.hpp"       // for Toggle, Renderer, Vertical
#include "ftxui/component/component_base.hpp"  // for ComponentBase
#include "ftxui/component/screen_interactive.hpp"  // for Component, ScreenInteractive
#include "ftxui/dom/elements.hpp"  // for text, hbox, vbox, Element

using namespace ftxui;

int main() {
  std::vector<std::string> toggle_1_entries = {
      "On",
      "Off",
  };
  std::vector<std::string> toggle_2_entries = {
      "Enabled",
      "Disabled",
  };
  std::vector<std::string> toggle_3_entries = {
      "10€",
      "0€",
  };
  std::vector<std::string> toggle_4_entries = {
      "Nothing",
      "One element",
      "Several elements",
  };

  int toggle_1_selected = 0;
  int toggle_2_selected = 0;
  int toggle_3_selected = 0;
  int toggle_4_selected = 0;
  Component toggle_1 = Toggle(&toggle_1_entries, &toggle_1_selected);
  Component toggle_2 = Toggle(&toggle_2_entries, &toggle_2_selected);
  Component toggle_3 = Toggle(&toggle_3_entries, &toggle_3_selected);
  Component toggle_4 = Toggle(&toggle_4_entries, &toggle_4_selected);

  auto container = Container::Vertical({
      toggle_1,
      toggle_2,
      toggle_3,
      toggle_4,
  });

  auto renderer = Renderer(container, [&] {
    return vbox({
        text("Choose your options:"),
        text(""),
        hbox(text(" * Poweroff on startup      : "), toggle_1->Render()),
        hbox(text(" * Out of process           : "), toggle_2->Render()),
        hbox(text(" * Price of the information : "), toggle_3->Render()),
        hbox(text(" * Number of elements       : "), toggle_4->Render()),
    });
  });

  auto screen = ScreenInteractive::TerminalOutput();
  screen.Loop(renderer);
}