Lines Matching refs:aText

457 		XubString	aText;  in ImplGetText()  local
463 aText.Fill( maText.Len(), cEchoChar ); in ImplGetText()
464 return aText; in ImplGetText()
503 XubString aText = ImplGetText(); in ImplRepaint() local
505 nEnd = aText.Len(); in ImplRepaint()
511 if( aText.Len() ) in ImplRepaint()
513 if( 2*aText.Len() > xub_StrLen(sizeof(nDXBuffer)/sizeof(nDXBuffer[0])) ) in ImplRepaint()
515 pDXBuffer = new sal_Int32[2*(aText.Len()+1)]; in ImplRepaint()
519 GetCaretPositions( aText, pDX, nStart, nEnd ); in ImplRepaint()
533 DrawText( aPos, aText, nStart, nEnd - nStart, pVector, pDisplayText ); in ImplRepaint()
576 DrawText( aPos, aText, nStart, nEnd - nStart ); in ImplRepaint()
589 for( i = 0; i < aText.Len(); i++ ) in ImplRepaint()
628 DrawText( aPos, aText, nStart, nEnd - nStart ); in ImplRepaint()
634 DrawText( aPos, aText, nStart, nEnd - nStart ); in ImplRepaint()
697 DrawText( aPos, aText, nStart, nEnd - nStart ); in ImplRepaint()
718 XubString aText = ImplGetText(); in ImplDelete() local
723 ((rSelection.Max() == aText.Len()) && (nDirection == EDIT_DEL_RIGHT))) ) in ImplDelete()
762 aSelection.Max() = aText.Len(); in ImplDelete()
1167 XubString aText = ImplGetText(); in ImplShowCursor() local
1175 if( aText.Len() ) in ImplShowCursor()
1177 if( 2*aText.Len() > xub_StrLen(sizeof(nDXBuffer)/sizeof(nDXBuffer[0])) ) in ImplShowCursor()
1179 pDXBuffer = new sal_Int32[2*(aText.Len()+1)]; in ImplShowCursor()
1183 GetCaretPositions( aText, pDX, 0, aText.Len() ); in ImplShowCursor()
1185 if( maSelection.Max() < aText.Len() ) in ImplShowCursor()
1188 nTextPos = pDX[ 2*aText.Len()-1 ]; in ImplShowCursor()
1192 if ( !mbInsertMode && !maSelection.Len() && (maSelection.Max() < aText.Len()) ) in ImplShowCursor()
1193 nCursorWidth = GetTextWidth( aText, (xub_StrLen)maSelection.Max(), 1 ); in ImplShowCursor()
1216 long nMaxNegX = (aOutSize.Width()-ImplGetExtraOffset()) - GetTextWidth( aText ); in ImplShowCursor()
1296 String aText = ImplGetText(); in ImplGetCharPos() local
1301 if( 2*aText.Len() > xub_StrLen(sizeof(nDXBuffer)/sizeof(nDXBuffer[0])) ) in ImplGetCharPos()
1303 pDXBuffer = new sal_Int32[2*(aText.Len()+1)]; in ImplGetCharPos()
1307 GetCaretPositions( aText, pDX, 0, aText.Len() ); in ImplGetCharPos()
1309 for( int i = 0; i < aText.Len(); i++ ) in ImplGetCharPos()
1332 for( int i = 1; i < aText.Len(); i++ ) in ImplGetCharPos()
1342 if( nIndex == aText.Len()-1 && Abs( pDX[2*nIndex+1] - nX ) < nDiff ) in ImplGetCharPos()
1417 ::rtl::OUString aText; in ImplPaste()
1418 aData >>= aText; in ImplPaste()
1419 if( ImplTruncateToMaxLen( aText, maSelection.Len() ) ) in ImplPaste()
1421 ReplaceSelected( aText ); in ImplPaste()
1944 XubString aText = ImplGetText(); in Draw() local
1946 long nTextWidth = pDev->GetTextWidth( aText ); in Draw()
1973 pDev->DrawText( Point( aPos.X() + nOffX, aPos.Y() + nOffY ), aText ); in Draw()
2780 XubString aText( maText ); in Undo() local
2781 ImplDelete( Selection( 0, aText.Len() ), EDIT_DEL_RIGHT, EDIT_DELMODE_SIMPLE ); in Undo()
2784 maUndoText = aText; in Undo()
3067 ::rtl::OUString aText; in drop()
3068 aData >>= aText; in drop()
3069 ImplInsertText( aText ); in drop()