2021-12-12 00:58:25 +08:00
|
|
|
#include <memory> // for allocator, __shared_ptr_access
|
|
|
|
#include <string> // for string, basic_string, operator+, to_string
|
|
|
|
#include <vector> // for vector
|
|
|
|
|
|
|
|
#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-11-07 19:01:17 +08:00
|
|
|
#include "ftxui/component/screen_interactive.hpp" // for Component, ScreenInteractive
|
2021-12-12 00:58:25 +08:00
|
|
|
#include "ftxui/dom/elements.hpp" // for operator|, Element, size, border, frame, vscroll_indicator, HEIGHT, LESS_THAN
|
2019-01-13 05:25:49 +08:00
|
|
|
|
2021-05-13 17:44:47 +08:00
|
|
|
int main(int argc, const char* argv[]) {
|
2021-11-07 19:01:17 +08:00
|
|
|
using namespace ftxui;
|
|
|
|
|
|
|
|
Component input_list = Container::Vertical({});
|
|
|
|
std::vector<std::string> items(100, "");
|
|
|
|
for (int i = 0; i < items.size(); ++i) {
|
|
|
|
input_list->Add(Input(&(items[i]), "placeholder " + std::to_string(i)));
|
|
|
|
}
|
2021-05-10 02:32:27 +08:00
|
|
|
|
2021-11-07 19:01:17 +08:00
|
|
|
auto renderer = Renderer(input_list, [&] {
|
|
|
|
return input_list->Render() | vscroll_indicator | frame | border |
|
|
|
|
size(HEIGHT, LESS_THAN, 10);
|
2021-05-10 02:32:27 +08:00
|
|
|
});
|
2020-03-23 05:32:44 +08:00
|
|
|
|
2019-01-20 05:06:05 +08:00
|
|
|
auto screen = ScreenInteractive::TerminalOutput();
|
2021-11-07 19:01:17 +08:00
|
|
|
screen.Loop(renderer);
|
2019-01-13 05:25:49 +08:00
|
|
|
}
|
2021-12-12 00:58:25 +08:00
|
|
|
|
|
|
|
// Copyright 2021 Arthur Sonzogni. All rights reserved.
|
|
|
|
// Use of this source code is governed by the MIT license that can be found in
|
|
|
|
// the LICENSE file.
|