Lines Matching refs:rSet

61 void SetAlignmentState( SdrView* pSdrView, SfxItemSet& rSet )  in SetAlignmentState()  argument
95 rSet.Put( SfxInt32Item( SID_FONTWORK_ALIGNMENT, nAlignment ) ); in SetAlignmentState()
98 void SetCharacterSpacingState( SdrView* pSdrView, SfxItemSet& rSet ) in SetCharacterSpacingState() argument
119 rSet.Put( SfxInt32Item( SID_FONTWORK_CHARACTER_SPACING, nCharacterSpacing ) ); in SetCharacterSpacingState()
123 void SetKernCharacterPairsState( SdrView* pSdrView, SfxItemSet& rSet ) in SetKernCharacterPairsState() argument
139 rSet.Put( SfxBoolItem( SID_FONTWORK_KERN_CHARACTER_PAIRS, bChecked ) ); in SetKernCharacterPairsState()
142 void SetFontWorkShapeTypeState( SdrView* pSdrView, SfxItemSet& rSet ) in SetFontWorkShapeTypeState() argument
175 rSet.Put( SfxStringItem( SID_FONTWORK_SHAPE_TYPE, aFontWorkShapeType ) ); in SetFontWorkShapeTypeState()
578 void FontworkBar::getState( SdrView* pSdrView, SfxItemSet& rSet ) in getState() argument
588 if ( rSet.GetItemState( SID_FONTWORK_ALIGNMENT_FLOATER ) != SFX_ITEM_UNKNOWN ) in getState()
591 rSet.DisableItem( SID_FONTWORK_ALIGNMENT_FLOATER ); in getState()
593 if ( rSet.GetItemState( SID_FONTWORK_ALIGNMENT ) != SFX_ITEM_UNKNOWN ) in getState()
596 rSet.DisableItem( SID_FONTWORK_ALIGNMENT ); in getState()
598 SetAlignmentState( pSdrView, rSet ); in getState()
600 if ( rSet.GetItemState( SID_FONTWORK_CHARACTER_SPACING_FLOATER ) != SFX_ITEM_UNKNOWN ) in getState()
603 rSet.DisableItem( SID_FONTWORK_CHARACTER_SPACING_FLOATER ); in getState()
605 if ( rSet.GetItemState( SID_FONTWORK_CHARACTER_SPACING ) != SFX_ITEM_UNKNOWN ) in getState()
608 rSet.DisableItem( SID_FONTWORK_CHARACTER_SPACING ); in getState()
610 SetCharacterSpacingState( pSdrView, rSet ); in getState()
612 if ( rSet.GetItemState( SID_FONTWORK_KERN_CHARACTER_PAIRS ) != SFX_ITEM_UNKNOWN ) in getState()
615 rSet.DisableItem( SID_FONTWORK_KERN_CHARACTER_PAIRS ); in getState()
617 SetKernCharacterPairsState( pSdrView, rSet ); in getState()
619 if ( rSet.GetItemState( SID_FONTWORK_SAME_LETTER_HEIGHTS ) != SFX_ITEM_UNKNOWN ) in getState()
622 rSet.DisableItem( SID_FONTWORK_SAME_LETTER_HEIGHTS ); in getState()
624 if ( rSet.GetItemState( SID_FONTWORK_SHAPE_TYPE ) != SFX_ITEM_UNKNOWN ) in getState()
627 rSet.DisableItem( SID_FONTWORK_SHAPE_TYPE ); in getState()
629 SetFontWorkShapeTypeState( pSdrView, rSet ); in getState()