Home
last modified time | relevance | path

Searched refs:getTypedControlWindow (Results 1 – 4 of 4) sorted by relevance

/trunk/main/extensions/source/propctrlr/
H A Dstandardcontrol.cxx84 getTypedControlWindow()->SetStrictFormat( sal_True ); in OTimeControl()
85 getTypedControlWindow()->SetFormat( TIMEF_SEC ); in OTimeControl()
86 getTypedControlWindow()->EnableEmptyFieldValue( sal_True ); in OTimeControl()
95 getTypedControlWindow()->SetText( String() ); in setValue()
96 getTypedControlWindow()->SetEmptyTime(); in setValue()
101 getTypedControlWindow()->SetTime( aTime ); in setValue()
109 if ( getTypedControlWindow()->GetText().Len()>0 ) in getValue()
111 ::Time aTime( getTypedControlWindow()->GetTime() ); in getValue()
131 WindowType* pControlWindow = getTypedControlWindow(); in ODateControl()
149 getTypedControlWindow()->SetText( String() ); in setValue()
[all …]
H A Dusercontrol.cxx112 getTypedControlWindow()->SetFormatKey( nFormatKey ); in setValue()
114 SvNumberFormatter* pNF = getTypedControlWindow()->GetFormatter(); in setValue()
120 getTypedControlWindow()->SetText( String( PcrRes( RID_STR_TEXT_FORMAT ) ) ); in setValue()
122getTypedControlWindow()->SetValue( pEntry ? getPreviewValue( *pEntry ) : 1234.56789 ); in setValue()
125 getTypedControlWindow()->SetText( String() ); in setValue()
167 if ( getTypedControlWindow()->GetText().Len() ) in getValue()
168 aPropValue <<= (sal_Int32)getTypedControlWindow()->GetFormatKey(); in getValue()
188 getTypedControlWindow()->TreatAsNumber(sal_True); in OFormattedNumericControl()
190 m_nLastDecimalDigits = getTypedControlWindow()->GetDecimalDigits(); in OFormattedNumericControl()
204 getTypedControlWindow()->SetValue( nValue ); in setValue()
[all …]
H A Dusercontrol.hxx76 getTypedControlWindow()->SetFormatSupplier( _pSupplier ); in SetFormatSupplier()
120 …void SetDecimalDigits(sal_uInt16 nPrecision) { getTypedControlWindow()->SetDecimalDigits(nPrecisio… in SetDecimalDigits()
121 void SetDefaultValue(double dDef) { getTypedControlWindow()->SetDefaultValue(dDef); } in SetDefaultValue()
122 … void EnableEmptyField(sal_Bool bEnable) { getTypedControlWindow()->EnableEmptyField(bEnable); } in EnableEmptyField()
123 … void SetThousandsSep(sal_Bool bEnable) { getTypedControlWindow()->SetThousandsSep(bEnable); } in SetThousandsSep()
H A Dcommoncontrol.hxx214 …WindowType* getTypedControlWindow() { return static_cast< WindowType* > ( m_aImplContro… in getTypedControlWindow() function in pcr::CommonBehaviourControl
215 …const WindowType* getTypedControlWindow() const { return static_cast< const WindowType* >( m_aImpl… in getTypedControlWindow() function in pcr::CommonBehaviourControl
253 WindowType* pControlWindow( getTypedControlWindow() ); in CommonBehaviourControl()