mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-26 20:47:05 +08:00
3b4ab618a3
In the past, FTXUI switched from std::string to std::wstring to support fullwidth characters. The reasons was that fullwidth characters can be stored inside a single wchar_t. Then FTXUI added support for combining characters. A single glygh doesn't even fit a wchar_t. Instead, a glyph can be arbitrary large. The usage of wstring doesn't really fit the new model and have several drawbacks: 1. It doesn't simplify the implementation of FTXUI, because of combining characters. 2. It reduces drawing performance by 2x. 3. It increase Screen's memory allocation by 2x. This patch converts FTXUI to use std::string internally. It now exposes std::string based API. The std::wstring API remains, but is now deprecated. Tests and examples haven't been update to show the breakage is limited. They will be updated in a second set of patches. Bug: https://github.com/ArthurSonzogni/FTXUI/issues/153 Co-authored-by: Tushar Maheshwari <tushar27192@gmail.com>
97 lines
3.1 KiB
C++
97 lines
3.1 KiB
C++
#ifndef FTXUI_COMPONENT_COMPONENT_OPTIONS_HPP
|
|
#define FTXUI_COMPONENT_COMPONENT_OPTIONS_HPP
|
|
|
|
#include <ftxui/dom/elements.hpp>
|
|
#include <ftxui/util/ref.hpp>
|
|
|
|
namespace ftxui {
|
|
|
|
/// @brief Option for the Menu component.
|
|
/// @ingroup component
|
|
struct MenuOption {
|
|
Decorator style_normal = nothing; ///< style.
|
|
Decorator style_focused = inverted; ///< Style when focused.
|
|
Decorator style_selected = bold; ///< Style when selected.
|
|
Decorator style_selected_focused =
|
|
Decorator(inverted) | bold; ///< Style when selected and focused.
|
|
|
|
/// Called when the selected entry changes.
|
|
std::function<void()> on_change = [] {};
|
|
/// Called when the user presses enter.
|
|
std::function<void()> on_enter = [] {};
|
|
|
|
Ref<int> focused_entry = 0;
|
|
};
|
|
|
|
/// @brief Option for the Button component.
|
|
/// @ingroup component
|
|
struct ButtonOption {
|
|
/// Whether to show a border around the button.
|
|
bool border = true;
|
|
};
|
|
|
|
/// @brief Option for the Checkbox component.
|
|
/// @ingroup component
|
|
struct CheckboxOption {
|
|
std::string style_checked = "▣ "; ///< Prefix for a "checked" state.
|
|
std::string style_unchecked = "☐ "; ///< Prefix for a "unchecked" state.
|
|
Decorator style_focused = inverted; ///< Decorator used when focused.
|
|
Decorator style_unfocused = nothing; ///< Decorator used when unfocused.
|
|
|
|
/// Called when the user change the state.
|
|
std::function<void()> on_change = []() {};
|
|
};
|
|
|
|
/// @brief Option for the Input component.
|
|
/// @ingroup component
|
|
struct InputOption {
|
|
/// Called when the content changes.
|
|
std::function<void()> on_change = [] {};
|
|
/// Called when the user presses enter.
|
|
std::function<void()> on_enter = [] {};
|
|
|
|
/// Obscure the input content using '*'.
|
|
bool password = false;
|
|
|
|
Ref<int> cursor_position = 0;
|
|
};
|
|
|
|
/// @brief Option for the Radiobox component.
|
|
/// @ingroup component
|
|
struct RadioboxOption {
|
|
std::string style_checked = "◉ "; ///< Prefix for a "checked" state.
|
|
std::string style_unchecked = "○ "; ///< Prefix for a "unchecked" state.
|
|
Decorator style_focused = inverted; ///< Decorator used when focused.
|
|
Decorator style_unfocused = nothing; ///< Decorator used when unfocused.
|
|
|
|
/// Called when the selected entry changes.
|
|
std::function<void()> on_change = []() {};
|
|
|
|
Ref<int> focused_entry = 0;
|
|
};
|
|
|
|
/// @brief Option for the Toggle component.
|
|
/// @ingroup component
|
|
struct ToggleOption {
|
|
Decorator style_normal = nothing; ///< style.
|
|
Decorator style_focused = inverted; ///< Style when focused.
|
|
Decorator style_selected = bold; ///< Style when selected.
|
|
Decorator style_selected_focused =
|
|
Decorator(inverted) | bold; ///< Style when selected and focused.
|
|
|
|
/// Called when the selected entry changes.
|
|
std::function<void()> on_change = [] {};
|
|
/// Called when the user presses enter.
|
|
std::function<void()> on_enter = [] {};
|
|
|
|
Ref<int> focused_entry = 0;
|
|
};
|
|
|
|
} // namespace ftxui
|
|
|
|
#endif /* end of include guard: FTXUI_COMPONENT_COMPONENT_OPTIONS_HPP */
|
|
|
|
// Copyright 2021 Arthur Sonzogni. All rights reserved.
|
|
// Use of this source code is governed by the MIT license that can be found in
|
|
// the LICENSE file.
|