Lines Matching refs:rAttrs

163 void __EXPORT SvxTextAttrPage::Reset( const SfxItemSet& rAttrs )  in Reset()  argument
165 SfxItemPool* pPool = rAttrs.GetPool(); in Reset()
170 const SfxPoolItem* pItem = GetItem( rAttrs, SDRATTR_TEXT_LEFTDIST ); in Reset()
184 pItem = GetItem( rAttrs, SDRATTR_TEXT_RIGHTDIST ); in Reset()
197 pItem = GetItem( rAttrs, SDRATTR_TEXT_UPPERDIST ); in Reset()
210 pItem = GetItem( rAttrs, SDRATTR_TEXT_LOWERDIST ); in Reset()
223 if ( rAttrs.GetItemState( SDRATTR_TEXT_AUTOGROWHEIGHT ) != SFX_ITEM_DONTCARE ) in Reset()
225 …aTsbAutoGrowHeight.SetState( ( ( const SdrTextAutoGrowHeightItem& )rAttrs.Get( SDRATTR_TEXT_AUTOGR… in Reset()
234 if ( rAttrs.GetItemState( SDRATTR_TEXT_AUTOGROWWIDTH ) != SFX_ITEM_DONTCARE ) in Reset()
236 …aTsbAutoGrowWidth.SetState( ( ( const SdrTextAutoGrowWidthItem& )rAttrs.Get( SDRATTR_TEXT_AUTOGROW… in Reset()
245 if ( rAttrs.GetItemState( SDRATTR_TEXT_AUTOGROWSIZE ) != SFX_ITEM_DONTCARE ) in Reset()
247 …aTsbAutoGrowSize.SetState( ( ( const SdrTextAutoGrowHeightItem& )rAttrs.Get( SDRATTR_TEXT_AUTOGROW… in Reset()
256 if ( rAttrs.GetItemState( SDRATTR_TEXT_WORDWRAP ) != SFX_ITEM_DONTCARE ) in Reset()
258 aTsbWordWrapText.SetState( ( ( const SdrTextWordWrapItem& )rAttrs.Get( SDRATTR_TEXT_WORDWRAP ) ). in Reset()
269 SfxItemState eVState = rAttrs.GetItemState( SDRATTR_TEXT_VERTADJUST ); in Reset()
270 SfxItemState eHState = rAttrs.GetItemState( SDRATTR_TEXT_HORZADJUST ); in Reset()
275 …SdrTextVertAdjust eTVA = (SdrTextVertAdjust)((const SdrTextVertAdjustItem&)rAttrs.Get(SDRATTR_TEXT… in Reset()
276 …SdrTextHorzAdjust eTHA = (SdrTextHorzAdjust)((const SdrTextHorzAdjustItem&)rAttrs.Get(SDRATTR_TEXT… in Reset()
348 if ( rAttrs.GetItemState( SDRATTR_TEXT_FITTOSIZE ) != SFX_ITEM_DONTCARE ) in Reset()
351 ( ( const SdrTextFitToSizeTypeItem& )rAttrs.Get( SDRATTR_TEXT_FITTOSIZE ) ).GetValue(); in Reset()
360 if( rAttrs.GetItemState( SDRATTR_TEXT_CONTOURFRAME ) != SFX_ITEM_DONTCARE ) in Reset()
362 …sal_Bool bContour = ( ( const SdrTextContourFrameItem& )rAttrs.Get( SDRATTR_TEXT_CONTOURFRAME ) ).… in Reset()
379 sal_Bool SvxTextAttrPage::FillItemSet( SfxItemSet& rAttrs) in FillItemSet() argument
381 SfxItemPool* pPool = rAttrs.GetPool(); in FillItemSet()
391 rAttrs.Put( SdrTextLeftDistItem( nValue ) ); in FillItemSet()
397 rAttrs.Put( SdrTextRightDistItem( nValue ) ); in FillItemSet()
403 rAttrs.Put( SdrTextUpperDistItem( nValue ) ); in FillItemSet()
409 rAttrs.Put( SdrTextLowerDistItem( nValue ) ); in FillItemSet()
415 rAttrs.Put( SdrTextAutoGrowHeightItem( (sal_Bool) STATE_CHECK == eState ) ); in FillItemSet()
421 rAttrs.Put( SdrTextAutoGrowWidthItem( (sal_Bool) STATE_CHECK == eState ) ); in FillItemSet()
427 rAttrs.Put( SdrTextAutoGrowHeightItem( (sal_Bool) STATE_CHECK == eState ) ); in FillItemSet()
433 rAttrs.Put( SdrTextWordWrapItem( (sal_Bool) STATE_CHECK == eState ) ); in FillItemSet()
440 rAttrs.Put( SdrTextContourFrameItem( (sal_Bool) STATE_CHECK == eState ) ); in FillItemSet()
455 rAttrs.Put( SdrTextFitToSizeTypeItem( eFTS ) ); in FillItemSet()
504 rAttrs.Put( SdrTextVertAdjustItem( eTVA ) ); in FillItemSet()
507 rAttrs.Put( SdrTextVertAdjustItem( eTVA ) ); in FillItemSet()
514 rAttrs.Put( SdrTextHorzAdjustItem( eTHA ) ); in FillItemSet()
517 rAttrs.Put( SdrTextHorzAdjustItem( eTHA ) ); in FillItemSet()
586 const SfxItemSet& rAttrs ) in Create() argument
588 return( new SvxTextAttrPage( pWindow, rAttrs ) ); in Create()