fdo#61794 Allow greater value in LimitBox

Increase the width of LimitBox
*on toolbar: 6 digits
*in dialog: 10 digits
Set maximum value of LimitBox to the max value of Int32

Change-Id: I6fcf0270b474eb46a29ff98ade9cd7ee8ba637f5
This commit is contained in:
Zolnai Tamás 2013-03-09 11:41:54 +01:00
parent a16c17b472
commit 4c52c8bd73
3 changed files with 6 additions and 5 deletions

View file

@ -42,7 +42,9 @@ LimitBox::LimitBox( Window* pParent, WinBits nStyle )
SetShowTrailingZeros( sal_False );
SetDecimalDigits( 0 );
SetMin( -1 );
SetMax( 9999 );
///Use the maximum value of Int32
SetMax( 2147483647 );
LoadDefaultLimits();
Size aSize(
@ -100,8 +102,7 @@ void LimitBox::ReformatAll()
Size LimitBox::GetOptimalSize() const
{
Size aSize = NumericBox::GetOptimalSize();
return Size( aSize.Width() + 20, aSize.Height());
return CalcSize(10,1);
}
///Initialize entries

View file

@ -193,7 +193,7 @@ uno::Reference< awt::XWindow > SAL_CALL LimitBoxController::createItemWindow(
{
SolarMutexGuard aSolarMutexGuard;
m_pLimitBox = new LimitBoxImpl(pParent, this);
m_pLimitBox->SetSizePixel(m_pLimitBox->GetOptimalSize());
m_pLimitBox->SetSizePixel(m_pLimitBox->CalcSize(6,1));
xItemWindow = VCLUnoHelper::GetInterface( m_pLimitBox );
}

View file

@ -168,7 +168,7 @@
<object class="GtkGrid" id="grid3">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="column_spacing">12</property>
<property name="column_spacing">24</property>
<child>
<object class="GtkLabel" id="limit-label">
<property name="visible">True</property>