FTXUI/src/ftxui/component/radiobox.cpp

145 lines
4.1 KiB
C++
Raw Normal View History

2021-05-10 02:32:27 +08:00
#include <stddef.h> // for size_t
#include <algorithm> // for max, min
#include <functional> // for function
#include <memory> // for shared_ptr, allocator_traits<>::value_type
#include <utility> // for move
#include "ftxui/component/captured_mouse.hpp" // for CapturedMouse
#include "ftxui/component/event.hpp" // for Event, Event::ArrowDown, Event::ArrowUp, Event::Return, Event::Tab, Event::TabReverse
#include "ftxui/component/mouse.hpp" // for Mouse, Mouse::Left, Mouse::Pressed
2019-01-19 05:41:33 +08:00
#include "ftxui/component/radiobox.hpp"
2021-05-10 02:32:27 +08:00
#include "ftxui/component/screen_interactive.hpp" // for Component
2021-05-10 02:32:27 +08:00
namespace ftxui {
2021-05-02 02:40:35 +08:00
2021-05-10 02:32:27 +08:00
/// @brief A list of element, where only one can be selected.
/// @param entries The list of entries in the list.
/// @param selected The index of the currently selected element.
/// @ingroup component
/// @see RadioboxBase
///
/// ### Example
///
/// ```cpp
/// auto screen = ScreenInteractive::TerminalOutput();
/// std::vector<std::wstring> entries = {
/// L"entry 1",
/// L"entry 2",
/// L"entry 3",
/// };
/// int selected = 0;
/// auto menu = Radiobox(&entries, &selected);
/// screen.Loop(menu);
/// ```
///
/// ### Output
///
/// ```bash
/// ◉ entry 1
/// ○ entry 2
/// ○ entry 3
/// ```
Component Radiobox(const std::vector<std::wstring>* entries, int* selected) {
return Make<RadioboxBase>(entries, selected);
}
2019-01-19 05:41:33 +08:00
2021-05-10 02:32:27 +08:00
// static
RadioboxBase* RadioboxBase::From(Component component) {
return static_cast<RadioboxBase*>(component.get());
}
RadioboxBase::RadioboxBase(const std::vector<std::wstring>* entries,
int* selected)
Implement Fallback for microsoft's terminals. (#138) I finally got access to a computer using the Microsoft's Windows OS. That's the opportunity to find and mitigate all the problems encountered. This patch: 1. Introduce an option and a C++ definition to enable fallback for Microsoft's terminal emulators. This allows me to see/test the Microsoft output from Linux. This also allows Windows users to remove the fallback and target non Microsoft terminals on Windows if needed. 2. Microsoft's terminal suffer from a race condition bug when reporting the cursor position: https://github.com/microsoft/terminal/pull/7583. The mitigation is not to ask for the cursor position in fullscreen mode where it isn't really needed and request it less often. This fixes: https://github.com/ArthurSonzogni/FTXUI/issues/136 3. Microsoft's terminal do not handle properly hidding the cursor. Instead the character under the cursor is hidden, which is a big problem. As a result, we don't enable setting the cursor to the best position for [input method editors](https://en.wikipedia.org/wiki/Input_method), It will be displayed at the bottom right corner. See: - https://github.com/microsoft/terminal/issues/1203 - https://github.com/microsoft/terminal/issues/3093 4. Microsoft's terminals do not provide a way to query if they support colors. As a fallback, assume true colors is supported. See issue: - https://github.com/microsoft/terminal/issues/1040 This mitigates: - https://github.com/ArthurSonzogni/FTXUI/issues/135 5. The "cmd" on Windows do not properly report its dimension. Powershell works correctly. As a fallback, use a 80x80 size instead of 0x0. 6. There are several dom elements and component displayed incorrectly, because the font used is missing several unicode glyph. Use alternatives or less detailled one as a fallback.
2021-07-04 23:38:31 +08:00
: entries_(entries), selected_(selected) {
#if defined(FTXUI_MICROSOFT_TERMINAL_FALLBACK)
// Microsoft terminal do not use fonts able to render properly the default
// radiobox glyph.
if (checked == L"")
checked = L"(*)";
if (unchecked == L"")
unchecked = L"( )";
#endif
}
2019-01-19 05:41:33 +08:00
2021-05-10 02:32:27 +08:00
Element RadioboxBase::Render() {
2019-01-19 05:41:33 +08:00
std::vector<Element> elements;
bool is_focused = Focused();
2021-05-10 02:32:27 +08:00
boxes_.resize(entries_->size());
for (size_t i = 0; i < entries_->size(); ++i) {
2019-01-19 05:41:33 +08:00
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
2021-05-10 02:32:27 +08:00
const std::wstring& symbol = *selected_ == int(i) ? checked : unchecked;
elements.push_back(hbox(text(symbol), text(entries_->at(i)) | style) |
focus_management | reflect(boxes_[i]));
2019-01-19 05:41:33 +08:00
}
return vbox(std::move(elements));
}
2021-05-10 02:32:27 +08:00
bool RadioboxBase::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++;
2021-05-10 02:32:27 +08:00
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();
2021-05-10 02:32:27 +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) {
2021-05-10 02:32:27 +08:00
*selected_ = focused;
2019-01-19 05:41:33 +08:00
on_change();
}
return false;
}
2021-05-10 02:32:27 +08:00
bool RadioboxBase::OnMouseEvent(Event event) {
2021-05-02 02:40:35 +08:00
if (!CaptureMouse(event))
return false;
2021-05-16 15:38:24 +08:00
for (int i = 0; i < int(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();
2021-05-10 02:32:27 +08:00
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.