mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-28 16:29:34 +08:00
Add option for Button.
This commit is contained in:

committed by
Arthur Sonzogni

parent
cd84b187b3
commit
359100ca73
@@ -21,7 +21,9 @@ class ButtonBase : public ComponentBase {
|
||||
static ButtonBase* From(Component);
|
||||
|
||||
// Constructor.
|
||||
ButtonBase(ConstStringRef label, std::function<void()> on_click, bool border);
|
||||
ButtonBase(ConstStringRef label,
|
||||
std::function<void()> on_click,
|
||||
ConstRef<ButtonOption> option);
|
||||
~ButtonBase() override = default;
|
||||
|
||||
// Component implementation.
|
||||
@@ -31,8 +33,8 @@ class ButtonBase : public ComponentBase {
|
||||
private:
|
||||
ConstStringRef label_;
|
||||
std::function<void()> on_click_;
|
||||
bool border_;
|
||||
Box box_;
|
||||
ConstRef<ButtonOption> option_;
|
||||
};
|
||||
|
||||
} // namespace ftxui
|
||||
|
Reference in New Issue
Block a user