Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <accessibility/standard/vclxaccessibleedit.hxx>
21 :
22 : #include <toolkit/awt/vclxwindows.hxx>
23 : #include <toolkit/helper/convert.hxx>
24 : #include <accessibility/helper/accresmgr.hxx>
25 : #include <accessibility/helper/accessiblestrings.hrc>
26 :
27 : #include <unotools/accessiblestatesethelper.hxx>
28 : #include <unotools/accessiblerelationsethelper.hxx>
29 : #include <com/sun/star/accessibility/AccessibleStateType.hpp>
30 : #include <com/sun/star/accessibility/AccessibleEventId.hpp>
31 : #include <com/sun/star/accessibility/AccessibleRole.hpp>
32 : #include <com/sun/star/datatransfer/clipboard/XClipboard.hpp>
33 : #include <cppuhelper/typeprovider.hxx>
34 : #include <comphelper/sequence.hxx>
35 : #include <comphelper/string.hxx>
36 : #include <vcl/svapp.hxx>
37 : #include <vcl/window.hxx>
38 : #include <vcl/edit.hxx>
39 : #include <sot/exchange.hxx>
40 : #include <sot/formats.hxx>
41 :
42 : #include <algorithm>
43 :
44 : using namespace ::com::sun::star;
45 : using namespace ::com::sun::star::uno;
46 : using namespace ::com::sun::star::lang;
47 : using namespace ::com::sun::star::beans;
48 : using namespace ::com::sun::star::accessibility;
49 : using namespace ::comphelper;
50 :
51 :
52 :
53 : // VCLXAccessibleEdit
54 :
55 :
56 9 : VCLXAccessibleEdit::VCLXAccessibleEdit( VCLXWindow* pVCLWindow )
57 9 : :VCLXAccessibleTextComponent( pVCLWindow )
58 : {
59 9 : m_nSelectionStart = getSelectionStart();
60 9 : m_nCaretPosition = getCaretPosition();
61 9 : }
62 :
63 :
64 :
65 18 : VCLXAccessibleEdit::~VCLXAccessibleEdit()
66 : {
67 18 : }
68 :
69 :
70 :
71 12 : void VCLXAccessibleEdit::ProcessWindowEvent( const VclWindowEvent& rVclWindowEvent )
72 : {
73 12 : switch ( rVclWindowEvent.GetId() )
74 : {
75 : case VCLEVENT_EDIT_MODIFY:
76 : {
77 0 : SetText( implGetText() );
78 : }
79 0 : break;
80 : case VCLEVENT_EDIT_CARETCHANGED:
81 : {
82 0 : sal_Int32 nOldCaretPosition = m_nCaretPosition;
83 0 : m_nCaretPosition = getCaretPosition();
84 :
85 0 : vcl::Window* pWindow = GetWindow();
86 0 : if (pWindow && pWindow->HasChildPathFocus())
87 : {
88 0 : if (m_nCaretPosition != nOldCaretPosition)
89 : {
90 0 : Any aOldValue, aNewValue;
91 0 : aOldValue <<= nOldCaretPosition;
92 0 : aNewValue <<= m_nCaretPosition;
93 0 : NotifyAccessibleEvent( AccessibleEventId::CARET_CHANGED, aOldValue, aNewValue );
94 : }
95 : }
96 : }
97 0 : break;
98 : case VCLEVENT_EDIT_SELECTIONCHANGED:
99 : {
100 0 : vcl::Window* pWindow = GetWindow();
101 0 : if (pWindow && pWindow->HasChildPathFocus())
102 : {
103 0 : NotifyAccessibleEvent( AccessibleEventId::TEXT_SELECTION_CHANGED, Any(), Any() );
104 : }
105 : }
106 0 : break;
107 : default:
108 12 : VCLXAccessibleTextComponent::ProcessWindowEvent( rVclWindowEvent );
109 : }
110 12 : }
111 :
112 :
113 :
114 15 : void VCLXAccessibleEdit::FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet )
115 : {
116 15 : VCLXAccessibleTextComponent::FillAccessibleStateSet( rStateSet );
117 :
118 15 : VCLXEdit* pVCLXEdit = static_cast< VCLXEdit* >( GetVCLXWindow() );
119 15 : if ( pVCLXEdit )
120 : {
121 15 : rStateSet.AddState( AccessibleStateType::FOCUSABLE );
122 15 : rStateSet.AddState( AccessibleStateType::SINGLE_LINE );
123 15 : if ( pVCLXEdit->isEditable() )
124 15 : rStateSet.AddState( AccessibleStateType::EDITABLE );
125 : }
126 15 : }
127 :
128 :
129 : // OCommonAccessibleText
130 :
131 :
132 0 : OUString VCLXAccessibleEdit::implGetText()
133 : {
134 0 : OUString aText;
135 :
136 0 : VclPtr< Edit > pEdit = GetAs< Edit >();
137 0 : if ( pEdit )
138 : {
139 0 : aText = OutputDevice::GetNonMnemonicString( pEdit->GetText() );
140 :
141 0 : if ( getAccessibleRole() == AccessibleRole::PASSWORD_TEXT )
142 : {
143 0 : sal_Unicode cEchoChar = pEdit->GetEchoChar();
144 0 : if ( !cEchoChar )
145 0 : cEchoChar = '*';
146 0 : OUStringBuffer sTmp;
147 0 : aText = comphelper::string::padToLength(sTmp, aText.getLength(),
148 0 : cEchoChar).makeStringAndClear();
149 : }
150 : }
151 :
152 0 : return aText;
153 : }
154 :
155 :
156 :
157 18 : void VCLXAccessibleEdit::implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex )
158 : {
159 18 : awt::Selection aSelection;
160 18 : VCLXEdit* pVCLXEdit = static_cast< VCLXEdit* >( GetVCLXWindow() );
161 18 : if ( pVCLXEdit )
162 18 : aSelection = pVCLXEdit->getSelection();
163 :
164 18 : nStartIndex = aSelection.Min;
165 18 : nEndIndex = aSelection.Max;
166 18 : }
167 :
168 :
169 : // XInterface
170 :
171 :
172 816 : IMPLEMENT_FORWARD_XINTERFACE2( VCLXAccessibleEdit, VCLXAccessibleTextComponent, VCLXAccessibleEdit_BASE )
173 :
174 :
175 : // XTypeProvider
176 :
177 :
178 0 : IMPLEMENT_FORWARD_XTYPEPROVIDER2( VCLXAccessibleEdit, VCLXAccessibleTextComponent, VCLXAccessibleEdit_BASE )
179 :
180 :
181 : // XServiceInfo
182 :
183 :
184 1 : OUString VCLXAccessibleEdit::getImplementationName() throw (RuntimeException, std::exception)
185 : {
186 1 : return OUString( "com.sun.star.comp.toolkit.AccessibleEdit" );
187 : }
188 :
189 :
190 :
191 0 : Sequence< OUString > VCLXAccessibleEdit::getSupportedServiceNames() throw (RuntimeException, std::exception)
192 : {
193 0 : Sequence< OUString > aNames(1);
194 0 : aNames[0] = "com.sun.star.awt.AccessibleEdit";
195 0 : return aNames;
196 : }
197 :
198 :
199 : // XAccessibleContext
200 :
201 :
202 12 : sal_Int32 VCLXAccessibleEdit::getAccessibleChildCount() throw (RuntimeException, std::exception)
203 : {
204 12 : OExternalLockGuard aGuard( this );
205 :
206 12 : return 0;
207 : }
208 :
209 :
210 :
211 0 : Reference< XAccessible > VCLXAccessibleEdit::getAccessibleChild( sal_Int32 i ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
212 : {
213 0 : OExternalLockGuard aGuard( this );
214 :
215 0 : if ( i < 0 || i >= getAccessibleChildCount() )
216 0 : throw IndexOutOfBoundsException();
217 :
218 0 : return Reference< XAccessible >();
219 : }
220 :
221 :
222 :
223 44 : sal_Int16 VCLXAccessibleEdit::getAccessibleRole( ) throw (RuntimeException, std::exception)
224 : {
225 44 : OExternalLockGuard aGuard( this );
226 :
227 : sal_Int16 nRole;
228 88 : VclPtr< Edit > pEdit = GetAs< Edit >();
229 44 : if ( pEdit && ( ( pEdit->GetStyle() & WB_PASSWORD ) || pEdit->GetEchoChar() ) )
230 0 : nRole = AccessibleRole::PASSWORD_TEXT;
231 : else
232 44 : nRole = AccessibleRole::TEXT;
233 :
234 88 : return nRole;
235 : }
236 :
237 :
238 : // XAccessibleAction
239 :
240 :
241 0 : sal_Int32 VCLXAccessibleEdit::getAccessibleActionCount( ) throw (RuntimeException, std::exception)
242 : {
243 0 : OExternalLockGuard aGuard( this );
244 :
245 : // There is one action: activate
246 0 : return 1;
247 : }
248 :
249 :
250 :
251 0 : sal_Bool VCLXAccessibleEdit::doAccessibleAction ( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
252 : {
253 0 : OExternalLockGuard aGuard( this );
254 :
255 0 : if ( nIndex < 0 || nIndex >= getAccessibleActionCount() )
256 0 : throw IndexOutOfBoundsException();
257 :
258 0 : bool bDoAction = false;
259 0 : vcl::Window* pWindow = GetWindow();
260 0 : if ( pWindow )
261 : {
262 0 : pWindow->GrabFocus();
263 0 : bDoAction = true;
264 : }
265 :
266 0 : return bDoAction;
267 : }
268 :
269 :
270 :
271 0 : OUString VCLXAccessibleEdit::getAccessibleActionDescription ( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
272 : {
273 0 : OExternalLockGuard aGuard( this );
274 :
275 0 : if ( nIndex < 0 || nIndex >= getAccessibleActionCount() )
276 0 : throw IndexOutOfBoundsException();
277 :
278 0 : return OUString( "activate" );
279 : }
280 :
281 :
282 :
283 0 : Reference< XAccessibleKeyBinding > VCLXAccessibleEdit::getAccessibleActionKeyBinding( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
284 : {
285 0 : OExternalLockGuard aGuard( this );
286 :
287 0 : if ( nIndex < 0 || nIndex >= getAccessibleActionCount() )
288 0 : throw IndexOutOfBoundsException();
289 :
290 0 : return Reference< XAccessibleKeyBinding >();
291 : }
292 :
293 :
294 : // XAccessibleText
295 :
296 :
297 9 : sal_Int32 VCLXAccessibleEdit::getCaretPosition( ) throw (RuntimeException, std::exception)
298 : {
299 9 : return getSelectionEnd();
300 : }
301 :
302 :
303 :
304 0 : sal_Bool VCLXAccessibleEdit::setCaretPosition( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
305 : {
306 0 : return setSelection( nIndex, nIndex );
307 : }
308 :
309 :
310 :
311 0 : sal_Unicode VCLXAccessibleEdit::getCharacter( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
312 : {
313 0 : OExternalLockGuard aGuard( this );
314 :
315 0 : return VCLXAccessibleTextComponent::getCharacter( nIndex );
316 : }
317 :
318 :
319 :
320 0 : Sequence< PropertyValue > VCLXAccessibleEdit::getCharacterAttributes( sal_Int32 nIndex, const Sequence< OUString >& aRequestedAttributes ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
321 : {
322 0 : OExternalLockGuard aGuard( this );
323 :
324 0 : return VCLXAccessibleTextComponent::getCharacterAttributes( nIndex, aRequestedAttributes );
325 : }
326 :
327 :
328 :
329 0 : awt::Rectangle VCLXAccessibleEdit::getCharacterBounds( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
330 : {
331 0 : OExternalLockGuard aGuard( this );
332 :
333 0 : awt::Rectangle aBounds( 0, 0, 0, 0 );
334 0 : sal_Int32 nLength = implGetText().getLength();
335 :
336 0 : if ( !implIsValidRange( nIndex, nIndex, nLength ) )
337 0 : throw IndexOutOfBoundsException();
338 :
339 0 : VclPtr< Control > pControl = GetAs< Control >();
340 0 : if ( pControl )
341 : {
342 0 : if ( nIndex == nLength )
343 : {
344 : // #108914# calculate virtual bounding rectangle
345 0 : for ( sal_Int32 i = 0; i < nLength; ++i )
346 : {
347 0 : Rectangle aRect = pControl->GetCharacterBounds( i );
348 0 : sal_Int32 nHeight = aRect.GetHeight();
349 0 : if ( aBounds.Height < nHeight )
350 : {
351 0 : aBounds.Y = aRect.Top();
352 0 : aBounds.Height = nHeight;
353 : }
354 0 : if ( i == nLength - 1 )
355 : {
356 0 : aBounds.X = aRect.Right() + 1;
357 0 : aBounds.Width = 1;
358 : }
359 : }
360 : }
361 : else
362 : {
363 0 : aBounds = AWTRectangle( pControl->GetCharacterBounds( nIndex ) );
364 : }
365 : }
366 :
367 0 : return aBounds;
368 : }
369 :
370 :
371 :
372 0 : sal_Int32 VCLXAccessibleEdit::getCharacterCount( ) throw (RuntimeException, std::exception)
373 : {
374 0 : OExternalLockGuard aGuard( this );
375 :
376 0 : return VCLXAccessibleTextComponent::getCharacterCount();
377 : }
378 :
379 :
380 :
381 0 : sal_Int32 VCLXAccessibleEdit::getIndexAtPoint( const awt::Point& aPoint ) throw (RuntimeException, std::exception)
382 : {
383 0 : OExternalLockGuard aGuard( this );
384 :
385 0 : return VCLXAccessibleTextComponent::getIndexAtPoint( aPoint );
386 : }
387 :
388 :
389 :
390 0 : OUString VCLXAccessibleEdit::getSelectedText( ) throw (RuntimeException, std::exception)
391 : {
392 0 : OExternalLockGuard aGuard( this );
393 :
394 0 : return VCLXAccessibleTextComponent::getSelectedText();
395 : }
396 :
397 :
398 :
399 9 : sal_Int32 VCLXAccessibleEdit::getSelectionStart( ) throw (RuntimeException, std::exception)
400 : {
401 9 : OExternalLockGuard aGuard( this );
402 :
403 9 : return VCLXAccessibleTextComponent::getSelectionStart();
404 : }
405 :
406 :
407 :
408 9 : sal_Int32 VCLXAccessibleEdit::getSelectionEnd( ) throw (RuntimeException, std::exception)
409 : {
410 9 : OExternalLockGuard aGuard( this );
411 :
412 9 : return VCLXAccessibleTextComponent::getSelectionEnd();
413 : }
414 :
415 :
416 :
417 0 : sal_Bool VCLXAccessibleEdit::setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
418 : {
419 0 : OExternalLockGuard aGuard( this );
420 :
421 0 : bool bReturn = false;
422 0 : OUString sText( implGetText() );
423 :
424 0 : if ( !implIsValidRange( nStartIndex, nEndIndex, sText.getLength() ) )
425 0 : throw IndexOutOfBoundsException();
426 :
427 0 : VCLXEdit* pVCLXEdit = static_cast< VCLXEdit* >( GetVCLXWindow() );
428 0 : VclPtr< Edit > pEdit = GetAs< Edit >();
429 0 : if ( pVCLXEdit && pEdit && pEdit->IsEnabled() )
430 : {
431 0 : pVCLXEdit->setSelection( awt::Selection( nStartIndex, nEndIndex ) );
432 0 : bReturn = true;
433 : }
434 :
435 0 : return bReturn;
436 : }
437 :
438 :
439 :
440 0 : OUString VCLXAccessibleEdit::getText( ) throw (RuntimeException, std::exception)
441 : {
442 0 : OExternalLockGuard aGuard( this );
443 :
444 0 : return VCLXAccessibleTextComponent::getText();
445 : }
446 :
447 :
448 :
449 0 : OUString VCLXAccessibleEdit::getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
450 : {
451 0 : OExternalLockGuard aGuard( this );
452 :
453 0 : return VCLXAccessibleTextComponent::getTextRange( nStartIndex, nEndIndex );
454 : }
455 :
456 :
457 :
458 0 : ::com::sun::star::accessibility::TextSegment VCLXAccessibleEdit::getTextAtIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception)
459 : {
460 0 : OExternalLockGuard aGuard( this );
461 :
462 0 : return VCLXAccessibleTextComponent::getTextAtIndex( nIndex, aTextType );
463 : }
464 :
465 :
466 :
467 0 : ::com::sun::star::accessibility::TextSegment VCLXAccessibleEdit::getTextBeforeIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception)
468 : {
469 0 : OExternalLockGuard aGuard( this );
470 :
471 0 : return VCLXAccessibleTextComponent::getTextBeforeIndex( nIndex, aTextType );
472 : }
473 :
474 :
475 :
476 0 : ::com::sun::star::accessibility::TextSegment VCLXAccessibleEdit::getTextBehindIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception)
477 : {
478 0 : OExternalLockGuard aGuard( this );
479 :
480 0 : return VCLXAccessibleTextComponent::getTextBehindIndex( nIndex, aTextType );
481 : }
482 :
483 :
484 :
485 0 : sal_Bool VCLXAccessibleEdit::copyText( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
486 : {
487 0 : OExternalLockGuard aGuard( this );
488 :
489 0 : return VCLXAccessibleTextComponent::copyText( nStartIndex, nEndIndex );
490 : }
491 :
492 :
493 : // XAccessibleEditableText
494 :
495 :
496 0 : sal_Bool VCLXAccessibleEdit::cutText( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
497 : {
498 0 : OExternalLockGuard aGuard( this );
499 :
500 0 : return copyText( nStartIndex, nEndIndex ) && deleteText( nStartIndex, nEndIndex );
501 : }
502 :
503 :
504 :
505 0 : sal_Bool VCLXAccessibleEdit::pasteText( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
506 : {
507 0 : OExternalLockGuard aGuard( this );
508 :
509 0 : bool bReturn = false;
510 :
511 0 : if ( GetWindow() )
512 : {
513 0 : Reference< datatransfer::clipboard::XClipboard > xClipboard = GetWindow()->GetClipboard();
514 0 : if ( xClipboard.is() )
515 : {
516 0 : Reference< datatransfer::XTransferable > xDataObj;
517 : {
518 0 : SolarMutexReleaser aReleaser;
519 0 : xDataObj = xClipboard->getContents();
520 : }
521 0 : if ( xDataObj.is() )
522 : {
523 0 : datatransfer::DataFlavor aFlavor;
524 0 : SotExchange::GetFormatDataFlavor( SotClipboardFormatId::STRING, aFlavor );
525 0 : if ( xDataObj->isDataFlavorSupported( aFlavor ) )
526 : {
527 0 : Any aData = xDataObj->getTransferData( aFlavor );
528 0 : OUString sText;
529 0 : aData >>= sText;
530 0 : bReturn = replaceText( nIndex, nIndex, sText );
531 0 : }
532 0 : }
533 0 : }
534 : }
535 :
536 0 : return bReturn;
537 : }
538 :
539 :
540 :
541 0 : sal_Bool VCLXAccessibleEdit::deleteText( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
542 : {
543 0 : OExternalLockGuard aGuard( this );
544 :
545 0 : return replaceText( nStartIndex, nEndIndex, OUString() );
546 : }
547 :
548 :
549 :
550 0 : sal_Bool VCLXAccessibleEdit::insertText( const OUString& sText, sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
551 : {
552 0 : OExternalLockGuard aGuard( this );
553 :
554 0 : return replaceText( nIndex, nIndex, sText );
555 : }
556 :
557 :
558 :
559 0 : sal_Bool VCLXAccessibleEdit::replaceText( sal_Int32 nStartIndex, sal_Int32 nEndIndex, const OUString& sReplacement ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
560 : {
561 0 : OExternalLockGuard aGuard( this );
562 :
563 0 : bool bReturn = false;
564 0 : OUString sText( implGetText() );
565 :
566 0 : if ( !implIsValidRange( nStartIndex, nEndIndex, sText.getLength() ) )
567 0 : throw IndexOutOfBoundsException();
568 :
569 0 : sal_Int32 nMinIndex = ::std::min( nStartIndex, nEndIndex );
570 0 : sal_Int32 nMaxIndex = ::std::max( nStartIndex, nEndIndex );
571 :
572 0 : VCLXEdit* pVCLXEdit = static_cast< VCLXEdit* >( GetVCLXWindow() );
573 0 : if ( pVCLXEdit && pVCLXEdit->isEditable() )
574 : {
575 0 : pVCLXEdit->setText( sText.replaceAt( nMinIndex, nMaxIndex - nMinIndex, sReplacement ) );
576 0 : sal_Int32 nIndex = nMinIndex + sReplacement.getLength();
577 0 : setSelection( nIndex, nIndex );
578 0 : bReturn = true;
579 : }
580 :
581 0 : return bReturn;
582 : }
583 :
584 :
585 :
586 0 : sal_Bool VCLXAccessibleEdit::setAttributes( sal_Int32 nStartIndex, sal_Int32 nEndIndex, const Sequence<PropertyValue>& ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
587 : {
588 0 : OExternalLockGuard aGuard( this );
589 :
590 0 : if ( !implIsValidRange( nStartIndex, nEndIndex, implGetText().getLength() ) )
591 0 : throw IndexOutOfBoundsException();
592 :
593 0 : return false; // attributes cannot be set for an edit
594 : }
595 :
596 :
597 :
598 0 : sal_Bool VCLXAccessibleEdit::setText( const OUString& sText ) throw (RuntimeException, std::exception)
599 : {
600 0 : OExternalLockGuard aGuard( this );
601 :
602 0 : bool bSuccess = false;
603 : try
604 : {
605 0 : bSuccess = replaceText( 0, implGetText().getLength(), sText );
606 : }
607 0 : catch( const IndexOutOfBoundsException& )
608 : {
609 : OSL_FAIL( "VCLXAccessibleText::setText: caught an exception!" );
610 : }
611 0 : return bSuccess;
612 36 : }
613 :
614 :
615 :
616 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|