FTXUI/include/ftxui/component/checkbox.hpp

40 lines
853 B
C++
Raw Normal View History

2019-01-13 05:25:49 +08:00
#ifndef FTXUI_COMPONENT_CHECKBOX_HPP
#define FTXUI_COMPONENT_CHECKBOX_HPP
#include "ftxui/component/component.hpp"
#include <functional>
namespace ftxui {
class CheckBox : public Component {
public:
// Constructor.
CheckBox() = default;
~CheckBox() override = default;
bool state = false;
std::wstring label = L"label";
2019-01-19 05:41:33 +08:00
//std::wstring checked = L"[X] ";
//std::wstring unchecked = L"[ ] ";
2019-01-27 04:52:55 +08:00
std::wstring checked = L"";
2019-01-19 05:41:33 +08:00
std::wstring unchecked = L"";
2019-01-13 05:25:49 +08:00
2019-01-19 07:20:29 +08:00
Decorator focused_style = inverted;
Decorator unfocused_style = nothing;
2019-01-13 05:25:49 +08:00
// State update callback.
std::function<void()> on_change = [](){};
// 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 */