mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-05-06 09:13:48 +08:00
24 lines
577 B
C++
24 lines
577 B
C++
#ifndef FTXUI_COMPONENT_COMPONENT_OPTIONS_HPP
|
|
#define FTXUI_COMPONENT_COMPONENT_OPTIONS_HPP
|
|
|
|
namespace ftxui {
|
|
|
|
struct MenuOption {
|
|
Decorator normal_style = nothing;
|
|
Decorator focused_style = inverted;
|
|
Decorator selected_style = bold;
|
|
Decorator selected_focused_style = focused_style | selected_style;
|
|
|
|
// State update callback.
|
|
std::function<void()> on_change = []() {};
|
|
std::function<void()> on_enter = []() {};
|
|
};
|
|
|
|
struct ButtonOption {
|
|
bool border = true;
|
|
};
|
|
|
|
}; // namespace ftxui
|
|
|
|
#endif /* end of include guard: FTXUI_COMPONENT_COMPONENT_OPTIONS_HPP */
|