/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_editeng.hxx" #include #include #include #include #include //------------------------------------------------------------------------ TYPEINIT1( SvxEditSourceHint, TextHint ); SvxEditSourceHint::SvxEditSourceHint( sal_uLong _nId ) : TextHint( _nId ), mnStart( 0 ), mnEnd( 0 ) { } SvxEditSourceHint::SvxEditSourceHint( sal_uLong _nId, sal_uLong nValue, sal_uLong nStart, sal_uLong nEnd ) : TextHint( _nId, nValue ), mnStart( nStart), mnEnd( nEnd ) { } sal_uLong SvxEditSourceHint::GetValue() const { return TextHint::GetValue(); } sal_uLong SvxEditSourceHint::GetStartValue() const { return mnStart; } sal_uLong SvxEditSourceHint::GetEndValue() const { return mnEnd; } void SvxEditSourceHint::SetValue( sal_uLong n ) { TextHint::SetValue( n ); } void SvxEditSourceHint::SetStartValue( sal_uLong n ) { mnStart = n; } void SvxEditSourceHint::SetEndValue( sal_uLong n ) { mnEnd = n; } TYPEINIT1( SvxEditSourceHintEndPara , SvxEditSourceHint ); //------------------------------------------------------------------------ ::std::auto_ptr SvxEditSourceHelper::EENotification2Hint( EENotify* aNotify ) { if( aNotify ) { switch( aNotify->eNotificationType ) { case EE_NOTIFY_TEXTMODIFIED: return ::std::auto_ptr( new TextHint( TEXT_HINT_MODIFIED, aNotify->nParagraph ) ); case EE_NOTIFY_PARAGRAPHINSERTED: return ::std::auto_ptr( new TextHint( TEXT_HINT_PARAINSERTED, aNotify->nParagraph ) ); case EE_NOTIFY_PARAGRAPHREMOVED: return ::std::auto_ptr( new TextHint( TEXT_HINT_PARAREMOVED, aNotify->nParagraph ) ); case EE_NOTIFY_PARAGRAPHSMOVED: return ::std::auto_ptr( new SvxEditSourceHint( EDITSOURCE_HINT_PARASMOVED, aNotify->nParagraph, aNotify->nParam1, aNotify->nParam2 ) ); case EE_NOTIFY_TEXTHEIGHTCHANGED: return ::std::auto_ptr( new TextHint( TEXT_HINT_TEXTHEIGHTCHANGED, aNotify->nParagraph ) ); case EE_NOTIFY_TEXTVIEWSCROLLED: return ::std::auto_ptr( new TextHint( TEXT_HINT_VIEWSCROLLED ) ); case EE_NOTIFY_TEXTVIEWSELECTIONCHANGED: return ::std::auto_ptr( new SvxEditSourceHint( EDITSOURCE_HINT_SELECTIONCHANGED ) ); case EE_NOTIFY_BLOCKNOTIFICATION_START: return ::std::auto_ptr( new TextHint( TEXT_HINT_BLOCKNOTIFICATION_START, 0 ) ); case EE_NOTIFY_BLOCKNOTIFICATION_END: return ::std::auto_ptr( new TextHint( TEXT_HINT_BLOCKNOTIFICATION_END, 0 ) ); case EE_NOTIFY_INPUT_START: return ::std::auto_ptr( new TextHint( TEXT_HINT_INPUT_START, 0 ) ); case EE_NOTIFY_INPUT_END: return ::std::auto_ptr( new TextHint( TEXT_HINT_INPUT_END, 0 ) ); case EE_NOTIFY_TEXTVIEWSELECTIONCHANGED_ENDD_PARA: return ::std::auto_ptr( new SvxEditSourceHintEndPara( EDITSOURCE_HINT_SELECTIONCHANGED ) ); default: DBG_ERROR( "SvxEditSourceHelper::EENotification2Hint unknown notification" ); break; } } return ::std::auto_ptr( new SfxHint() ); } sal_Bool SvxEditSourceHelper::GetAttributeRun( sal_uInt16& nStartIndex, sal_uInt16& nEndIndex, const EditEngine& rEE, sal_uInt32 nPara, sal_uInt16 nIndex, sal_Bool bInCell ) { // IA2 CWS introduced bInCell, but also did many other changes here. // Need to verify implementation with AT (IA2 and ATK) // Old implementation at the end of the method for reference... #if 1 //added dummy attributes for the default text EECharAttribArray aCharAttribs, aTempCharAttribs; rEE.GetCharAttribs( nPara, aTempCharAttribs ); if ( aTempCharAttribs.Count() ) { sal_uInt32 nIndex2 = 0; sal_uInt32 nParaLen = rEE.GetTextLen(nPara); for ( sal_uInt16 nAttr = 0; nAttr < aTempCharAttribs.Count(); nAttr++ ) { if ( nIndex2 < aTempCharAttribs[nAttr].nStart ) { EECharAttrib aEEAttr; aEEAttr.nStart = sal_uInt16(nIndex2); aEEAttr.nEnd = aTempCharAttribs[nAttr].nStart; aCharAttribs.Insert( aEEAttr, nAttr ); } nIndex2 = aTempCharAttribs[nAttr].nEnd; aCharAttribs.Insert( aTempCharAttribs[nAttr], aCharAttribs.Count() ); } if ( nIndex2 != nParaLen ) { EECharAttrib aEEAttr; aEEAttr.nStart = sal_uInt16(nIndex2); aEEAttr.nEnd = sal_uInt16(nParaLen); aCharAttribs.Insert( aEEAttr, aCharAttribs.Count() ); } } // find closest index in front of nIndex sal_uInt16 nAttr, nCurrIndex; sal_Int32 nClosestStartIndex; sal_Int32 nClosestStartIndex_s, nClosestStartIndex_e; for( nAttr=0, nClosestStartIndex_s=0, nClosestStartIndex_e=0; nAttr nIndex ) // break; // aCharAttribs array is sorted in increasing order for nStart values if( nCurrIndex > nClosestStartIndex_s && nCurrIndex <= nIndex) { nClosestStartIndex_s = nCurrIndex; } nCurrIndex = aCharAttribs[nAttr].nEnd; if ( nCurrIndex > nClosestStartIndex_e && nCurrIndex < nIndex ) { nClosestStartIndex_e = nCurrIndex; } } nClosestStartIndex = nClosestStartIndex_s > nClosestStartIndex_e ? nClosestStartIndex_s : nClosestStartIndex_e; // find closest index behind of nIndex sal_Int32 nClosestEndIndex; sal_Int32 nClosestEndIndex_s, nClosestEndIndex_e; for( nAttr=0, nClosestEndIndex_s=nClosestEndIndex_e=rEE.GetTextLen(nPara); nAttr nIndex && nCurrIndex < nClosestEndIndex_e ) { nClosestEndIndex_e = nCurrIndex; } nCurrIndex = aCharAttribs[nAttr].nStart; if ( nCurrIndex > nIndex && nCurrIndex < nClosestEndIndex_s) { nClosestEndIndex_s = nCurrIndex; } } nClosestEndIndex = nClosestEndIndex_s < nClosestEndIndex_e ? nClosestEndIndex_s : nClosestEndIndex_e; nStartIndex = static_cast( nClosestStartIndex ); nEndIndex = static_cast( nClosestEndIndex ); if ( bInCell ) { EPosition aStartPos( nPara, nStartIndex ), aEndPos( nPara, nEndIndex ); sal_uInt32 nParaCount = rEE.GetParagraphCount(); sal_uInt32 nCrrntParaLen = rEE.GetTextLen(nPara); //need to find closest index in front of nIndex in the previous paragraphs if ( aStartPos.nIndex == 0 ) { SfxItemSet aCrrntSet = rEE.GetAttribs( nPara, 0, 1, GETATTRIBS_CHARATTRIBS ); for ( sal_Int32 nParaIdx = nPara-1; nParaIdx >= 0; nParaIdx-- ) { sal_uInt32 nLen = rEE.GetTextLen( nParaIdx ); if ( nLen ) { sal_uInt16 nStartIdx, nEndIdx; GetAttributeRun( nStartIdx, nEndIdx, rEE, nParaIdx, sal_uInt16(nLen), sal_False ); SfxItemSet aSet = rEE.GetAttribs( nParaIdx, sal_uInt16(nLen-1), sal_uInt16(nLen), GETATTRIBS_CHARATTRIBS ); if ( aSet == aCrrntSet ) { aStartPos.nPara = nParaIdx; aStartPos.nIndex = nStartIdx; if ( aStartPos.nIndex != 0 ) { break; } } } } } //need find closest index behind nIndex in the following paragrphs if ( aEndPos.nIndex == nCrrntParaLen ) { SfxItemSet aCrrntSet = rEE.GetAttribs( nPara, sal_uInt16(nCrrntParaLen-1), sal_uInt16(nCrrntParaLen), GETATTRIBS_CHARATTRIBS ); for ( sal_uInt32 nParaIdx = nPara+1; nParaIdx < nParaCount; nParaIdx++ ) { sal_uInt32 nLen = rEE.GetTextLen( nParaIdx ); if ( nLen ) { sal_uInt16 nStartIdx, nEndIdx; GetAttributeRun( nStartIdx, nEndIdx, rEE, nParaIdx, 0, sal_False ); SfxItemSet aSet = rEE.GetAttribs( nParaIdx, 0, 1, GETATTRIBS_CHARATTRIBS ); if ( aSet == aCrrntSet ) { aEndPos.nPara = nParaIdx; aEndPos.nIndex = nEndIdx; if ( aEndPos.nIndex != nLen ) { break; } } } } } nStartIndex = 0; if ( aStartPos.nPara > 0 ) { for ( sal_uInt32 i = 0; i < aStartPos.nPara; i++ ) { nStartIndex += rEE.GetTextLen(i)+1; } } nStartIndex += aStartPos.nIndex; nEndIndex = 0; if ( aEndPos.nPara > 0 ) { for ( sal_uInt32 i = 0; i < aEndPos.nPara; i++ ) { nEndIndex += rEE.GetTextLen(i)+1; } } nEndIndex += aEndPos.nIndex; } return sal_True; #else // old implementation EECharAttribArray aCharAttribs; rEE.GetCharAttribs( nPara, aCharAttribs ); // find closest index in front of nIndex sal_uInt16 nAttr, nCurrIndex; sal_Int32 nClosestStartIndex; for( nAttr=0, nClosestStartIndex=0; nAttr nIndex ) break; // aCharAttribs array is sorted in increasing order for nStart values if( nCurrIndex > nClosestStartIndex ) { nClosestStartIndex = nCurrIndex; } } // find closest index behind of nIndex sal_Int32 nClosestEndIndex; for( nAttr=0, nClosestEndIndex=rEE.GetTextLen(nPara); nAttr nIndex && nCurrIndex < nClosestEndIndex ) { nClosestEndIndex = nCurrIndex; } } nStartIndex = static_cast( nClosestStartIndex ); nEndIndex = static_cast( nClosestEndIndex ); return sal_True; #endif } Point SvxEditSourceHelper::EEToUserSpace( const Point& rPoint, const Size& rEESize, bool bIsVertical ) { return bIsVertical ? Point( -rPoint.Y() + rEESize.Height(), rPoint.X() ) : rPoint; } Point SvxEditSourceHelper::UserSpaceToEE( const Point& rPoint, const Size& rEESize, bool bIsVertical ) { return bIsVertical ? Point( rPoint.Y(), -rPoint.X() + rEESize.Height() ) : rPoint; } Rectangle SvxEditSourceHelper::EEToUserSpace( const Rectangle& rRect, const Size& rEESize, bool bIsVertical ) { // #106775# Don't touch rect if not vertical return bIsVertical ? Rectangle( EEToUserSpace(rRect.BottomLeft(), rEESize, bIsVertical), EEToUserSpace(rRect.TopRight(), rEESize, bIsVertical) ) : rRect; } Rectangle SvxEditSourceHelper::UserSpaceToEE( const Rectangle& rRect, const Size& rEESize, bool bIsVertical ) { // #106775# Don't touch rect if not vertical return bIsVertical ? Rectangle( UserSpaceToEE(rRect.TopRight(), rEESize, bIsVertical), UserSpaceToEE(rRect.BottomLeft(), rEESize, bIsVertical) ) : rRect; }