Lines Matching refs:nValue

273 		long nValue = (long) ( ( const SdrTextAniCountItem* )pItem )->GetValue();  in Reset()  local
274 aNumFldCount.SetValue( nValue ); in Reset()
275 if( nValue == 0 ) in Reset()
306 long nValue = (long) ( ( const SdrTextAniDelayItem* )pItem )->GetValue(); in Reset() local
307 aMtrFldDelay.SetValue( nValue ); in Reset()
308 if( nValue == 0 ) in Reset()
331 long nValue = (long) ( ( const SdrTextAniAmountItem* )pItem )->GetValue(); in Reset() local
332 if( nValue <= 0 ) in Reset()
335 nValue = -nValue; in Reset()
336 if( nValue == 0 ) in Reset()
337 nValue++; in Reset()
347 aMtrFldAmount.SetValue( nValue ); in Reset()
361 SetMetricValue( aMtrFldAmount, nValue, eUnit ); in Reset()
434 sal_Int64 nValue = 0; in FillItemSet() local
441 nValue = aNumFldCount.GetValue(); in FillItemSet()
446 rAttrs.Put( SdrTextAniCountItem( (sal_uInt16) nValue ) ); in FillItemSet()
455 sal_Int64 nValue = 0; in FillItemSet() local
462 nValue = aMtrFldDelay.GetValue(); in FillItemSet()
467 rAttrs.Put( SdrTextAniDelayItem( (sal_uInt16) nValue ) ); in FillItemSet()
476 sal_Int64 nValue = 0; in FillItemSet() local
479 nValue = aMtrFldAmount.GetValue(); in FillItemSet()
480 nValue = -nValue; in FillItemSet()
484 nValue = GetCoreValue( aMtrFldAmount, eUnit ); in FillItemSet()
486 rAttrs.Put( SdrTextAniAmountItem( (sal_Int16) nValue ) ); in FillItemSet()
685 sal_Int64 nValue = aMtrFldAmount.GetValue() / 10; in IMPL_LINK() local
697 aMtrFldAmount.SetValue( nValue ); in IMPL_LINK()
701 sal_Int64 nValue = aMtrFldAmount.GetValue() * 10; in IMPL_LINK() local
713 aMtrFldAmount.SetValue( nValue ); in IMPL_LINK()
741 void SvxTextAnimationPage::SelectDirection( SdrTextAniDirection nValue ) in SelectDirection() argument
743 aBtnUp.Check( nValue == SDRTEXTANI_UP ); in SelectDirection()
744 aBtnLeft.Check( nValue == SDRTEXTANI_LEFT ); in SelectDirection()
745 aBtnRight.Check( nValue == SDRTEXTANI_RIGHT ); in SelectDirection()
746 aBtnDown.Check( nValue == SDRTEXTANI_DOWN ); in SelectDirection()
757 sal_uInt16 nValue = 0; in GetSelectedDirection() local
760 nValue = SDRTEXTANI_UP; in GetSelectedDirection()
762 nValue = SDRTEXTANI_LEFT; in GetSelectedDirection()
764 nValue = SDRTEXTANI_RIGHT; in GetSelectedDirection()
766 nValue = SDRTEXTANI_DOWN; in GetSelectedDirection()
768 return( nValue ); in GetSelectedDirection()