diff options
Diffstat (limited to 'src/gui/widgets/tabstrip.h')
-rw-r--r-- | src/gui/widgets/tabstrip.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/gui/widgets/tabstrip.h b/src/gui/widgets/tabstrip.h index 31877cb42..a041bad11 100644 --- a/src/gui/widgets/tabstrip.h +++ b/src/gui/widgets/tabstrip.h @@ -37,7 +37,8 @@ class TabStrip final : public WidgetGroup A_DELETE_COPY(TabStrip) - Widget *createWidget(const std::string &name) + Widget *createWidget(const std::string &name, + const bool pressed = false) const override final A_WARN_UNUSED; void action(const ActionEvent &event) override final; @@ -45,6 +46,12 @@ class TabStrip final : public WidgetGroup void nextTab(); void prevTab(); + + void setPressFirst(const bool press) + { mPressFirst = press; } + + protected: + bool mPressFirst; }; #endif // GUI_WIDGETS_TABSTRIP_H |