diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-11-24 20:29:29 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-01-21 14:51:30 +0100 |
commit | 586fac8e8daa7665302b075f900d8d2df90716f9 (patch) | |
tree | bfb02ad2e88d6e6b3e6bd013853a0792de951849 /plugingui/stackedwidget.h | |
parent | 8976d1106ac40e74b7bdc4d0401003126cee53d8 (diff) |
Added TabWidget.
Diffstat (limited to 'plugingui/stackedwidget.h')
-rw-r--r-- | plugingui/stackedwidget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugingui/stackedwidget.h b/plugingui/stackedwidget.h index 903aa17..13d764b 100644 --- a/plugingui/stackedwidget.h +++ b/plugingui/stackedwidget.h @@ -62,6 +62,10 @@ public: Notifier<Widget*> currentChanged; private: + //! Callback for Widget::sizeChangeNotifier + void sizeChanged(int width, int height); + +private: Widget* currentWidget{nullptr}; std::list<Widget*> widgets; }; |