FTXUI/examples/component/menu_style.cpp

78 lines
2.1 KiB
C++
Raw Normal View History

2020-04-20 03:00:37 +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.
2019-01-03 07:35:59 +08:00
#include <iostream>
#include <thread>
2019-01-13 01:24:46 +08:00
#include "ftxui/component/container.hpp"
2019-01-03 07:35:59 +08:00
#include "ftxui/component/menu.hpp"
#include "ftxui/component/screen_interactive.hpp"
2019-01-13 01:24:46 +08:00
#include "ftxui/screen/string.hpp"
2019-01-03 07:35:59 +08:00
using namespace ftxui;
2019-01-03 07:35:59 +08:00
2019-01-13 01:24:46 +08:00
class MyComponent : public Component {
2020-03-23 05:32:44 +08:00
public:
MyComponent() {
Add(&container);
2019-01-03 07:35:59 +08:00
2020-03-23 05:32:44 +08:00
for (Menu* menu : {&menu_1, &menu_2, &menu_3, &menu_4, &menu_5, &menu_6}) {
container.Add(menu);
menu->entries = {
L"Monkey", L"Dog", L"Cat", L"Bird", L"Elephant",
};
menu->on_enter = [this]() { on_enter(); };
}
2019-01-03 07:35:59 +08:00
2020-03-23 05:32:44 +08:00
menu_2.selected_style = color(Color::Blue);
menu_2.focused_style = bold | color(Color::Blue);
2019-01-03 07:35:59 +08:00
2020-03-23 05:32:44 +08:00
menu_3.selected_style = color(Color::Blue);
menu_3.focused_style = bgcolor(Color::Blue);
2019-01-03 07:35:59 +08:00
2020-03-23 05:32:44 +08:00
menu_4.selected_style = bgcolor(Color::Blue);
menu_4.focused_style = bgcolor(Color::BlueLight);
2019-01-03 07:35:59 +08:00
2020-03-23 05:32:44 +08:00
menu_5.normal_style = bgcolor(Color::Blue);
menu_5.selected_style = bgcolor(Color::Yellow);
menu_5.focused_style = bgcolor(Color::Red);
2019-01-03 07:35:59 +08:00
2020-03-23 05:32:44 +08:00
menu_6.normal_style = dim | color(Color::Blue);
menu_6.selected_style = color(Color::Blue);
menu_6.focused_style = bold | color(Color::Blue);
}
std::function<void()> on_enter = []() {};
2019-01-03 07:35:59 +08:00
2020-03-23 05:32:44 +08:00
private:
Container container = Container::Horizontal();
Menu menu_1;
Menu menu_2;
Menu menu_3;
Menu menu_4;
Menu menu_5;
Menu menu_6;
2019-01-03 07:35:59 +08:00
2020-03-23 05:32:44 +08:00
// clang-format off
2019-01-03 07:35:59 +08:00
Element Render() override {
return
hbox({
menu_1.Render() | flex, separator(),
menu_2.Render() | flex, separator(),
menu_3.Render() | flex, separator(),
menu_4.Render() | flex, separator(),
menu_5.Render() | flex, separator(),
menu_6.Render() | flex,
}) | border;
2019-01-03 07:35:59 +08:00
}
2020-03-23 05:32:44 +08:00
// clang-format on
2019-01-03 07:35:59 +08:00
};
2020-03-23 05:32:44 +08:00
int main(int argc, const char* argv[]) {
auto screen = ScreenInteractive::TerminalOutput();
2019-01-13 01:24:46 +08:00
MyComponent component;
2019-01-03 07:35:59 +08:00
component.on_enter = screen.ExitLoopClosure();
2019-01-13 01:24:46 +08:00
screen.Loop(&component);
2019-01-03 07:35:59 +08:00
}