diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-07-07 14:42:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-07-07 14:42:58 +0300 |
commit | c1eb6af06cb3453eea7a5242bc603af716c58990 (patch) | |
tree | e7af20a2bf90d07f35f43f33fedab8a2b1fb4aaf | |
parent | 94fdc870da3cfba82ac9b05b0e77489782244a76 (diff) | |
download | plus-c1eb6af06cb3453eea7a5242bc603af716c58990.tar.gz plus-c1eb6af06cb3453eea7a5242bc603af716c58990.tar.bz2 plus-c1eb6af06cb3453eea7a5242bc603af716c58990.tar.xz plus-c1eb6af06cb3453eea7a5242bc603af716c58990.zip |
extent tab to follow different resize policy.
-rw-r--r-- | src/gui/chatwindow.cpp | 1 | ||||
-rw-r--r-- | src/gui/widgets/tabbedarea.cpp | 15 | ||||
-rw-r--r-- | src/gui/widgets/tabbedarea.h | 4 |
3 files changed, 17 insertions, 3 deletions
diff --git a/src/gui/chatwindow.cpp b/src/gui/chatwindow.cpp index 078164518..fe6194b23 100644 --- a/src/gui/chatwindow.cpp +++ b/src/gui/chatwindow.cpp @@ -253,6 +253,7 @@ ChatWindow::ChatWindow(): mChatTabs->enableScrollButtons(true); mChatTabs->setFollowDownScroll(true); + mChatTabs->setResizeHeight(false); mChatInput->setActionEventId("chatinput"); mChatInput->addActionListener(this); diff --git a/src/gui/widgets/tabbedarea.cpp b/src/gui/widgets/tabbedarea.cpp index de88a3e50..3a9ded199 100644 --- a/src/gui/widgets/tabbedarea.cpp +++ b/src/gui/widgets/tabbedarea.cpp @@ -51,7 +51,8 @@ TabbedArea::TabbedArea(const Widget2 *const widget) : mEnableScrollButtons(false), mRightMargin(0), mFollowDownScroll(false), - mBlockSwitching(true) + mBlockSwitching(true), + mResizeHeight(true) { setFocusable(true); addKeyListener(this); @@ -478,8 +479,16 @@ void TabbedArea::adjustSize() const int frame2 = 2 * wFrameSize; w->setPosition(wFrameSize, wFrameSize); - w->setSize(mWidgetContainer->getWidth() - frame2, - mWidgetContainer->getHeight() - frame2); + if (mResizeHeight) + { + w->setSize(mWidgetContainer->getWidth() - frame2, + mWidgetContainer->getHeight() - frame2); + } + else + { + w->setSize(mWidgetContainer->getWidth() - frame2, + w->getHeight()); + } } } diff --git a/src/gui/widgets/tabbedarea.h b/src/gui/widgets/tabbedarea.h index 3301ad2a8..114d549ff 100644 --- a/src/gui/widgets/tabbedarea.h +++ b/src/gui/widgets/tabbedarea.h @@ -182,6 +182,9 @@ class TabbedArea final : public Widget2, void death(const gcn::Event &event); + void setResizeHeight(bool b) + { mResizeHeight = b; } + private: typedef std::vector <std::pair<Tab*, gcn::Widget*> > TabContainer; @@ -237,6 +240,7 @@ class TabbedArea final : public Widget2, int mRightMargin; bool mFollowDownScroll; bool mBlockSwitching; + bool mResizeHeight; }; #endif // GUI_WIDGETS_TABBEDAREA_H |