Home
last modified time | relevance | path

Searched refs:rEE (Results 1 – 7 of 7) sorted by relevance

/trunk/main/sc/source/filter/excel/
H A Dxlroot.cxx354 ScEditEngineDefaulter& rEE = *mrData.mxEditEngine; in GetEditEngine() local
355 rEE.SetRefMapMode( MAP_100TH_MM ); in GetEditEngine()
356 rEE.SetEditTextObjectPool( GetDoc().GetEditPool() ); in GetEditEngine()
357 rEE.SetUpdateMode( sal_False ); in GetEditEngine()
358 rEE.EnableUndo( sal_False ); in GetEditEngine()
359 rEE.SetControlWord( rEE.GetControlWord() & ~EE_CNTRL_ALLOWBIGOBJS ); in GetEditEngine()
369 ScHeaderEditEngine& rEE = *mrData.mxHFEditEngine; in GetHFEditEngine() local
370 rEE.SetRefMapMode( MAP_TWIP ); // headers/footers use twips as default metric in GetHFEditEngine()
371 rEE.SetUpdateMode( sal_False ); in GetHFEditEngine()
372 rEE.EnableUndo( sal_False ); in GetHFEditEngine()
[all …]
H A Dxehelper.cxx448 const XclExpRoot& rRoot, EditEngine& rEE, XclExpHyperlinkHelper* pLinkHelper, in lclCreateFormattedString() argument
463 sal_Int16 nLastScript = XclExpStringHelper::GetLeadingScriptType( rRoot, rEE.GetText() ); in lclCreateFormattedString()
466 sal_uInt32 nParaCount = rEE.GetParagraphCount(); in lclCreateFormattedString()
470 String aParaText( rEE.GetText( nPara ) ); in lclCreateFormattedString()
473 rEE.GetPortions( nPara, aPosList ); in lclCreateFormattedString()
483 SfxItemSet aEditSet( rEE.GetAttribs( aSel ) ); in lclCreateFormattedString()
607 ScEditEngineDefaulter& rEE = rRoot.GetEditEngine(); in CreateCellString() local
608 sal_Bool bOldUpdateMode = rEE.GetUpdateMode(); in CreateCellString()
609 rEE.SetUpdateMode( sal_True ); in CreateCellString()
612 SfxItemSet* pEEItemSet = new SfxItemSet( rEE.GetEmptyItemSet() ); in CreateCellString()
[all …]
H A Dxicontent.cxx183 ScEditEngineDefaulter& rEE = rRoot.GetEditEngine(); in lclInsertUrl() local
190 rEE.SetText( *pEditObj ); in lclInsertUrl()
191rEE.QuickInsertField( SvxFieldItem( aUrlField, EE_FEATURE_FIELD ), ESelection( 0, 0, EE_PARA_MAX, … in lclInsertUrl()
195 rEE.SetText( EMPTY_STRING ); in lclInsertUrl()
196 rEE.QuickInsertField( SvxFieldItem( aUrlField, EE_FEATURE_FIELD ), ESelection() ); in lclInsertUrl()
199 SfxItemSet aItemSet( rEE.GetEmptyItemSet() ); in lclInsertUrl()
201 rEE.QuickSetAttribs( aItemSet, ESelection( 0, 0, EE_PARA_MAX, 0 ) ); in lclInsertUrl()
204 ::std::auto_ptr< EditTextObject > xTextObj( rEE.CreateTextObject() ); in lclInsertUrl()
206 … ScEditCell* pCell = new ScEditCell( xTextObj.get(), &rDoc, rEE.GetEditTextObjectPool() ); in lclInsertUrl()
H A Dxihelper.cxx181 ScEditEngineDefaulter& rEE = (eType == EXC_FONTITEM_NOTE) ? in lclCreateTextObject() local
183 rEE.SetText( rString.GetText() ); in lclCreateTextObject()
185 SfxItemSet aItemSet( rEE.GetEmptyItemSet() ); in lclCreateTextObject()
206 rEE.QuickSetAttribs( aItemSet, aSelection ); in lclCreateTextObject()
234 rEE.QuickSetAttribs( aItemSet, aSelection ); in lclCreateTextObject()
236 pTextObj = rEE.CreateTextObject(); in lclCreateTextObject()
/trunk/main/editeng/source/uno/
H A Dunoedhlp.cxx131 …buteRun( sal_uInt16& nStartIndex, sal_uInt16& nEndIndex, const EditEngine& rEE, sal_uInt32 nPara, … in GetAttributeRun() argument
140 rEE.GetCharAttribs( nPara, aTempCharAttribs ); in GetAttributeRun()
144 sal_uInt32 nParaLen = rEE.GetTextLen(nPara); in GetAttributeRun()
193 …for( nAttr=0, nClosestEndIndex_s=nClosestEndIndex_e=rEE.GetTextLen(nPara); nAttr<aCharAttribs.Coun… in GetAttributeRun()
216 sal_uInt32 nParaCount = rEE.GetParagraphCount(); in GetAttributeRun()
217 sal_uInt32 nCrrntParaLen = rEE.GetTextLen(nPara); in GetAttributeRun()
221 SfxItemSet aCrrntSet = rEE.GetAttribs( nPara, 0, 1, GETATTRIBS_CHARATTRIBS ); in GetAttributeRun()
224 sal_uInt32 nLen = rEE.GetTextLen( nParaIdx ); in GetAttributeRun()
228 … GetAttributeRun( nStartIdx, nEndIdx, rEE, nParaIdx, sal_uInt16(nLen), sal_False ); in GetAttributeRun()
229 …SfxItemSet aSet = rEE.GetAttribs( nParaIdx, sal_uInt16(nLen-1), sal_uInt16(nLen), GETATTRIBS_CHARA… in GetAttributeRun()
[all …]
/trunk/main/sc/source/core/data/
H A Dcell.cxx1989 EditEngine& rEE = pDocument->GetEditEngine(); in CreateURLObject() local
1990 rEE.SetText( EMPTY_STRING ); in CreateURLObject()
1991rEE.QuickInsertField( SvxFieldItem( aUrlField, EE_FEATURE_FIELD ), ESelection( EE_PARA_MAX, EE_IND… in CreateURLObject()
1993 return rEE.CreateTextObject(); in CreateURLObject()
/trunk/main/editeng/inc/editeng/
H A Dunoedhlp.hxx109 …buteRun( sal_uInt16& nStartIndex, sal_uInt16& nEndIndex, const EditEngine& rEE, sal_uInt32 nPara, …