summaryrefslogtreecommitdiff
path: root/svx/source/tbxctrls/linectrl.cxx
diff options
context:
space:
mode:
authorMaxim Monastirsky <momonasmon@gmail.com>2016-12-25 01:59:42 +0200
committerMaxim Monastirsky <momonasmon@gmail.com>2017-01-05 00:11:29 +0200
commit9e4ae869f45fdd1d6e9f268bb3d6a531e76cf752 (patch)
tree70c3e2a0f3385ae492d1c62c0644dfdb0d3101d7 /svx/source/tbxctrls/linectrl.cxx
parent697590be0903edbf23b35be7a9c48910d59b938b (diff)
Get rid of SvxLineEndWindow resizing
Change-Id: I0135f084f64b9709688f0f9205940baf193c5d83
Diffstat (limited to 'svx/source/tbxctrls/linectrl.cxx')
-rw-r--r--svx/source/tbxctrls/linectrl.cxx119
1 files changed, 10 insertions, 109 deletions
diff --git a/svx/source/tbxctrls/linectrl.cxx b/svx/source/tbxctrls/linectrl.cxx
index 3e7316647d66..298651435004 100644
--- a/svx/source/tbxctrls/linectrl.cxx
+++ b/svx/source/tbxctrls/linectrl.cxx
@@ -255,8 +255,6 @@ SvxLineEndWindow::SvxLineEndWindow(
aLineEndSet ( VclPtr<ValueSet>::Create(this, WinBits( WB_ITEMBORDER | WB_3DLOOK | WB_NO_DIRECTSELECT ) )),
nCols ( 2 ),
nLines ( 12 ),
- bPopupMode ( true ),
- mbInResize ( false ),
mxFrame ( rFrame )
{
SetText( rWndTitle );
@@ -404,79 +402,6 @@ void SvxLineEndWindow::FillValueSet()
}
}
-
-void SvxLineEndWindow::Resize()
-{
- // since we change the size inside this call, check if we
- // are called recursive
- if( !mbInResize )
- {
- mbInResize = true;
- if ( !IsRollUp() )
- {
- aLineEndSet->SetColCount( nCols );
- aLineEndSet->SetLineCount( nLines );
-
- SetSize();
-
- Size aSize = GetOutputSizePixel();
- aSize.Width() -= 4;
- aSize.Height() -= 4;
- aLineEndSet->SetPosSizePixel( Point( 2, 2 ), aSize );
- }
- //SfxPopupWindow::Resize();
- mbInResize = false;
- }
-}
-
-
-void SvxLineEndWindow::Resizing( Size& rNewSize )
-{
- Size aBitmapSize = aBmpSize; // -> Member
- aBitmapSize.Width() += 6;
- aBitmapSize.Height() += 6;
-
- Size aItemSize = aLineEndSet->CalcItemSizePixel( aBitmapSize ); // -> Member
- //Size aOldSize = GetOutputSizePixel(); // for width
-
- sal_uInt16 nItemCount = aLineEndSet->GetItemCount(); // -> Member
-
- // identify columns
- long nItemW = aItemSize.Width();
- long nW = rNewSize.Width();
- nCols = (sal_uInt16) std::max( ( (sal_uIntPtr)(( nW + nItemW ) / ( nItemW * 2 ) )),
- (sal_uIntPtr) 1L );
- nCols *= 2;
-
- // identify lines
- long nItemH = aItemSize.Height();
- long nH = rNewSize.Height();
- nLines = (sal_uInt16) std::max( ( ( nH + nItemH / 2 ) / nItemH ), 1L );
-
- sal_uInt16 nMaxCols = nItemCount / nLines;
- if( nItemCount % nLines )
- nMaxCols++;
- if( nCols > nMaxCols )
- nCols = nMaxCols;
- nW = nItemW * nCols;
-
- // No odd number of columns
- if( nCols % 2 )
- nCols--;
- nCols = std::max( nCols, (sal_uInt16) 2 );
-
- sal_uInt16 nMaxLines = nItemCount / nCols;
- if( nItemCount % nCols )
- nMaxLines++;
- if( nLines > nMaxLines )
- nLines = nMaxLines;
- nH = nItemH * nLines;
-
- rNewSize.Width() = nW;
- rNewSize.Height() = nH;
-}
-
-
void SvxLineEndWindow::StartSelection()
{
aLineEndSet->StartSelection();
@@ -496,54 +421,30 @@ void SvxLineEndWindow::statusChanged( const css::frame::FeatureStateEvent& rEven
aLineEndSet->Clear();
FillValueSet();
-
- Size aSize = GetOutputSizePixel();
- Resizing( aSize );
- Resize();
}
}
}
-
-void SvxLineEndWindow::PopupModeEnd()
-{
- if ( IsVisible() )
- {
- bPopupMode = false;
- SetSize();
- }
- SfxPopupWindow::PopupModeEnd();
-}
-
-
void SvxLineEndWindow::SetSize()
{
- //if( !bPopupMode )
- if( !IsInPopupMode() )
- {
- sal_uInt16 nItemCount = aLineEndSet->GetItemCount(); // -> Member
- sal_uInt16 nMaxLines = nItemCount / nCols; // -> Member ?
- if( nItemCount % nCols )
- nMaxLines++;
-
- WinBits nBits = aLineEndSet->GetStyle();
- if ( nLines == nMaxLines )
- nBits &= ~WB_VSCROLL;
- else
- nBits |= WB_VSCROLL;
- aLineEndSet->SetStyle( nBits );
- }
+ sal_uInt16 nItemCount = aLineEndSet->GetItemCount();
+ sal_uInt16 nMaxLines = nItemCount / nCols;
+
+ WinBits nBits = aLineEndSet->GetStyle();
+ if ( nLines == nMaxLines )
+ nBits &= ~WB_VSCROLL;
+ else
+ nBits |= WB_VSCROLL;
+ aLineEndSet->SetStyle( nBits );
Size aSize( aBmpSize );
aSize.Width() += 6;
aSize.Height() += 6;
aSize = aLineEndSet->CalcWindowSizePixel( aSize );
+ aLineEndSet->SetPosSizePixel( Point( 2, 2 ), aSize );
aSize.Width() += 4;
aSize.Height() += 4;
SetOutputSizePixel( aSize );
- aSize.Height() = aBmpSize.Height();
- aSize.Height() += 14;
- //SetMinOutputSizePixel( aSize );
}
void SvxLineEndWindow::GetFocus()