summaryrefslogtreecommitdiff
path: root/vcl/source/control
diff options
context:
space:
mode:
authorSzymon Kłos <szymon.klos@collabora.com>2017-10-01 20:48:16 +0200
committerSzymon Kłos <szymon.klos@collabora.com>2017-10-12 19:44:47 +0200
commit4454feb360cc0c832adc21a38e21074d00baa456 (patch)
treefaf46114608d23ea8ba796f17c36e1dc0aeff518 /vcl/source/control
parent5352dfbbe22b59983e1b91366908724138b9783a (diff)
Notebookbar: allow only one tab line
Change-Id: I5f671bdc34e5852af06c99db93e859e8cf837c0d Reviewed-on: https://gerrit.libreoffice.org/43009 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Diffstat (limited to 'vcl/source/control')
-rw-r--r--vcl/source/control/tabctrl.cxx123
1 files changed, 20 insertions, 103 deletions
diff --git a/vcl/source/control/tabctrl.cxx b/vcl/source/control/tabctrl.cxx
index 27d6ffee522e..bcc767b62ce8 100644
--- a/vcl/source/control/tabctrl.cxx
+++ b/vcl/source/control/tabctrl.cxx
@@ -2355,6 +2355,7 @@ bool NotebookbarTabControlBase::ImplPlaceTabs( long nWidth )
long nMaxWidth = nWidth - HAMBURGER_DIM;
long nShortcutsWidth = m_pShortcuts != nullptr ? m_pShortcuts->GetSizePixel().getWidth() + 1 : 0;
+ long nFullWidth = nShortcutsWidth;
const long nOffsetX = 2 + GetItemsOffset().X() + nShortcutsWidth;
const long nOffsetY = 2 + GetItemsOffset().Y();
@@ -2371,7 +2372,13 @@ bool NotebookbarTabControlBase::ImplPlaceTabs( long nWidth )
{
long aSize = ImplGetItemSize( &(*it), nMaxWidth ).getWidth();
if( !it->maText.isEmpty() && aSize < 100)
+ {
+ nFullWidth += 100;
aSize = 100;
+ }
+ else
+ nFullWidth += aSize;
+
aWidths.push_back(aSize);
}
else
@@ -2388,13 +2395,8 @@ bool NotebookbarTabControlBase::ImplPlaceTabs( long nWidth )
long nX = nOffsetX;
long nY = nOffsetY;
- sal_uInt16 nLines = 0;
- sal_uInt16 nCurLine = 0;
-
long nLineWidthAry[100];
- sal_uInt16 nLinePosAry[101];
nLineWidthAry[0] = 0;
- nLinePosAry[0] = 0;
size_t nIndex = 0;
sal_uInt16 nPos = 0;
@@ -2404,25 +2406,6 @@ bool NotebookbarTabControlBase::ImplPlaceTabs( long nWidth )
{
Size aSize = ImplGetItemSize( &(*it), nMaxWidth );
- bool bNewLine = false;
- if (!aBreakIndexes.empty() && nIndex > aBreakIndexes.front())
- {
- aBreakIndexes.pop_front();
- bNewLine = true;
- }
-
- if ( bNewLine && (nWidth > 2+nOffsetX) )
- {
- if ( nLines == 99 )
- break;
-
- nX = nOffsetX;
- nY += aSize.Height();
- nLines++;
- nLineWidthAry[nLines] = 0;
- nLinePosAry[nLines] = nPos;
- }
-
if ( !it->mbEnabled )
{
nPos++;
@@ -2430,7 +2413,7 @@ bool NotebookbarTabControlBase::ImplPlaceTabs( long nWidth )
}
// set minimum tab size
- if( !it->maText.isEmpty() && aSize.getWidth() < 100)
+ if( nFullWidth < nMaxWidth && !it->maText.isEmpty() && aSize.getWidth() < 100)
aSize.Width() = 100;
if( !it->maText.isEmpty() && aSize.getHeight() < 28 )
@@ -2441,95 +2424,29 @@ bool NotebookbarTabControlBase::ImplPlaceTabs( long nWidth )
mbSmallInvalidate = false;
it->maRect = aNewRect;
- it->mnLine = nLines;
+ it->mnLine = 0;
it->mbFullVisible = true;
- nLineWidthAry[nLines] += aSize.Width();
+ nLineWidthAry[0] += aSize.Width();
nX += aSize.Width();
- if ( it->mnId == mnCurPageId )
- nCurLine = nLines;
-
nPos++;
}
- if ( nLines )
- { // two or more lines
- long nLineHeightAry[100];
- long nIH = mpTabCtrlData->maItemList[0].maRect.Bottom()-2;
-
- for ( sal_uInt16 i = 0; i < nLines+1; i++ )
- {
- if ( i <= nCurLine )
- nLineHeightAry[i] = nIH*(nLines-(nCurLine-i)) + GetItemsOffset().Y();
- else
- nLineHeightAry[i] = nIH*(i-nCurLine-1) + GetItemsOffset().Y();
- }
-
- nLinePosAry[nLines+1] = (sal_uInt16)mpTabCtrlData->maItemList.size();
-
- long nDX = 0;
- long nModDX = 0;
- long nIDX = 0;
-
- sal_uInt16 i = 0;
- sal_uInt16 n = 0;
+ // only one line
+ if(ImplGetSVData()->maNWFData.mbCenteredTabs)
+ {
+ int nRightSpace = nMaxWidth;//space left on the right by the tabs
for( std::vector< ImplTabItem >::iterator it = mpTabCtrlData->maItemList.begin();
- it != mpTabCtrlData->maItemList.end(); ++it )
+ it != mpTabCtrlData->maItemList.end(); ++it )
{
- if ( i == nLinePosAry[n] )
- {
- if ( n == nLines+1 )
- break;
-
- nIDX = 0;
- if( nLinePosAry[n+1]-i > 0 )
- {
- long nAvailableWidth = nWidth - nOffsetX - nLineWidthAry[n] - HAMBURGER_DIM;
- nDX = nAvailableWidth / ( nLinePosAry[n+1] - i );
- nModDX = nAvailableWidth % ( nLinePosAry[n+1] - i );
- }
- else
- {
- // FIXME: this is a case of tabctrl way too small
- nDX = 0;
- nModDX = 0;
- }
- n++;
- }
-
- it->maRect.Left() += nIDX;
- it->maRect.Right() += nIDX + nDX;
- it->maRect.Top() = nLineHeightAry[n-1];
- it->maRect.Bottom() = nLineHeightAry[n-1] + nIH;
- nIDX += nDX;
-
- if ( nModDX )
- {
- nIDX++;
- it->maRect.Right()++;
- nModDX--;
- }
-
- i++;
+ nRightSpace -= it->maRect.Right()-it->maRect.Left();
}
- }
- else
- { // only one line
- if(ImplGetSVData()->maNWFData.mbCenteredTabs)
+ for( std::vector< ImplTabItem >::iterator it = mpTabCtrlData->maItemList.begin();
+ it != mpTabCtrlData->maItemList.end(); ++it )
{
- int nRightSpace = nMaxWidth;//space left on the right by the tabs
- for( std::vector< ImplTabItem >::iterator it = mpTabCtrlData->maItemList.begin();
- it != mpTabCtrlData->maItemList.end(); ++it )
- {
- nRightSpace -= it->maRect.Right()-it->maRect.Left();
- }
- for( std::vector< ImplTabItem >::iterator it = mpTabCtrlData->maItemList.begin();
- it != mpTabCtrlData->maItemList.end(); ++it )
- {
- it->maRect.Left() += nRightSpace / 2;
- it->maRect.Right() += nRightSpace / 2;
- }
+ it->maRect.Left() += nRightSpace / 2;
+ it->maRect.Right() += nRightSpace / 2;
}
}