Lines Matching refs:_nAttributeId

80     AttributeHandler::AttributeHandler( AttributeId _nAttributeId, WhichId _nWhichId )  in AttributeHandler()  argument
81 :m_nAttribute( _nAttributeId ) in AttributeHandler()
148 static WhichId lcl_implGetWhich( const SfxItemPool& _rPool, AttributeId _nAttributeId ) in lcl_implGetWhich() argument
151 switch ( _nAttributeId ) in lcl_implGetWhich()
160 nWhich = _rPool.GetWhich( (SfxSlotId)_nAttributeId ); in lcl_implGetWhich()
166 …ttributeHandler > AttributeHandlerFactory::getHandlerFor( AttributeId _nAttributeId, const SfxItem… in getHandlerFor() argument
169 switch ( _nAttributeId ) in getHandlerFor()
175 pReturn = new ParaAlignmentHandler( _nAttributeId ); in getHandlerFor()
181 pReturn = new LineSpacingHandler( _nAttributeId ); in getHandlerFor()
186 pReturn = new EscapementHandler( _nAttributeId ); in getHandlerFor()
193 …pReturn = new FontSizeHandler( _nAttributeId, lcl_implGetWhich( _rEditEnginePool, _nAttributeId ) … in getHandlerFor()
198 pReturn = new ParagraphDirectionHandler( _nAttributeId ); in getHandlerFor()
204 …pReturn = new BooleanHandler( _nAttributeId, lcl_implGetWhich( _rEditEnginePool, _nAttributeId ) ); in getHandlerFor()
208 …pReturn = new SlotHandler( (SfxSlotId)_nAttributeId, lcl_implGetWhich( _rEditEnginePool, _nAttribu… in getHandlerFor()
220 ParaAlignmentHandler::ParaAlignmentHandler( AttributeId _nAttributeId ) in ParaAlignmentHandler() argument
221 :AttributeHandler( _nAttributeId, EE_PARA_JUST ) in ParaAlignmentHandler()
256 LineSpacingHandler::LineSpacingHandler( AttributeId _nAttributeId ) in LineSpacingHandler() argument
257 :AttributeHandler( _nAttributeId, EE_PARA_SBL ) in LineSpacingHandler()
299 EscapementHandler::EscapementHandler( AttributeId _nAttributeId ) in EscapementHandler() argument
300 :AttributeHandler( _nAttributeId, EE_CHAR_ESCAPEMENT ) in EscapementHandler()
336 SlotHandler::SlotHandler( AttributeId _nAttributeId, WhichId _nWhichId ) in SlotHandler() argument
337 :AttributeHandler( _nAttributeId, _nWhichId ) in SlotHandler()
340 m_bScriptDependent = ( SID_ATTR_CHAR_WEIGHT == _nAttributeId ) in SlotHandler()
341 || ( SID_ATTR_CHAR_POSTURE == _nAttributeId ) in SlotHandler()
342 || ( SID_ATTR_CHAR_FONT == _nAttributeId ); in SlotHandler()
379 FontSizeHandler::FontSizeHandler( AttributeId _nAttributeId, WhichId _nWhichId ) in FontSizeHandler() argument
380 :AttributeHandler( _nAttributeId, _nWhichId ) in FontSizeHandler()
382 …OSL_ENSURE( ( _nAttributeId == SID_ATTR_CHAR_FONTHEIGHT ) || ( _nAttributeId == SID_ATTR_CHAR_CTL_… in FontSizeHandler()
383 …|| ( _nAttributeId == SID_ATTR_CHAR_CJK_FONTHEIGHT ) || ( _nAttributeId == SID_ATTR_CHAR_LATIN_FON… in FontSizeHandler()
450 ParagraphDirectionHandler::ParagraphDirectionHandler( AttributeId _nAttributeId ) in ParagraphDirectionHandler() argument
451 :AttributeHandler( _nAttributeId, EE_PARA_WRITINGDIR ) in ParagraphDirectionHandler()
498 BooleanHandler::BooleanHandler( AttributeId _nAttributeId, WhichId _nWhichId ) in BooleanHandler() argument
499 :AttributeHandler( _nAttributeId, _nWhichId ) in BooleanHandler()