FTXUI/src/ftxui/component/radiobox.cpp

96 lines
2.5 KiB
C++
Raw Normal View History

2019-01-19 05:41:33 +08:00
#include "ftxui/component/radiobox.hpp"
2021-05-02 02:40:35 +08:00
#include <stddef.h>
2020-03-23 05:32:44 +08:00
#include <algorithm>
#include <functional>
2021-05-02 02:40:35 +08:00
#include <memory>
#include <utility>
#include "ftxui/component/captured_mouse.hpp"
#include "ftxui/component/mouse.hpp"
#include "ftxui/component/screen_interactive.hpp"
2019-01-19 05:41:33 +08:00
namespace ftxui {
Element RadioBox::Render() {
std::vector<Element> elements;
bool is_focused = Focused();
boxes_.resize(entries.size());
2019-01-19 05:41:33 +08:00
for (size_t i = 0; i < entries.size(); ++i) {
auto style =
(focused == int(i) && is_focused) ? focused_style : unfocused_style;
2021-05-02 02:40:35 +08:00
auto focus_management = (focused != int(i)) ? nothing
: is_focused ? focus
: select;
2019-01-20 05:06:05 +08:00
2019-01-19 05:41:33 +08:00
const std::wstring& symbol = selected == int(i) ? checked : unchecked;
2019-01-20 05:06:05 +08:00
elements.push_back(hbox(text(symbol), text(entries[i]) | style) |
focus_management | reflect(boxes_[i]));
2019-01-19 05:41:33 +08:00
}
return vbox(std::move(elements));
}
bool RadioBox::OnEvent(Event event) {
2021-05-02 02:40:35 +08:00
if (!CaptureMouse(event))
return false;
if (event.is_mouse())
return OnMouseEvent(event);
2019-01-19 05:41:33 +08:00
if (!Focused())
return false;
int new_focused = focused;
if (event == Event::ArrowUp || event == Event::Character('k'))
new_focused--;
if (event == Event::ArrowDown || event == Event::Character('j'))
new_focused++;
if (event == Event::Tab && entries.size())
new_focused = (new_focused + 1) % entries.size();
if (event == Event::TabReverse && entries.size())
new_focused = (new_focused + entries.size() - 1) % entries.size();
2019-01-19 05:41:33 +08:00
new_focused = std::max(0, std::min(int(entries.size()) - 1, new_focused));
2019-01-19 05:41:33 +08:00
if (focused != new_focused) {
focused = new_focused;
return true;
}
if (event == Event::Character(' ') || event == Event::Return) {
2019-01-19 05:41:33 +08:00
selected = focused;
on_change();
}
return false;
}
bool RadioBox::OnMouseEvent(Event event) {
2021-05-02 02:40:35 +08:00
if (!CaptureMouse(event))
return false;
for (int i = 0; i < boxes_.size(); ++i) {
2021-04-25 21:22:38 +08:00
if (!boxes_[i].Contain(event.mouse().x, event.mouse().y))
continue;
2021-04-25 21:22:38 +08:00
focused = i;
TakeFocus();
2021-04-25 21:22:38 +08:00
if (event.mouse().button == Mouse::Left &&
event.mouse().motion == Mouse::Pressed) {
cursor_position = i;
TakeFocus();
if (selected != i) {
selected = i;
on_change();
}
return true;
}
}
return false;
}
2019-01-19 05:41:33 +08:00
} // namespace ftxui
// 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.