FTXUI/include/ftxui/component/toggle.hpp

35 lines
700 B
C++
Raw Normal View History

#ifndef FTXUI_COMPONENT_TOGGLE_H_
#define FTXUI_COMPONENT_TOGGLE_H_
#include <functional>
2019-01-03 07:35:59 +08:00
#include <string>
#include "ftxui/component/component.hpp"
namespace ftxui {
class Toggle : public Component {
public:
// Constructor.
2019-01-13 01:24:46 +08:00
~Toggle() override = default;
// State.
2019-01-20 05:06:05 +08:00
int selected = 0;
2019-01-13 05:25:49 +08:00
std::vector<std::wstring> entries = {L"On", L"Off"};
2019-01-20 05:06:05 +08:00
Decorator focused_style = inverted;
Decorator selected_style = bold;
Decorator normal_style = dim;
// Callback.
std::function<void()> on_change = []() {};
// Component implementation.
Element Render() override;
2018-10-19 04:58:38 +08:00
bool OnEvent(Event) override;
};
} // namespace ftxui
#endif /* end of include guard: FTXUI_COMPONENT_TOGGLE_H_ */