diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-01-31 02:21:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-01-31 02:21:58 +0300 |
commit | 86c823db97e968a98502ecc5757cd1f37acb57b0 (patch) | |
tree | 5463084e41a54560998bc88c344efdd28044b8df /src/gui/setup.h | |
parent | c293b93a9383e61988f2a4a3c59e4aac798f2325 (diff) | |
download | plus-86c823db97e968a98502ecc5757cd1f37acb57b0.tar.gz plus-86c823db97e968a98502ecc5757cd1f37acb57b0.tar.bz2 plus-86c823db97e968a98502ecc5757cd1f37acb57b0.tar.xz plus-86c823db97e968a98502ecc5757cd1f37acb57b0.zip |
Allow resize setup window buttons and tabs panel.
Diffstat (limited to 'src/gui/setup.h')
-rw-r--r-- | src/gui/setup.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/setup.h b/src/gui/setup.h index 69ab79970..860bd5a33 100644 --- a/src/gui/setup.h +++ b/src/gui/setup.h @@ -78,9 +78,12 @@ class Setup final : public Window, public gcn::ActionListener void setVisible(bool visible) override; + void widgetResized(const gcn::Event &event) override; + private: std::list<SetupTab*> mTabs; std::list<Window*> mWindowsToReset; + std::vector<Button*> mButtons; Button *mResetWindows; TabbedArea *mPanel; }; |