diff --git a/src/AutoHideSideBar.cpp b/src/AutoHideSideBar.cpp index c64b079..6e95007 100644 --- a/src/AutoHideSideBar.cpp +++ b/src/AutoHideSideBar.cpp @@ -127,27 +127,6 @@ void AutoHideSideBarPrivate::handleViewportEvent(QEvent* e) } break; - case QEvent::Resize: - if (_this->tabCount()) - { - auto ev = static_cast(e); - auto Tab = _this->tabAt(0); - int Size = isHorizontal() ? ev->size().height() : ev->size().width(); - int TabSize = isHorizontal() ? Tab->size().height() : Tab->size().width(); - // If the size of the side bar is less than the size of the first tab - // then there are no visible tabs in this side bar. This check will - // fail if someone will force a very big border via CSS!! - if (Size < TabSize) - { - _this->hide(); - } - } - else - { - _this->hide(); - } - break; - default: break; } @@ -288,14 +267,18 @@ void CAutoHideSideBar::removeTab(CAutoHideTab* SideTab) //============================================================================ bool CAutoHideSideBar::eventFilter(QObject *watched, QEvent *event) { - if (event->type() != QEvent::ShowToParent) + // As soon as a tab is hidden, we need to check if the side tab should be hidden + auto Tab = qobject_cast(watched); + if (Tab && event->type() == QEvent::Hide) { - return false; + if (visibleTabCount() == 0) + { + hide(); + } } // As soon as on tab is shown, we need to show the side tab bar - auto Tab = qobject_cast(watched); - if (Tab) + if (Tab && event->type() == QEvent::ShowToParent) { show(); } @@ -323,6 +306,21 @@ int CAutoHideSideBar::tabCount() const } +//============================================================================ +int CAutoHideSideBar::visibleTabCount() const +{ + int count = 0; + for (auto i = 0; i < tabCount(); i++) + { + if (tabAt(i)->isVisible()) + { + count++; + } + } + return count; +} + + //============================================================================ SideBarLocation CAutoHideSideBar::sideBarLocation() const { diff --git a/src/AutoHideSideBar.h b/src/AutoHideSideBar.h index 3575357..6daaf9c 100644 --- a/src/AutoHideSideBar.h +++ b/src/AutoHideSideBar.h @@ -134,6 +134,11 @@ public: */ int tabCount() const; + /* + * Gets the count of visible tab widgets + */ + int visibleTabCount() const; + /** * Getter for side tab bar area property */