FTXUI/examples/component/input.cpp

49 lines
1.7 KiB
C++
Raw Normal View History

2021-05-10 02:32:27 +08:00
#include <memory> // for allocator, __shared_ptr_access
#include <string> // for operator+, char_traits, wstring
2018-10-19 04:58:38 +08:00
2021-05-10 02:32:27 +08:00
#include "ftxui/component/captured_mouse.hpp" // for ftxui
#include "ftxui/component/component.hpp" // for Input, Renderer, Vertical
2021-05-10 02:32:27 +08:00
#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, Element, separator, operator|, vbox, border
2018-10-19 04:58:38 +08:00
int main(int argc, const char* argv[]) {
using namespace ftxui;
2018-10-19 04:58:38 +08:00
std::wstring first_name;
std::wstring last_name;
std::wstring password;
Component input_first_name = Input(&first_name, "first name");
Component input_last_name = Input(&last_name, "last name");
InputOption password_option;
password_option.password = true;
Component input_password = Input(&password, "password", password_option);
2018-10-19 04:58:38 +08:00
auto component = Container::Vertical({
input_first_name,
input_last_name,
input_password,
});
auto renderer = Renderer(component, [&] {
return vbox({
text(L"Hello " + first_name + L" " + last_name),
separator(),
hbox(text(L" First name : "), input_first_name->Render()),
hbox(text(L" Last name : "), input_last_name->Render()),
hbox(text(L" Password : "), input_password->Render()),
}) |
border;
});
2018-10-19 04:58:38 +08:00
auto screen = ScreenInteractive::TerminalOutput();
screen.Loop(renderer);
2018-10-19 04:58:38 +08:00
}
2020-09-06 19:46:56 +08:00
// 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.