mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-23 11:17:06 +08:00
493e734680
1) Set clang-format macro indent. 2) Run clang-format on every files.
35 lines
700 B
C++
35 lines
700 B
C++
#ifndef FTXUI_COMPONENT_TOGGLE_H_
|
|
#define FTXUI_COMPONENT_TOGGLE_H_
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
|
|
#include "ftxui/component/component.hpp"
|
|
|
|
namespace ftxui {
|
|
|
|
class Toggle : public Component {
|
|
public:
|
|
// Constructor.
|
|
~Toggle() override = default;
|
|
|
|
// State.
|
|
int selected = 0;
|
|
std::vector<std::wstring> entries = {L"On", L"Off"};
|
|
|
|
Decorator focused_style = inverted;
|
|
Decorator selected_style = bold;
|
|
Decorator normal_style = dim;
|
|
|
|
// Callback.
|
|
std::function<void()> on_change = []() {};
|
|
|
|
// Component implementation.
|
|
Element Render() override;
|
|
bool OnEvent(Event) override;
|
|
};
|
|
|
|
} // namespace ftxui
|
|
|
|
#endif /* end of include guard: FTXUI_COMPONENT_TOGGLE_H_ */
|