2023-08-19 19:56:36 +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.
|
2021-05-10 02:32:27 +08:00
|
|
|
#include <memory> // for allocator, __shared_ptr_access
|
2021-09-17 02:45:26 +08:00
|
|
|
#include <string> // for char_traits, operator+, string, basic_string
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2021-09-17 02:45:26 +08:00
|
|
|
#include "ftxui/component/captured_mouse.hpp" // for ftxui
|
|
|
|
#include "ftxui/component/component.hpp" // for Input, Renderer, Vertical
|
|
|
|
#include "ftxui/component/component_base.hpp" // for ComponentBase
|
2021-08-07 02:32:33 +08:00
|
|
|
#include "ftxui/component/component_options.hpp" // for InputOption
|
2021-05-10 02:32:27 +08:00
|
|
|
#include "ftxui/component/screen_interactive.hpp" // for Component, ScreenInteractive
|
2021-09-17 02:45:26 +08:00
|
|
|
#include "ftxui/dom/elements.hpp" // for text, hbox, separator, Element, operator|, vbox, border
|
|
|
|
#include "ftxui/util/ref.hpp" // for Ref
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2024-08-02 21:30:35 +08:00
|
|
|
|
2023-06-03 19:59:39 +08:00
|
|
|
int main() {
|
2021-05-14 06:45:03 +08:00
|
|
|
using namespace ftxui;
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2023-11-05 17:26:12 +08:00
|
|
|
// The data:
|
2021-08-09 06:27:37 +08:00
|
|
|
std::string first_name;
|
|
|
|
std::string last_name;
|
|
|
|
std::string password;
|
2023-11-05 17:26:12 +08:00
|
|
|
std::string phoneNumber;
|
2024-08-02 21:38:17 +08:00
|
|
|
Region selection;
|
2024-08-02 21:30:35 +08:00
|
|
|
std::string textToCopy;
|
|
|
|
|
|
|
|
auto screen = ScreenInteractive::TerminalOutput();
|
|
|
|
|
2023-11-05 17:26:12 +08:00
|
|
|
// The basic input components:
|
2021-07-17 16:36:50 +08:00
|
|
|
Component input_first_name = Input(&first_name, "first name");
|
|
|
|
Component input_last_name = Input(&last_name, "last name");
|
|
|
|
|
2023-11-05 17:26:12 +08:00
|
|
|
// The password input component:
|
2021-07-17 16:36:50 +08:00
|
|
|
InputOption password_option;
|
|
|
|
password_option.password = true;
|
|
|
|
Component input_password = Input(&password, "password", password_option);
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2023-11-05 17:26:12 +08:00
|
|
|
// The phone number input component:
|
|
|
|
// We are using `CatchEvent` to filter out non-digit characters.
|
|
|
|
Component input_phone_number = Input(&phoneNumber, "phone number");
|
|
|
|
input_phone_number |= CatchEvent([&](Event event) {
|
|
|
|
return event.is_character() && !std::isdigit(event.character()[0]);
|
|
|
|
});
|
|
|
|
input_phone_number |= CatchEvent([&](Event event) {
|
|
|
|
return event.is_character() && phoneNumber.size() > 10;
|
|
|
|
});
|
|
|
|
|
|
|
|
// The component tree:
|
2021-05-14 06:45:03 +08:00
|
|
|
auto component = Container::Vertical({
|
2021-07-17 16:36:50 +08:00
|
|
|
input_first_name,
|
|
|
|
input_last_name,
|
|
|
|
input_password,
|
2023-11-05 17:26:12 +08:00
|
|
|
input_phone_number,
|
2021-05-14 06:45:03 +08:00
|
|
|
});
|
|
|
|
|
2023-11-05 17:26:12 +08:00
|
|
|
// Tweak how the component tree is rendered:
|
2021-05-14 06:45:03 +08:00
|
|
|
auto renderer = Renderer(component, [&] {
|
|
|
|
return vbox({
|
2021-08-09 06:27:37 +08:00
|
|
|
hbox(text(" First name : "), input_first_name->Render()),
|
|
|
|
hbox(text(" Last name : "), input_last_name->Render()),
|
|
|
|
hbox(text(" Password : "), input_password->Render()),
|
2023-11-05 17:26:12 +08:00
|
|
|
hbox(text(" Phone num : "), input_phone_number->Render()),
|
|
|
|
separator(),
|
|
|
|
text("Hello " + first_name + " " + last_name),
|
|
|
|
text("Your password is " + password),
|
|
|
|
text("Your phone number is " + phoneNumber),
|
2024-08-02 21:38:17 +08:00
|
|
|
text("select_start " + std::to_string(selection.startx) + ";" + std::to_string(selection.starty)),
|
|
|
|
text("select_end " + std::to_string(selection.endx) + ";" + std::to_string(selection.endy)),
|
2024-08-02 21:30:35 +08:00
|
|
|
text("textToCopy " + textToCopy)
|
2021-05-14 06:45:03 +08:00
|
|
|
}) |
|
2024-08-02 21:38:17 +08:00
|
|
|
border | selected(selection);
|
2024-08-02 21:30:35 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
renderer |= CatchEvent([&](Event event) {
|
|
|
|
if (event.is_mouse()) {
|
|
|
|
auto& mouse = event.mouse();
|
|
|
|
if (mouse.button == Mouse::Left) {
|
|
|
|
if (mouse.motion == Mouse::Pressed) {
|
2024-08-02 21:38:17 +08:00
|
|
|
selection.startx = mouse.x;
|
|
|
|
selection.starty = mouse.y;
|
|
|
|
selection.endx = mouse.x;
|
|
|
|
selection.endy = mouse.y;
|
2024-08-02 21:30:35 +08:00
|
|
|
} else if (mouse.motion == Mouse::Released) {
|
2024-08-02 21:38:17 +08:00
|
|
|
selection.endx = mouse.x;
|
|
|
|
selection.endy = mouse.y;
|
2024-08-02 21:30:35 +08:00
|
|
|
}
|
|
|
|
else if (mouse.motion == Mouse::Moved) {
|
2024-08-02 21:38:17 +08:00
|
|
|
selection.endx = mouse.x;
|
|
|
|
selection.endy = mouse.y;
|
2024-08-02 21:30:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
screen.PostEvent(Event::Custom);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if (event == Event::SpecialKey("Ctrl+Shift+C")) {
|
|
|
|
// textToCopy = "Kikoo!";
|
|
|
|
// //clip::set_text(text_to_copy); // Set the clipboard content
|
|
|
|
|
|
|
|
// screen.PostEvent(Event::Custom);
|
|
|
|
|
|
|
|
// return true;
|
|
|
|
// }
|
|
|
|
|
|
|
|
return false;
|
2021-05-14 06:45:03 +08:00
|
|
|
});
|
2018-10-19 04:58:38 +08:00
|
|
|
|
2021-05-14 06:45:03 +08:00
|
|
|
screen.Loop(renderer);
|
2018-10-19 04:58:38 +08:00
|
|
|
}
|