2021-05-10 02:32:27 +08:00
|
|
|
#include <string> // for allocator, wstring
|
|
|
|
#include <utility> // for move
|
|
|
|
|
|
|
|
#include "ftxui/component/captured_mouse.hpp" // for CapturedMouse
|
|
|
|
#include "ftxui/component/component.hpp" // for Make, Slider
|
|
|
|
#include "ftxui/component/component_base.hpp" // for ComponentBase
|
|
|
|
#include "ftxui/component/event.hpp" // for Event, Event::ArrowLeft, Event::ArrowRight
|
|
|
|
#include "ftxui/component/mouse.hpp" // for Mouse, Mouse::Left, Mouse::Pressed, Mouse::Released
|
|
|
|
#include "ftxui/component/screen_interactive.hpp" // for Component
|
|
|
|
#include "ftxui/dom/elements.hpp" // for Element, text, color, operator|, xflex, gauge, dim, hbox, reflect, underlined, vcenter
|
|
|
|
#include "ftxui/screen/box.hpp" // for Box
|
|
|
|
#include "ftxui/screen/color.hpp" // for Color, Color::GrayDark, Color::GrayLight
|
2021-04-29 06:18:58 +08:00
|
|
|
|
|
|
|
namespace ftxui {
|
2021-05-02 00:13:56 +08:00
|
|
|
|
2021-05-02 02:40:35 +08:00
|
|
|
template <class T>
|
2021-05-10 02:32:27 +08:00
|
|
|
class SliderBase : public ComponentBase {
|
2021-04-29 06:18:58 +08:00
|
|
|
public:
|
2021-05-10 02:32:27 +08:00
|
|
|
SliderBase(std::wstring label, T* value, T min, T max, T increment)
|
2021-04-29 06:18:58 +08:00
|
|
|
: label_(label),
|
|
|
|
value_(value),
|
|
|
|
min_(min),
|
|
|
|
max_(max),
|
|
|
|
increment_(increment) {}
|
|
|
|
|
|
|
|
Element Render() {
|
|
|
|
auto gauge_color =
|
|
|
|
Focused() ? color(Color::GrayLight) : color(Color::GrayDark);
|
|
|
|
float percent = float(*value_ - min_) / float(max_ - min_);
|
|
|
|
return hbox({
|
|
|
|
text(label_) | dim | vcenter,
|
|
|
|
hbox({
|
|
|
|
text(L"["),
|
|
|
|
gauge(percent) | underlined | xflex | reflect(gauge_box_),
|
|
|
|
text(L"]"),
|
|
|
|
}) | xflex,
|
|
|
|
}) |
|
|
|
|
gauge_color | xflex | reflect(box_);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OnEvent(Event event) final {
|
|
|
|
if (event.is_mouse())
|
|
|
|
return OnMouseEvent(event);
|
|
|
|
|
|
|
|
if (event == Event::ArrowLeft || event == Event::Character('h')) {
|
|
|
|
*value_ -= increment_;
|
|
|
|
*value_ = std::max(*value_, min_);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event == Event::ArrowRight || event == Event::Character('l')) {
|
|
|
|
*value_ += increment_;
|
|
|
|
*value_ = std::min(*value_, max_);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
return ComponentBase::OnEvent(event);
|
2021-04-29 06:18:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool OnMouseEvent(Event event) {
|
2021-05-02 00:13:56 +08:00
|
|
|
if (captured_mouse_ && event.mouse().motion == Mouse::Released) {
|
|
|
|
captured_mouse_ = nullptr;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
if (box_.Contain(event.mouse().x, event.mouse().y) && CaptureMouse(event)) {
|
2021-05-02 00:13:56 +08:00
|
|
|
TakeFocus();
|
|
|
|
}
|
|
|
|
|
2021-04-29 06:18:58 +08:00
|
|
|
if (event.mouse().button == Mouse::Left &&
|
2021-05-02 00:13:56 +08:00
|
|
|
event.mouse().motion == Mouse::Pressed &&
|
|
|
|
gauge_box_.Contain(event.mouse().x, event.mouse().y) &&
|
|
|
|
!captured_mouse_) {
|
2021-05-02 02:40:35 +08:00
|
|
|
captured_mouse_ = CaptureMouse(event);
|
2021-05-02 00:13:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (captured_mouse_) {
|
2021-04-29 06:18:58 +08:00
|
|
|
*value_ = min_ + (event.mouse().x - gauge_box_.x_min) * (max_ - min_) /
|
2021-05-02 00:13:56 +08:00
|
|
|
(gauge_box_.x_max - gauge_box_.x_min);
|
|
|
|
*value_ = std::max(min_, std::min(max_, *value_));
|
|
|
|
return true;
|
2021-04-29 06:18:58 +08:00
|
|
|
}
|
2021-05-02 00:13:56 +08:00
|
|
|
return false;
|
2021-04-29 06:18:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::wstring label_;
|
2021-05-02 00:13:56 +08:00
|
|
|
T* value_;
|
|
|
|
T min_;
|
|
|
|
T max_;
|
|
|
|
T increment_ = 1;
|
2021-04-29 06:18:58 +08:00
|
|
|
Box box_;
|
|
|
|
Box gauge_box_;
|
2021-05-02 00:13:56 +08:00
|
|
|
CapturedMouse captured_mouse_;
|
2021-04-29 06:18:58 +08:00
|
|
|
};
|
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
/// @brief An horizontal slider.
|
|
|
|
/// @param label The name of the slider.
|
|
|
|
/// @param value The current value of the slider.
|
|
|
|
/// @param min The minimum value.
|
|
|
|
/// @param max The maximum value.
|
|
|
|
/// @param increment The increment when used by the cursor.
|
|
|
|
/// @ingroup component
|
|
|
|
///
|
|
|
|
/// ### Example
|
|
|
|
///
|
|
|
|
/// ```cpp
|
|
|
|
/// auto screen = ScreenInteractive::TerminalOutput();
|
|
|
|
/// int value = 50;
|
|
|
|
/// auto slider = Slider(L"Value:", &value, 0, 100, 1);
|
|
|
|
/// screen.Loop(slider);
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// ### Output
|
|
|
|
///
|
|
|
|
/// ```bash
|
|
|
|
/// Value:[██████████████████████████ ]
|
|
|
|
/// ```
|
2021-05-02 00:13:56 +08:00
|
|
|
template <class T>
|
2021-05-10 02:32:27 +08:00
|
|
|
Component Slider(std::wstring label, T* value, T min, T max, T increment) {
|
|
|
|
return Make<SliderBase<T>>(std::move(label), value, min, max, increment);
|
2021-04-29 06:18:58 +08:00
|
|
|
}
|
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
template Component Slider(std::wstring label,
|
|
|
|
int* value,
|
|
|
|
int min,
|
|
|
|
int max,
|
|
|
|
int increment);
|
|
|
|
|
|
|
|
template Component Slider(std::wstring label,
|
|
|
|
float* value,
|
|
|
|
float min,
|
|
|
|
float max,
|
|
|
|
float increment);
|
2021-05-02 00:13:56 +08:00
|
|
|
|
2021-04-29 06:18:58 +08:00
|
|
|
} // namespace ftxui
|
2021-05-02 02:40:35 +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.
|