2019-01-19 05:41:33 +08:00
|
|
|
#ifndef FTXUI_COMPONENT_RADIOBOX_HPP
|
|
|
|
#define FTXUI_COMPONENT_RADIOBOX_HPP
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
2020-03-24 04:26:00 +08:00
|
|
|
#include "ftxui/component/component.hpp"
|
|
|
|
|
2019-01-19 05:41:33 +08:00
|
|
|
namespace ftxui {
|
|
|
|
|
2020-08-16 08:24:50 +08:00
|
|
|
/// @brief A list of selectable element. One and only one can be selected at
|
|
|
|
/// the same time.
|
|
|
|
/// @ingroup component
|
2019-01-19 05:41:33 +08:00
|
|
|
class RadioBox : public Component {
|
|
|
|
public:
|
|
|
|
// Constructor.
|
|
|
|
RadioBox() = default;
|
|
|
|
~RadioBox() override = default;
|
|
|
|
|
|
|
|
int selected = 0;
|
|
|
|
int focused = 0;
|
|
|
|
std::vector<std::wstring> entries;
|
|
|
|
|
2020-07-17 03:39:05 +08:00
|
|
|
#if defined(_WIN32)
|
|
|
|
std::wstring checked = L"(*) ";
|
|
|
|
std::wstring unchecked = L"( ) ";
|
|
|
|
#else
|
2019-01-19 05:41:33 +08:00
|
|
|
std::wstring checked = L"◉ ";
|
|
|
|
std::wstring unchecked = L"○ ";
|
2020-07-17 03:39:05 +08:00
|
|
|
#endif
|
2019-01-19 05:41:33 +08:00
|
|
|
|
|
|
|
Decorator focused_style = inverted;
|
|
|
|
Decorator unfocused_style = nothing;
|
|
|
|
|
|
|
|
// State update callback.
|
2020-03-24 04:26:00 +08:00
|
|
|
std::function<void()> on_change = []() {};
|
2019-01-19 05:41:33 +08:00
|
|
|
|
|
|
|
// Component implementation.
|
|
|
|
Element Render() override;
|
|
|
|
bool OnEvent(Event) override;
|
|
|
|
|
|
|
|
private:
|
2021-04-19 04:33:41 +08:00
|
|
|
bool OnMouseEvent(Event event);
|
2019-01-19 05:41:33 +08:00
|
|
|
int cursor_position = 0;
|
2021-04-19 04:33:41 +08:00
|
|
|
std::vector<Box> boxes_;
|
2019-01-19 05:41:33 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ftxui
|
|
|
|
|
|
|
|
#endif /* end of include guard: FTXUI_COMPONENT_RADIOBOX_HPP */
|
2020-08-16 06:24:18 +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.
|