mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 18:59:59 +08:00
81b428af5a
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.
59 lines
1.6 KiB
C++
59 lines
1.6 KiB
C++
#ifndef FTXUI_COMPONENT_RADIOBOX_HPP
|
|
#define FTXUI_COMPONENT_RADIOBOX_HPP
|
|
|
|
#include <functional> // for function
|
|
#include <string> // for wstring, allocator
|
|
#include <vector> // for vector
|
|
|
|
#include "ftxui/component/component.hpp" // for Component
|
|
#include "ftxui/component/component_base.hpp" // for ComponentBase
|
|
#include "ftxui/dom/elements.hpp" // for Element, Decorator, inverted, nothing
|
|
#include "ftxui/screen/box.hpp" // for Box
|
|
|
|
namespace ftxui {
|
|
struct Event;
|
|
|
|
/// @brief A list of selectable element. One and only one can be selected at
|
|
/// the same time.
|
|
/// @ingroup component
|
|
class RadioboxBase : public ComponentBase {
|
|
public:
|
|
// Access this interface from a Component
|
|
static RadioboxBase* From(Component component);
|
|
|
|
// Constructor.
|
|
RadioboxBase(const std::vector<std::wstring>* entries, int* selected);
|
|
~RadioboxBase() override = default;
|
|
|
|
int focused = 0;
|
|
|
|
std::wstring checked = L"◉ ";
|
|
std::wstring unchecked = L"○ ";
|
|
|
|
Decorator focused_style = inverted;
|
|
Decorator unfocused_style = nothing;
|
|
|
|
// State update callback.
|
|
std::function<void()> on_change = []() {};
|
|
|
|
// Component implementation.
|
|
Element Render() override;
|
|
bool OnEvent(Event) override;
|
|
|
|
private:
|
|
const std::vector<std::wstring>* const entries_;
|
|
int* const selected_;
|
|
|
|
bool OnMouseEvent(Event event);
|
|
int cursor_position = 0;
|
|
std::vector<Box> boxes_;
|
|
};
|
|
|
|
} // namespace ftxui
|
|
|
|
#endif /* end of include guard: FTXUI_COMPONENT_RADIOBOX_HPP */
|
|
|
|
// 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.
|