1
0
mirror of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git synced 2025-04-01 02:42:39 +08:00

Make visibleTabCount function consistent with hasVisibleTabs. Add a bit of documentation.

This commit is contained in:
Syarif Fakhri 2023-06-23 14:35:08 +08:00
parent b3fdbd47b3
commit 7de0834625
2 changed files with 4 additions and 4 deletions

View File

@ -321,7 +321,7 @@ int CAutoHideSideBar::visibleTabCount() const
int count = 0; int count = 0;
for (auto i = 0; i < tabCount(); i++) for (auto i = 0; i < tabCount(); i++)
{ {
if (tabAt(i)->isVisible()) if (tabAt(i)->isVisibleTo(parentWidget()))
{ {
count++; count++;
} }

View File

@ -135,14 +135,14 @@ public:
int tabCount() const; int tabCount() const;
/** /**
* Returns the number of visible tabs * Returns the number of visible tabs to its parent widget.
*/ */
int visibleTabCount() const; int visibleTabCount() const;
/** /**
* Returns true, if the sidebar contains visible tabs. * Returns true, if the sidebar contains visible tabs to its parent widget.
* The function returns as soon as it finds the first visible tab. * The function returns as soon as it finds the first visible tab.
* That means, if you just want to find out if theee are visible tabs * That means, if you just want to find out if there are visible tabs
* then this function is quicker than visibleTabCount() * then this function is quicker than visibleTabCount()
*/ */
bool hasVisibleTabs() const; bool hasVisibleTabs() const;