FTXUI/include/ftxui/component/radiobox.hpp

44 lines
959 B
C++
Raw Normal View History

2020-04-20 03:00:37 +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.
2019-01-19 05:41:33 +08:00
#ifndef FTXUI_COMPONENT_RADIOBOX_HPP
#define FTXUI_COMPONENT_RADIOBOX_HPP
#include <functional>
#include "ftxui/component/component.hpp"
2019-01-19 05:41:33 +08:00
namespace ftxui {
class RadioBox : public Component {
public:
// Constructor.
RadioBox() = default;
~RadioBox() override = default;
int selected = 0;
int focused = 0;
std::vector<std::wstring> entries;
std::wstring checked = L"";
std::wstring unchecked = L"";
Decorator focused_style = inverted;
Decorator unfocused_style = nothing;
// State update callback.
std::function<void()> on_change = []() {};
2019-01-19 05:41:33 +08:00
// Component implementation.
Element Render() override;
bool OnEvent(Event) override;
private:
int cursor_position = 0;
};
} // namespace ftxui
#endif /* end of include guard: FTXUI_COMPONENT_RADIOBOX_HPP */