Lines Matching refs:aEdValue

54 		aEdValue        ( this, ScResId( ED_VALUE ) ),  in ScMetricInputDlg()
65 aEdValue. SetModifyHdl( LINK( this, ScMetricInputDlg, ModifyHdl ) ); in ScMetricInputDlg()
67 aEdValue.SetUnit ( eFUnit ); in ScMetricInputDlg()
68 aEdValue.SetDecimalDigits ( nDecimals ); in ScMetricInputDlg()
69 aEdValue.SetMax ( aEdValue.Normalize( nMaximum ), FUNIT_TWIP ); in ScMetricInputDlg()
70 aEdValue.SetMin ( aEdValue.Normalize( nMinimum ), FUNIT_TWIP ); in ScMetricInputDlg()
71 aEdValue.SetLast ( aEdValue.Normalize( nLast ), FUNIT_TWIP ); in ScMetricInputDlg()
72 aEdValue.SetFirst ( aEdValue.Normalize( nFirst ), FUNIT_TWIP ); in ScMetricInputDlg()
73 aEdValue.SetSpinSize ( aEdValue.Normalize( 1 ) / 10 ); in ScMetricInputDlg()
74 aEdValue.SetValue ( aEdValue.Normalize( nDefault ), FUNIT_TWIP ); in ScMetricInputDlg()
75 nDefaultValue = sal::static_int_cast<long>( aEdValue.GetValue() ); in ScMetricInputDlg()
76 aEdValue.SetValue ( aEdValue.Normalize( nCurrent ), FUNIT_TWIP ); in ScMetricInputDlg()
77 nCurrentValue = sal::static_int_cast<long>( aEdValue.GetValue() ); in ScMetricInputDlg()
112 return sal::static_int_cast<long>( aEdValue.Denormalize( aEdValue.GetValue( eUnit ) ) ); in GetInputValue()
131 aNewPos.Y() = aEdValue.GetPosPixel().Y(); in CalcPositions()
135 aEdValue.SetPosPixel( aNewPos ); in CalcPositions()
141 aNewPos.X() += aEdValue.GetSizePixel().Width(); in CalcPositions()
164 nCurrentValue = sal::static_int_cast<long>( aEdValue.GetValue() ); in IMPL_LINK()
165 aEdValue.SetValue( nDefaultValue ); in IMPL_LINK()
168 aEdValue.SetValue( nCurrentValue ); in IMPL_LINK()
176 aBtnDefVal.Check( nDefaultValue == aEdValue.GetValue() ); in IMPL_LINK_INLINE_START()