FTXUI/examples/component/slider_rgb.cpp

63 lines
2.2 KiB
C++
Raw Normal View History

#include <memory> // for allocator, __shared_ptr_access, shared_ptr
#include <string> // for operator+, to_wstring, char_traits
2021-05-13 17:44:47 +08:00
#include "ftxui/component/captured_mouse.hpp" // for ftxui
#include "ftxui/component/component.hpp" // for Slider, Renderer, Vertical
2021-05-13 17:44:47 +08:00
#include "ftxui/component/component_base.hpp" // for ComponentBase
#include "ftxui/component/screen_interactive.hpp" // for ScreenInteractive
#include "ftxui/dom/elements.hpp" // for separator, Element, operator|, size, text, vbox, xflex, bgcolor, hbox, GREATER_THAN, WIDTH, border, HEIGHT, LESS_THAN
2021-05-13 17:44:47 +08:00
#include "ftxui/screen/color.hpp" // for Color
using namespace ftxui;
Element ColorTile(int red, int green, int blue) {
return text(L"") | size(WIDTH, GREATER_THAN, 14) |
size(HEIGHT, GREATER_THAN, 7) | bgcolor(Color::RGB(red, green, blue));
}
Element ColorString(int red, int green, int blue) {
return text(L"RGB = (" + //
std::to_wstring(red) + L"," + //
std::to_wstring(green) + L"," + //
std::to_wstring(blue) + L")" //
);
}
int main(int argc, const char* argv[]) {
int red = 128;
int green = 25;
int blue = 100;
auto slider_red = Slider(L"Red :", &red, 0, 255, 1);
auto slider_green = Slider(L"Green:", &green, 0, 255, 1);
auto slider_blue = Slider(L"Blue :", &blue, 0, 255, 1);
2021-05-13 17:44:47 +08:00
auto container = Container::Vertical({
slider_red,
slider_green,
slider_blue,
});
2021-05-13 17:44:47 +08:00
auto renderer = Renderer(container, [&] {
2021-05-13 17:44:47 +08:00
return hbox({
ColorTile(red, green, blue),
2021-05-13 17:44:47 +08:00
separator(),
vbox({
slider_red->Render(),
2021-05-13 17:44:47 +08:00
separator(),
slider_green->Render(),
2021-05-13 17:44:47 +08:00
separator(),
slider_blue->Render(),
2021-05-13 17:44:47 +08:00
separator(),
ColorString(red, green, blue),
2021-05-13 17:44:47 +08:00
}) | xflex,
}) |
border | size(WIDTH, LESS_THAN, 80);
});
2021-05-13 17:44:47 +08:00
auto screen = ScreenInteractive::TerminalOutput();
screen.Loop(renderer);
2021-05-13 17:44:47 +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.