2019-01-12 22:25:49 +01:00
|
|
|
#ifndef FTXUI_COMPONENT_CHECKBOX_HPP
|
|
|
|
|
#define FTXUI_COMPONENT_CHECKBOX_HPP
|
|
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
|
|
2020-03-23 21:26:00 +01:00
|
|
|
#include "ftxui/component/component.hpp"
|
|
|
|
|
|
2019-01-12 22:25:49 +01:00
|
|
|
namespace ftxui {
|
|
|
|
|
|
|
|
|
|
class CheckBox : public Component {
|
|
|
|
|
public:
|
|
|
|
|
// Constructor.
|
|
|
|
|
CheckBox() = default;
|
|
|
|
|
~CheckBox() override = default;
|
|
|
|
|
|
|
|
|
|
bool state = false;
|
|
|
|
|
std::wstring label = L"label";
|
|
|
|
|
|
2020-03-23 21:26:00 +01:00
|
|
|
// std::wstring checked = L"[X] ";
|
|
|
|
|
// std::wstring unchecked = L"[ ] ";
|
2019-01-26 21:52:55 +01:00
|
|
|
std::wstring checked = L"▣ ";
|
2019-01-18 22:41:33 +01:00
|
|
|
std::wstring unchecked = L"☐ ";
|
2019-01-12 22:25:49 +01:00
|
|
|
|
2019-01-19 00:20:29 +01:00
|
|
|
Decorator focused_style = inverted;
|
|
|
|
|
Decorator unfocused_style = nothing;
|
|
|
|
|
|
2019-01-12 22:25:49 +01:00
|
|
|
// State update callback.
|
2020-03-23 21:26:00 +01:00
|
|
|
std::function<void()> on_change = []() {};
|
2019-01-12 22:25:49 +01:00
|
|
|
|
|
|
|
|
// Component implementation.
|
|
|
|
|
Element Render() override;
|
|
|
|
|
bool OnEvent(Event) override;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
int cursor_position = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace ftxui
|
|
|
|
|
|
|
|
|
|
#endif /* end of include guard: FTXUI_COMPONENT_CHECKBOX_HPP */
|