| /AOO41X/main/svtools/source/edit/ |
| H A D | xtextedt.cxx | 50 TextSelection aSel( rCursor ); in MatchGroup() local 91 aSel.GetStart() = rCursor; in MatchGroup() 92 aSel.GetEnd() = TextPaM( nPara, nCur+1 ); in MatchGroup() 137 aSel.GetStart() = rCursor; in MatchGroup() 138 aSel.GetStart().GetIndex()++; // hinter das Zeichen in MatchGroup() 139 aSel.GetEnd() = TextPaM( nPara, nCur ); in MatchGroup() 144 return aSel; in MatchGroup() 149 TextSelection aSel( rSel ); in Search() local 150 aSel.Justify(); in Search() 154 TextPaM aStartPaM( aSel.GetEnd() ); in Search() [all …]
|
| H A D | textundo.cxx | 152 TextSelection aSel( TextPaM( mnPara, 0 ), TextPaM( mnPara, mpNode->GetText().Len() ) ); in Undo() local 153 SetSelection( aSel ); in Undo() 238 TextSelection aSel( maTextPaM, maTextPaM ); in Undo() local 239 aSel.GetEnd().GetIndex() = aSel.GetEnd().GetIndex() + maText.Len(); in Undo() 240 TextPaM aPaM = GetTextEngine()->ImpDeleteText( aSel ); in Undo() 246 TextSelection aSel( maTextPaM, maTextPaM ); in Redo() local 247 GetTextEngine()->ImpInsertText( aSel, maText ); in Redo() 250 SetSelection( TextSelection( aSel.GetStart(), aNewPaM ) ); in Redo() 280 TextSelection aSel( maTextPaM, maTextPaM ); in Undo() local 281 GetTextEngine()->ImpInsertText( aSel, maText ); in Undo() [all …]
|
| H A D | texteng.cxx | 340 TextSelection aSel( rSel ); in GetTextLen() local 341 aSel.Justify(); in GetTextLen() 342 ValidateSelection( aSel ); in GetTextLen() 343 return mpDoc->GetTextLen( static_getLineEndText( aSeparator ), &aSel ); in GetTextLen() 473 TextSelection aSel( rSel ); in GetText() local 474 aSel.Justify(); in GetText() 476 sal_uLong nStartPara = aSel.GetStart().GetPara(); in GetText() 477 sal_uLong nEndPara = aSel.GetEnd().GetPara(); in GetText() 479 for ( sal_uLong nNode = aSel.GetStart().GetPara(); nNode <= nEndPara; nNode++ ) in GetText() 486 nStartPos = aSel.GetStart().GetIndex(); in GetText() [all …]
|
| /AOO41X/main/sc/source/ui/pagedlg/ |
| H A D | scuitphfedit.cxx | 584 ESelection aSel(0,0,0,0); in IsPageEntry() local 585 aSel.nEndPos = aPageEntry.Len(); in IsPageEntry() 586 if(aPageEntry == pEngine->GetText(aSel)) in IsPageEntry() 588 aSel.nStartPos = aSel.nEndPos; in IsPageEntry() 589 aSel.nEndPos++; in IsPageEntry() 591 pPageObj.reset(pEngine->CreateTextObject(aSel)); in IsPageEntry() 673 ESelection aSel(0,0,0,0); in ProcessDefinedListSel() local 677 aSel.nEndPos = aPageEntry.Len(); in ProcessDefinedListSel() 678 …dItem(SvxPageField(), EE_FEATURE_FIELD), ESelection(aSel.nEndPara, aSel.nEndPos, aSel.nEndPara, aS… in ProcessDefinedListSel() 679 ++aSel.nEndPos; in ProcessDefinedListSel() [all …]
|
| /AOO41X/main/editeng/source/outliner/ |
| H A D | outlvw.cxx | 114 ESelection aSel( pEditView->GetSelection() ); in PostKeyEvent() local 115 sal_Bool bSelection = aSel.HasRange(); in PostKeyEvent() 159 if( aSel.nEndPos == pOwner->pEditEngine->GetTextLen( aSel.nEndPara ) ) in PostKeyEvent() 161 Paragraph* pNext = pOwner->pParaList->GetParagraph( aSel.nEndPara+1 ); in PostKeyEvent() 164 if( !pOwner->ImpCanDeleteSelectedPages( this, aSel.nEndPara, 1 ) ) in PostKeyEvent() 185 ( bSelection || !aSel.nStartPos ) ) in PostKeyEvent() 191 … !bSelection && !aSel.nEndPos && pOwner->ImplHasNumberFormat( aSel.nEndPara ) ) in PostKeyEvent() 201 if( !bReadOnly && !bSelection && aSel.nEndPara && !aSel.nEndPos ) in PostKeyEvent() 203 Paragraph* pPara = pOwner->pParaList->GetParagraph( aSel.nEndPara ); in PostKeyEvent() 204 Paragraph* pPrev = pOwner->pParaList->GetParagraph( aSel.nEndPara-1 ); in PostKeyEvent() [all …]
|
| /AOO41X/main/editeng/source/editeng/ |
| H A D | impedit4.cxx | 99 …ream& rInput, const String& rBaseURL, EETextFormat eFormat, EditSelection aSel, SvKeyValueIterator… in Read() argument 105 aPaM = ReadText( rInput, aSel ); in Read() 107 aPaM = ReadRTF( rInput, aSel ); in Read() 109 aPaM = ReadXML( rInput, aSel ); in Read() 111 aPaM = ReadHTML( rInput, rBaseURL, aSel, pHTTPHeaderAttrs ); in Read() 113 aPaM = ReadBin( rInput, aSel ); in Read() 125 EditPaM ImpEditEngine::ReadText( SvStream& rInput, EditSelection aSel ) in ReadText() argument 127 if ( aSel.HasRange() ) in ReadText() 128 aSel = ImpDeleteSelection( aSel ); in ReadText() 129 EditPaM aPaM = aSel.Max(); in ReadText() [all …]
|
| H A D | editundo.cxx | 61 EditSelection aSel( aPaM, aPaM ); in lcl_DoSetSelection() local 62 pView->GetImpEditView()->SetEditSelection( aSel ); in lcl_DoSetSelection() 208 EditSelection aSel( EditPaM( pContentNode, 0 ), EditPaM( pContentNode, pContentNode->Len() ) ); in Undo() local 209 GetImpEditEngine()->GetActiveView()->GetImpEditView()->SetEditSelection( aSel ); in Undo() 356 EditSelection aSel( aPaM, aPaM ); in Undo() local 357 aSel.Max().GetIndex() = aSel.Max().GetIndex() + aText.Len(); in Undo() 358 EditPaM aNewPaM( GetImpEditEngine()->ImpDeleteSelection( aSel ) ); in Undo() 403 EditSelection aSel( aPaM, aPaM ); in Undo() local 404 GetImpEditEngine()->ImpInsertText( aSel, aText ); in Undo() 405 aSel.Max().GetIndex() = aSel.Max().GetIndex() + aText.Len(); in Undo() [all …]
|
| H A D | impedit5.cxx | 58 void ImpEditEngine::SetStyleSheet( EditSelection aSel, SfxStyleSheet* pStyle ) in SetStyleSheet() argument 60 aSel.Adjust( aEditDoc ); in SetStyleSheet() 62 sal_uInt16 nStartPara = aEditDoc.GetPos( aSel.Min().GetNode() ); in SetStyleSheet() 63 sal_uInt16 nEndPara = aEditDoc.GetPos( aSel.Max().GetNode() ); in SetStyleSheet() 199 EditUndoSetAttribs* ImpEditEngine::CreateAttribUndo( EditSelection aSel, const SfxItemSet& rSet ) in CreateAttribUndo() argument 201 DBG_ASSERT( !aSel.DbgIsBuggy( aEditDoc ), "CreateAttribUndo: Fehlerhafte Selektion" ); in CreateAttribUndo() 202 aSel.Adjust( aEditDoc ); in CreateAttribUndo() 204 ESelection aESel( CreateESel( aSel ) ); in CreateAttribUndo() 206 sal_uInt16 nStartNode = aEditDoc.GetPos( aSel.Min().GetNode() ); in CreateAttribUndo() 207 sal_uInt16 nEndNode = aEditDoc.GetPos( aSel.Max().GetNode() ); in CreateAttribUndo() [all …]
|
| H A D | editview.cxx | 728 ESelection aSel = GetSelection(); in MoveParagraphs() local 729 Range aRange( aSel.nStartPara, aSel.nEndPara ); in MoveParagraphs() 837 EditSelection aSel( pImpEditView->GetEditSelection() ); in SetStyleSheet() local 839 PIMPEE->SetStyleSheet( aSel, pStyle ); in SetStyleSheet() 849 EditSelection aSel( pImpEditView->GetEditSelection() ); in GetStyleSheet() local 850 aSel.Adjust( PIMPEE->GetEditDoc() ); in GetStyleSheet() 851 sal_uInt16 nStartPara = PIMPEE->GetEditDoc().GetPos( aSel.Min().GetNode() ); in GetStyleSheet() 852 sal_uInt16 nEndPara = PIMPEE->GetEditDoc().GetPos( aSel.Max().GetNode() ); in GetStyleSheet() 926 EditSelection aSel = pImpEditView->GetEditSelection(); in CompleteAutoCorrect() local 927 aSel = PIMPEE->EndOfWord( aSel.Max() ); in CompleteAutoCorrect() [all …]
|
| H A D | edtspell.cxx | 559 EditSelection aSel( EditPaM( pCurNode, nStt ), EditPaM( pCurNode, nEnd ) ); in Delete() local 560 pImpEE->ImpDeleteSelection( aSel ); in Delete() 569 EditSelection aSel = EditPaM( pCurNode, nPos ); in Insert() local 570 pImpEE->ImpInsertText( aSel, rTxt ); in Insert() 626 EditSelection aSel( EditPaM( pCurNode, nStt ), EditPaM( pCurNode, nEnd ) ); in SetAttr() local 627 aSel.Max().SetIndex( nEnd ); // ??? in SetAttr() 628 pImpEE->SetAttribs( aSel, aSet, ATTRSPECIAL_EDGE ); in SetAttr() 638 EditSelection aSel( EditPaM( pCurNode, nStt ), EditPaM( pCurNode, nEnd ) ); in SetINetAttr() local 639 String aText = pImpEE->GetSelected( aSel ); in SetINetAttr() 640 aSel = pImpEE->ImpDeleteSelection( aSel ); in SetINetAttr() [all …]
|
| H A D | editeng.cxx | 557 EditSelection aSel( pImpEditEngine->CreateSel( rSelection ) ); in GetScriptType() local 558 return pImpEditEngine->GetScriptType( aSel ); in GetScriptType() 683 EditSelection aSel( pImpEditEngine->CreateSel( rESelection ) ); in GetText() local 684 return pImpEditEngine->GetSelected( aSel, eEnd ); in GetText() 763 EditSelection aSel( pImpEditEngine->CreateSel( aESel ) ); in GetWord() local 764 aSel = pImpEditEngine->SelectWord( aSel ); in GetWord() 765 return pImpEditEngine->GetSelected( aSel ); in GetWord() 773 EditSelection aSel( pE->pImpEditEngine->CreateSel( rSelection ) ); in GetWord() local 774 aSel = pE->pImpEditEngine->SelectWord( aSel, nWordType ); in GetWord() 775 return pE->pImpEditEngine->CreateESel( aSel ); in GetWord() [all …]
|
| H A D | impedit.hxx | 534 EditUndoSetAttribs* CreateAttribUndo( EditSelection aSel, const SfxItemSet& rSet ); 544 void SetParaAttrib( sal_uInt8 nFunc, EditSelection aSel, sal_uInt16 nValue ); 545 sal_uInt16 GetParaAttrib( sal_uInt8 nFunc, EditSelection aSel ); 546 void SetCharAttrib( EditSelection aSel, const SfxPoolItem& rItem ); 631 EditPaM ReadText( SvStream& rInput, EditSelection aSel ); 632 EditPaM ReadRTF( SvStream& rInput, EditSelection aSel ); 633 EditPaM ReadXML( SvStream& rInput, EditSelection aSel ); 634 …EditPaM ReadHTML( SvStream& rInput, const String& rBaseURL, EditSelection aSel, SvKeyV… 635 EditPaM ReadBin( SvStream& rInput, EditSelection aSel ); 636 sal_uInt32 WriteText( SvStream& rOutput, EditSelection aSel ); [all …]
|
| /AOO41X/main/sc/source/ui/app/ |
| H A D | inputhdl.cxx | 205 ESelection aSel( 0, nStart, 0, nPos ); in InitRangeFinder() local 209 pEngine->QuickSetAttribs( aSet, aSel ); in InitRangeFinder() 242 ESelection aSel( 0, nLen, 0, nLen ); in lcl_Replace() local 243 pView->SetSelection( aSel ); // Cursor ans Ende in lcl_Replace() 748 ESelection aSel = pActiveView->GetSelection(); in ShowTipCursor() local 749 aSel.Adjust(); in ShowTipCursor() 751 if( aSel.nEndPos ) in ShowTipCursor() 753 if ( aFormula.Len() < aSel.nEndPos ) in ShowTipCursor() 755 xub_StrLen nPos = aSel.nEndPos; in ShowTipCursor() 886 String aText = pEngine->GetWord( 0, aSel.nEndPos-1 ); in ShowTipCursor() [all …]
|
| /AOO41X/main/sd/source/ui/view/ |
| H A D | outlnvs2.cxx | 358 ESelection aSel( pOutlinerView->GetSelection() ); in FuTemporaryModify() local 360 if ( aSel.nStartPos <= aSel.nEndPos ) in FuTemporaryModify() 361 aSel.nEndPos = aSel.nStartPos + 1; in FuTemporaryModify() 363 aSel.nStartPos = aSel.nEndPos + 1; in FuTemporaryModify() 364 pOutlinerView->SetSelection( aSel ); in FuTemporaryModify() 556 ESelection aSel = pOutlinerView->GetSelection(); in FuTemporaryModify() local 557 if( aSel.nStartPos == aSel.nEndPos ) in FuTemporaryModify() 558 aSel.nEndPos++; in FuTemporaryModify() 559 pOutlinerView->SetSelection( aSel ); in FuTemporaryModify() 592 ESelection aSel = pOutlinerView->GetSelection(); in FuTemporaryModify() local [all …]
|
| /AOO41X/main/svtools/source/brwbox/ |
| H A D | ebbcontrols.cxx | 106 Selection aSel = rBox.GetSelection(); in MoveAllowed() local 107 return !aSel && aSel.Max() == rBox.GetText().Len(); in MoveAllowed() 112 Selection aSel = rBox.GetSelection(); in MoveAllowed() local 113 return !aSel && aSel.Min() == 0; in MoveAllowed() 446 Selection aSel = m_pEditImplementation->GetSelection(); in MoveAllowed() local 447 bResult = !aSel && aSel.Max() == m_pEditImplementation->GetText( LINEEND_LF ).Len(); in MoveAllowed() 452 Selection aSel = m_pEditImplementation->GetSelection(); in MoveAllowed() local 453 bResult = !aSel && aSel.Min() == 0; in MoveAllowed() 503 Selection aSel = GetSpinWindow().GetSelection(); in MoveAllowed() local 504 bResult = !aSel && aSel.Max() == GetSpinWindow().GetText().Len(); in MoveAllowed() [all …]
|
| /AOO41X/main/sc/source/filter/rtf/ |
| H A D | rtfparse.cxx | 93 && (( pE->aSel.nStartPara == pE->aSel.nEndPara in Read() 94 && pE->aSel.nStartPos == pE->aSel.nEndPos) in Read() 96 || ( pE->aSel.nStartPara + 1 == pE->aSel.nEndPara in Read() 97 && pE->aSel.nStartPos == pEdit->GetTextLen( pE->aSel.nStartPara ) in Read() 98 && pE->aSel.nEndPos == 0 )) ) in Read() 110 void ScRTFParser::EntryEnd( ScEEParseEntry* pE, const ESelection& aSel ) in EntryEnd() argument 113 pE->aSel.nEndPara = aSel.nEndPara - 2; in EntryEnd() 115 pE->aSel.nEndPos = pEdit->GetTextLen( aSel.nEndPara - 1 ); in EntryEnd() 370 pActEntry->aSel.nStartPara = pInfo->aSelection.nEndPara - 1; in ProcToken()
|
| /AOO41X/main/vcl/source/control/ |
| H A D | field2.cxx | 419 Selection aSel = pEdit->GetSelection(); in ImplPatternProcessStrictModify() local 420 sal_uLong nMaxSel = Max( aSel.Min(), aSel.Max() ); in ImplPatternProcessStrictModify() 425 if ( aSel.Min() == aSel.Max() ) in ImplPatternProcessStrictModify() 427 aSel.Min() = nMaxPos; in ImplPatternProcessStrictModify() 428 aSel.Max() = aSel.Min(); in ImplPatternProcessStrictModify() 430 else if ( aSel.Min() > aSel.Max() ) in ImplPatternProcessStrictModify() 431 aSel.Min() = nMaxPos; in ImplPatternProcessStrictModify() 433 aSel.Max() = nMaxPos; in ImplPatternProcessStrictModify() 435 pEdit->SetText( aNewText, aSel ); in ImplPatternProcessStrictModify() 506 Selection aSel( ImplPatternLeftPos( rEditMask, nCursorPos ) ); in ImplPatternProcessKeyInput() local [all …]
|
| H A D | edit.cxx | 1644 Selection aSel( maSelection ); in ImplHandleKeyEvent() local 1685 if ( bGoLeft && aSel.Max() ) in ImplHandleKeyEvent() 1689 …i18n::Boundary aBoundary = xBI->getWordBoundary( maText, aSel.Max(), GetSettings().GetLocale(), i1… in ImplHandleKeyEvent() 1690 if ( aBoundary.startPos == aSel.Max() ) in ImplHandleKeyEvent() 1691 …aBoundary = xBI->previousWord( maText, aSel.Max(), GetSettings().GetLocale(), i18n::WordType::ANYW… in ImplHandleKeyEvent() 1692 aSel.Max() = aBoundary.startPos; in ImplHandleKeyEvent() 1697 …aSel.Max() = xBI->previousCharacters( maText, aSel.Max(), GetSettings().GetLocale(), i18n::Charact… in ImplHandleKeyEvent() 1700 else if ( bGoRight && ( aSel.Max() < maText.Len() ) ) in ImplHandleKeyEvent() 1704 …i18n::Boundary aBoundary = xBI->nextWord( maText, aSel.Max(), GetSettings().GetLocale(), i18n::Wor… in ImplHandleKeyEvent() 1705 aSel.Max() = aBoundary.startPos; in ImplHandleKeyEvent() [all …]
|
| /AOO41X/main/sd/source/ui/func/ |
| H A D | fubullet.cxx | 153 ESelection aSel = pOV->GetSelection(); in InsertFormattingMark() local 154 aSel.nStartPara = aSel.nEndPara; in InsertFormattingMark() 155 aSel.nStartPos = aSel.nEndPos; in InsertFormattingMark() 156 pOV->SetSelection(aSel); in InsertFormattingMark() 291 ESelection aSel = pOV->GetSelection(); in InsertSpecialCharacter() local 292 aSel.nStartPara = aSel.nEndPara; in InsertSpecialCharacter() 293 aSel.nStartPos = aSel.nEndPos; in InsertSpecialCharacter() 294 pOV->SetSelection(aSel); in InsertSpecialCharacter() 297 pOV->GetOutliner()->QuickSetAttribs(aOldSet, aSel); in InsertSpecialCharacter()
|
| /AOO41X/main/sc/source/ui/drawfunc/ |
| H A D | drtxtob.cxx | 218 ESelection aSel( 0,0,(sal_uInt16)nCount,0 ); in Execute() local 219 pOutView->SetSelection( aSel ); in Execute() 292 ESelection aSel = pOutView->GetSelection(); in Execute() local 293 aSel.Adjust(); in Execute() 294 aSel.nEndPara = aSel.nStartPara; in Execute() 295 aSel.nEndPos = aSel.nStartPos + 1; in Execute() 296 pOutView->SetSelection( aSel ); in Execute() 309 ESelection aSel = pOutView->GetSelection(); in Execute() local 310 if ( aSel.nStartPos == aSel.nEndPos && aSel.nStartPos > 0 ) in Execute() 314 --aSel.nStartPos; in Execute() [all …]
|
| /AOO41X/main/sc/source/filter/html/ |
| H A D | htmlpars.cxx | 205 if ( !pE->aSel.HasRange() ) in NewActEntry() 207 pActEntry->aSel.nStartPara = pE->aSel.nEndPara; in NewActEntry() 208 pActEntry->aSel.nStartPos = pE->aSel.nEndPos; in NewActEntry() 211 pActEntry->aSel.nEndPara = pActEntry->aSel.nStartPara; in NewActEntry() 212 pActEntry->aSel.nEndPos = pActEntry->aSel.nStartPos; in NewActEntry() 218 if ( rSel.nEndPara >= pE->aSel.nStartPara ) in EntryEnd() 220 pE->aSel.nEndPara = rSel.nEndPara; in EntryEnd() 221 pE->aSel.nEndPos = rSel.nEndPos; in EntryEnd() 223 else if ( rSel.nStartPara == pE->aSel.nStartPara - 1 && !pE->aSel.HasRange() ) in EntryEnd() 724 ESelection& rSel = pActEntry->aSel; in CloseEntry() [all …]
|
| /AOO41X/main/basctl/source/basicide/ |
| H A D | baside2.cxx | 346 TextSelection aSel = GetEditView()->GetSelection(); in BasicExecute() local 348 nCurMethodStart = ( aSel.GetStart().GetPara() + 1 ); in BasicExecute() 645 TextSelection aSel = GetEditView()->GetSelection(); in BasicToggleBreakPoint() local 646 aSel.GetStart().GetPara()++; // Basic-Zeilen beginnen bei 1! in BasicToggleBreakPoint() 647 aSel.GetEnd().GetPara()++; in BasicToggleBreakPoint() 651 for ( sal_uLong nLine = aSel.GetStart().GetPara(); nLine <= aSel.GetEnd().GetPara(); nLine++ ) in BasicToggleBreakPoint() 670 TextSelection aSel = pView->GetSelection(); in BasicToggleBreakPointEnabled() local 673 …for ( sal_uLong nLine = ++aSel.GetStart().GetPara(), nEnd = ++aSel.GetEnd().GetPara(); nLine <= nE… in BasicToggleBreakPointEnabled() 813 TextSelection aSel( aWordStart ); in BasicAddWatch() local 814 sal_uInt16& rIndex = aSel.GetEnd().GetIndex(); in BasicAddWatch() [all …]
|
| /AOO41X/main/sc/source/ui/view/ |
| H A D | editsh.cxx | 513 ESelection aSel = pEditView->GetSelection(); // aktuelle View in Execute() local 516 aFinder.ToggleRel( aSel.nStartPos, aSel.nEndPos ); in Execute() 559 ESelection aSel = pTableView->GetSelection(); in Execute() local 560 aSel.Adjust(); in Execute() 561 aSel.nEndPara = aSel.nStartPara; in Execute() 562 aSel.nEndPos = aSel.nStartPos + 1; in Execute() 563 pTableView->SetSelection( aSel ); in Execute() 571 pTableView->SetSelection( aSel ); // select inserted field in Execute() 577 aSel = pTopView->GetSelection(); in Execute() 578 aSel.nEndPara = aSel.nStartPara; in Execute() [all …]
|
| /AOO41X/main/sc/source/core/data/ |
| H A D | attrib.cxx | 806 ESelection aSel( nPar,nPos, nPar,nPos+pCommands[0].Len() ); in lcl_ConvertFields() local 807 rEng.QuickInsertField( SvxFieldItem(SvxPageField(), EE_FEATURE_FIELD), aSel ); in lcl_ConvertFields() 808 lcl_SetSpace(aStr, aSel ); bChange = sal_True; in lcl_ConvertFields() 812 ESelection aSel( nPar,nPos, nPar,nPos+pCommands[1].Len() ); in lcl_ConvertFields() local 813 rEng.QuickInsertField( SvxFieldItem(SvxPagesField(), EE_FEATURE_FIELD), aSel ); in lcl_ConvertFields() 814 lcl_SetSpace(aStr, aSel ); bChange = sal_True; in lcl_ConvertFields() 818 ESelection aSel( nPar,nPos, nPar,nPos+pCommands[2].Len() ); in lcl_ConvertFields() local 819 …Eng.QuickInsertField( SvxFieldItem(SvxDateField(Date(),SVXDATETYPE_VAR), EE_FEATURE_FIELD), aSel ); in lcl_ConvertFields() 820 lcl_SetSpace(aStr, aSel ); bChange = sal_True; in lcl_ConvertFields() 824 ESelection aSel( nPar,nPos, nPar,nPos+pCommands[3].Len() ); in lcl_ConvertFields() local [all …]
|
| /AOO41X/main/formula/source/ui/dlg/ |
| H A D | formula.cxx | 1117 Selection aSel=pMEdit->GetSelection(); in IMPL_LINK() local 1118 aSel.Max()=aSel.Max()-1; in IMPL_LINK() 1119 pMEdit->SetSelection(aSel); in IMPL_LINK() 1123 aSel.Min()=aSel.Max(); in IMPL_LINK() 1124 pMEdit->SetSelection(aSel); in IMPL_LINK() 1377 Selection aSel =pMEdit->GetSelection(); in IMPL_LINK() local 1384 aSel .Min()=1; in IMPL_LINK() 1385 aSel .Max()=1; in IMPL_LINK() 1386 pMEdit->SetSelection(aSel); in IMPL_LINK() 1392 aSel .Min()+=1; in IMPL_LINK() [all …]
|