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/vclxaccessiblemenuitem.hxx>
21 : #include <accessibility/helper/accresmgr.hxx>
22 : #include <accessibility/helper/accessiblestrings.hrc>
23 : #include <toolkit/helper/convert.hxx>
24 : #include <accessibility/helper/characterattributeshelper.hxx>
25 : #include <comphelper/accessiblekeybindinghelper.hxx>
26 : #include <com/sun/star/awt/KeyModifier.hpp>
27 :
28 : #include <com/sun/star/accessibility/AccessibleRole.hpp>
29 : #include <com/sun/star/accessibility/AccessibleStateType.hpp>
30 : #include <com/sun/star/datatransfer/clipboard/XClipboard.hpp>
31 : #include <com/sun/star/datatransfer/clipboard/XFlushableClipboard.hpp>
32 : #include <unotools/accessiblestatesethelper.hxx>
33 : #include <comphelper/sequence.hxx>
34 : #include <vcl/svapp.hxx>
35 : #include <vcl/window.hxx>
36 : #include <vcl/menu.hxx>
37 : #include <vcl/unohelp2.hxx>
38 : #include <vcl/settings.hxx>
39 :
40 : using namespace ::com::sun::star::accessibility;
41 : using namespace ::com::sun::star::uno;
42 : using namespace ::com::sun::star::beans;
43 : using namespace ::com::sun::star::lang;
44 : using namespace ::com::sun::star;
45 : using namespace ::comphelper;
46 :
47 :
48 :
49 : // class VCLXAccessibleMenuItem
50 :
51 :
52 2148 : VCLXAccessibleMenuItem::VCLXAccessibleMenuItem( Menu* pParent, sal_uInt16 nItemPos, Menu* pMenu )
53 2148 : :OAccessibleMenuItemComponent( pParent, nItemPos, pMenu )
54 : {
55 2148 : }
56 :
57 :
58 :
59 3971 : VCLXAccessibleMenuItem::~VCLXAccessibleMenuItem()
60 : {
61 3971 : }
62 :
63 :
64 :
65 3893 : bool VCLXAccessibleMenuItem::IsFocused()
66 : {
67 3893 : return IsHighlighted();
68 : }
69 :
70 :
71 :
72 4584 : bool VCLXAccessibleMenuItem::IsSelected()
73 : {
74 4584 : return IsHighlighted();
75 : }
76 :
77 :
78 :
79 4584 : bool VCLXAccessibleMenuItem::IsChecked()
80 : {
81 4584 : bool bChecked = false;
82 :
83 4584 : if ( m_pParent )
84 : {
85 4584 : sal_uInt16 nItemId = m_pParent->GetItemId( m_nItemPos );
86 4584 : if ( m_pParent->IsItemChecked( nItemId ) )
87 18 : bChecked = true;
88 : }
89 :
90 4584 : return bChecked;
91 : }
92 :
93 :
94 :
95 9168 : bool VCLXAccessibleMenuItem::IsHighlighted()
96 : {
97 9168 : bool bHighlighted = false;
98 :
99 9168 : if ( m_pParent && m_pParent->IsHighlighted( m_nItemPos ) )
100 0 : bHighlighted = true;
101 :
102 9168 : return bHighlighted;
103 : }
104 :
105 :
106 :
107 2436 : void VCLXAccessibleMenuItem::FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet )
108 : {
109 2436 : OAccessibleMenuItemComponent::FillAccessibleStateSet( rStateSet );
110 :
111 2436 : rStateSet.AddState( AccessibleStateType::FOCUSABLE );
112 :
113 2436 : if ( IsFocused() )
114 0 : rStateSet.AddState( AccessibleStateType::FOCUSED );
115 :
116 2436 : rStateSet.AddState( AccessibleStateType::SELECTABLE );
117 :
118 2436 : if ( IsSelected() )
119 0 : rStateSet.AddState( AccessibleStateType::SELECTED );
120 :
121 2436 : if ( IsChecked() )
122 9 : rStateSet.AddState( AccessibleStateType::CHECKED );
123 2436 : }
124 :
125 :
126 : // OCommonAccessibleText
127 :
128 :
129 2 : OUString VCLXAccessibleMenuItem::implGetText()
130 : {
131 2 : return m_sItemText;
132 : }
133 :
134 :
135 :
136 0 : Locale VCLXAccessibleMenuItem::implGetLocale()
137 : {
138 0 : return Application::GetSettings().GetLanguageTag().getLocale();
139 : }
140 :
141 :
142 :
143 0 : void VCLXAccessibleMenuItem::implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex )
144 : {
145 0 : nStartIndex = 0;
146 0 : nEndIndex = 0;
147 0 : }
148 :
149 :
150 : // XInterface
151 :
152 :
153 90916 : IMPLEMENT_FORWARD_XINTERFACE2( VCLXAccessibleMenuItem, OAccessibleMenuItemComponent, VCLXAccessibleMenuItem_BASE )
154 :
155 :
156 : // XTypeProvider
157 :
158 :
159 0 : IMPLEMENT_FORWARD_XTYPEPROVIDER2( VCLXAccessibleMenuItem, OAccessibleMenuItemComponent, VCLXAccessibleMenuItem_BASE )
160 :
161 :
162 : // XServiceInfo
163 :
164 :
165 18 : OUString VCLXAccessibleMenuItem::getImplementationName() throw (RuntimeException, std::exception)
166 : {
167 18 : return OUString( "com.sun.star.comp.toolkit.AccessibleMenuItem" );
168 : }
169 :
170 :
171 :
172 0 : Sequence< OUString > VCLXAccessibleMenuItem::getSupportedServiceNames() throw (RuntimeException, std::exception)
173 : {
174 0 : Sequence< OUString > aNames(1);
175 0 : aNames[0] = "com.sun.star.awt.AccessibleMenuItem";
176 0 : return aNames;
177 : }
178 :
179 :
180 : // XAccessibleContext
181 :
182 :
183 2124 : sal_Int16 VCLXAccessibleMenuItem::getAccessibleRole( ) throw (RuntimeException, std::exception)
184 : {
185 2124 : OExternalLockGuard aGuard( this );
186 : // IA2 CWS. MT: We had the additional roles in UAA for ever, but never used them anywhere.
187 : // Looks reasonable, but need to verify in Orca and VoiceOver.
188 2124 : sal_Int16 nRole = AccessibleRole::MENU_ITEM;
189 2124 : if ( m_pParent )
190 : {
191 2124 : sal_uInt16 nItemId = m_pParent->GetItemId( m_nItemPos );
192 2124 : MenuItemBits nItemBits = m_pParent->GetItemBits(nItemId);
193 2124 : if( nItemBits & MenuItemBits::RADIOCHECK)
194 99 : nRole = AccessibleRole::RADIO_MENU_ITEM;
195 2025 : else if( nItemBits & MenuItemBits::CHECKABLE)
196 36 : nRole = AccessibleRole::CHECK_MENU_ITEM;
197 : }
198 2124 : return nRole;
199 : }
200 :
201 :
202 : // XAccessibleText
203 :
204 :
205 0 : sal_Int32 VCLXAccessibleMenuItem::getCaretPosition() throw (RuntimeException, std::exception)
206 : {
207 0 : OExternalLockGuard aGuard( this );
208 :
209 0 : return -1;
210 : }
211 :
212 :
213 :
214 0 : sal_Bool VCLXAccessibleMenuItem::setCaretPosition( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
215 : {
216 :
217 0 : OExternalLockGuard aGuard( this );
218 :
219 0 : if ( !implIsValidRange( nIndex, nIndex, implGetText().getLength() ) )
220 0 : throw IndexOutOfBoundsException();
221 :
222 0 : return false;
223 : }
224 :
225 :
226 :
227 0 : sal_Unicode VCLXAccessibleMenuItem::getCharacter( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
228 : {
229 0 : OExternalLockGuard aGuard( this );
230 :
231 0 : return OCommonAccessibleText::getCharacter( nIndex );
232 : }
233 :
234 :
235 :
236 0 : Sequence< PropertyValue > VCLXAccessibleMenuItem::getCharacterAttributes( sal_Int32 nIndex, const Sequence< OUString >& aRequestedAttributes ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
237 : {
238 0 : OExternalLockGuard aGuard( this );
239 :
240 0 : OUString sText( implGetText() );
241 :
242 0 : if ( !implIsValidIndex( nIndex, sText.getLength() ) )
243 0 : throw IndexOutOfBoundsException();
244 :
245 0 : vcl::Font aFont = Application::GetSettings().GetStyleSettings().GetMenuFont();
246 0 : sal_Int32 nBackColor = getBackground();
247 0 : sal_Int32 nColor = getForeground();
248 : return CharacterAttributesHelper( aFont, nBackColor, nColor )
249 0 : .GetCharacterAttributes( aRequestedAttributes );
250 : }
251 :
252 :
253 :
254 0 : awt::Rectangle VCLXAccessibleMenuItem::getCharacterBounds( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
255 : {
256 0 : OExternalLockGuard aGuard( this );
257 :
258 0 : if ( !implIsValidIndex( nIndex, implGetText().getLength() ) )
259 0 : throw IndexOutOfBoundsException();
260 :
261 0 : awt::Rectangle aBounds( 0, 0, 0, 0 );
262 0 : if ( m_pParent )
263 : {
264 0 : sal_uInt16 nItemId = m_pParent->GetItemId( m_nItemPos );
265 0 : Rectangle aItemRect = m_pParent->GetBoundingRectangle( m_nItemPos );
266 0 : Rectangle aCharRect = m_pParent->GetCharacterBounds( nItemId, nIndex );
267 0 : aCharRect.Move( -aItemRect.Left(), -aItemRect.Top() );
268 0 : aBounds = AWTRectangle( aCharRect );
269 : }
270 :
271 0 : return aBounds;
272 : }
273 :
274 :
275 :
276 0 : sal_Int32 VCLXAccessibleMenuItem::getCharacterCount() throw (RuntimeException, std::exception)
277 : {
278 0 : OExternalLockGuard aGuard( this );
279 :
280 0 : return OCommonAccessibleText::getCharacterCount();
281 : }
282 :
283 :
284 :
285 0 : sal_Int32 VCLXAccessibleMenuItem::getIndexAtPoint( const awt::Point& aPoint ) throw (RuntimeException, std::exception)
286 : {
287 0 : OExternalLockGuard aGuard( this );
288 :
289 0 : sal_Int32 nIndex = -1;
290 0 : if ( m_pParent )
291 : {
292 0 : sal_uInt16 nItemId = 0;
293 0 : Rectangle aItemRect = m_pParent->GetBoundingRectangle( m_nItemPos );
294 0 : Point aPnt( VCLPoint( aPoint ) );
295 0 : aPnt += aItemRect.TopLeft();
296 0 : sal_Int32 nI = m_pParent->GetIndexForPoint( aPnt, nItemId );
297 0 : if ( nI != -1 && m_pParent->GetItemId( m_nItemPos ) == nItemId )
298 0 : nIndex = nI;
299 : }
300 :
301 0 : return nIndex;
302 : }
303 :
304 :
305 :
306 0 : OUString VCLXAccessibleMenuItem::getSelectedText() throw (RuntimeException, std::exception)
307 : {
308 0 : OExternalLockGuard aGuard( this );
309 :
310 0 : return OCommonAccessibleText::getSelectedText();
311 : }
312 :
313 :
314 :
315 0 : sal_Int32 VCLXAccessibleMenuItem::getSelectionStart() throw (RuntimeException, std::exception)
316 : {
317 0 : OExternalLockGuard aGuard( this );
318 :
319 0 : return OCommonAccessibleText::getSelectionStart();
320 : }
321 :
322 :
323 :
324 0 : sal_Int32 VCLXAccessibleMenuItem::getSelectionEnd() throw (RuntimeException, std::exception)
325 : {
326 0 : OExternalLockGuard aGuard( this );
327 :
328 0 : return OCommonAccessibleText::getSelectionEnd();
329 : }
330 :
331 :
332 :
333 0 : sal_Bool VCLXAccessibleMenuItem::setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
334 : {
335 0 : OExternalLockGuard aGuard( this );
336 :
337 0 : if ( !implIsValidRange( nStartIndex, nEndIndex, implGetText().getLength() ) )
338 0 : throw IndexOutOfBoundsException();
339 :
340 0 : return false;
341 : }
342 :
343 :
344 :
345 2 : OUString VCLXAccessibleMenuItem::getText() throw (RuntimeException, std::exception)
346 : {
347 2 : OExternalLockGuard aGuard( this );
348 :
349 2 : return OCommonAccessibleText::getText();
350 : }
351 :
352 :
353 :
354 0 : OUString VCLXAccessibleMenuItem::getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
355 : {
356 0 : OExternalLockGuard aGuard( this );
357 :
358 0 : return OCommonAccessibleText::getTextRange( nStartIndex, nEndIndex );
359 : }
360 :
361 :
362 :
363 0 : ::com::sun::star::accessibility::TextSegment VCLXAccessibleMenuItem::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)
364 : {
365 0 : OExternalLockGuard aGuard( this );
366 :
367 0 : return OCommonAccessibleText::getTextAtIndex( nIndex, aTextType );
368 : }
369 :
370 :
371 :
372 0 : ::com::sun::star::accessibility::TextSegment VCLXAccessibleMenuItem::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)
373 : {
374 0 : OExternalLockGuard aGuard( this );
375 :
376 0 : return OCommonAccessibleText::getTextBeforeIndex( nIndex, aTextType );
377 : }
378 :
379 :
380 :
381 0 : ::com::sun::star::accessibility::TextSegment VCLXAccessibleMenuItem::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)
382 : {
383 0 : OExternalLockGuard aGuard( this );
384 :
385 0 : return OCommonAccessibleText::getTextBehindIndex( nIndex, aTextType );
386 : }
387 :
388 :
389 :
390 0 : sal_Bool VCLXAccessibleMenuItem::copyText( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
391 : {
392 0 : OExternalLockGuard aGuard( this );
393 :
394 0 : bool bReturn = false;
395 :
396 0 : if ( m_pParent )
397 : {
398 0 : vcl::Window* pWindow = m_pParent->GetWindow();
399 0 : if ( pWindow )
400 : {
401 0 : Reference< datatransfer::clipboard::XClipboard > xClipboard = pWindow->GetClipboard();
402 0 : if ( xClipboard.is() )
403 : {
404 0 : OUString sText( getTextRange( nStartIndex, nEndIndex ) );
405 :
406 0 : vcl::unohelper::TextDataObject* pDataObj = new vcl::unohelper::TextDataObject( sText );
407 :
408 0 : SolarMutexReleaser aReleaser;
409 0 : xClipboard->setContents( pDataObj, NULL );
410 0 : Reference< datatransfer::clipboard::XFlushableClipboard > xFlushableClipboard( xClipboard, uno::UNO_QUERY );
411 0 : if( xFlushableClipboard.is() )
412 0 : xFlushableClipboard->flushClipboard();
413 :
414 0 : bReturn = true;
415 0 : }
416 : }
417 : }
418 :
419 0 : return bReturn;
420 : }
421 :
422 :
423 : // XAccessibleAction
424 :
425 :
426 15 : sal_Int32 VCLXAccessibleMenuItem::getAccessibleActionCount( ) throw (RuntimeException, std::exception)
427 : {
428 15 : OExternalLockGuard aGuard( this );
429 :
430 15 : return 1;
431 : }
432 :
433 :
434 :
435 9 : sal_Bool VCLXAccessibleMenuItem::doAccessibleAction ( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
436 : {
437 9 : OExternalLockGuard aGuard( this );
438 :
439 9 : if ( nIndex < 0 || nIndex >= getAccessibleActionCount() )
440 1 : throw IndexOutOfBoundsException();
441 :
442 8 : Click();
443 :
444 9 : return true;
445 : }
446 :
447 :
448 :
449 0 : OUString VCLXAccessibleMenuItem::getAccessibleActionDescription ( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
450 : {
451 0 : OExternalLockGuard aGuard( this );
452 :
453 0 : if ( nIndex < 0 || nIndex >= getAccessibleActionCount() )
454 0 : throw IndexOutOfBoundsException();
455 :
456 0 : return TK_RES_STRING( RID_STR_ACC_ACTION_SELECT );
457 : }
458 :
459 :
460 :
461 2 : Reference< XAccessibleKeyBinding > VCLXAccessibleMenuItem::getAccessibleActionKeyBinding( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
462 : {
463 2 : OExternalLockGuard aGuard( this );
464 :
465 2 : if ( nIndex < 0 || nIndex >= getAccessibleActionCount() )
466 1 : throw IndexOutOfBoundsException();
467 :
468 1 : OAccessibleKeyBindingHelper* pKeyBindingHelper = new OAccessibleKeyBindingHelper();
469 1 : Reference< XAccessibleKeyBinding > xKeyBinding = pKeyBindingHelper;
470 :
471 1 : if ( m_pParent )
472 : {
473 : // create auto mnemonics
474 1 : if ( Application::GetSettings().GetStyleSettings().GetAutoMnemonic() && !( m_pParent->GetMenuFlags() & MenuFlags::NoAutoMnemonics ) )
475 1 : m_pParent->CreateAutoMnemonics();
476 :
477 : // activation key
478 1 : KeyEvent aKeyEvent = m_pParent->GetActivationKey( m_pParent->GetItemId( m_nItemPos ) );
479 1 : vcl::KeyCode aKeyCode = aKeyEvent.GetKeyCode();
480 1 : Sequence< awt::KeyStroke > aSeq1(1);
481 1 : aSeq1[0].Modifiers = 0;
482 2 : Reference< XAccessible > xParent( getAccessibleParent() );
483 1 : if ( xParent.is() )
484 : {
485 1 : Reference< XAccessibleContext > xParentContext( xParent->getAccessibleContext() );
486 1 : if ( xParentContext.is() && xParentContext->getAccessibleRole() == AccessibleRole::MENU_BAR )
487 1 : aSeq1[0].Modifiers |= awt::KeyModifier::MOD2;
488 : }
489 1 : aSeq1[0].KeyCode = aKeyCode.GetCode();
490 1 : aSeq1[0].KeyChar = aKeyEvent.GetCharCode();
491 1 : aSeq1[0].KeyFunc = static_cast< sal_Int16 >( aKeyCode.GetFunction() );
492 1 : pKeyBindingHelper->AddKeyBinding( aSeq1 );
493 :
494 : // complete menu activation key sequence
495 2 : Sequence< awt::KeyStroke > aSeq;
496 1 : if ( xParent.is() )
497 : {
498 1 : Reference< XAccessibleContext > xParentContext( xParent->getAccessibleContext() );
499 1 : if ( xParentContext.is() && xParentContext->getAccessibleRole() == AccessibleRole::MENU )
500 : {
501 0 : Reference< XAccessibleAction > xAction( xParentContext, UNO_QUERY );
502 0 : if ( xAction.is() && xAction->getAccessibleActionCount() > 0 )
503 : {
504 0 : Reference< XAccessibleKeyBinding > xKeyB( xAction->getAccessibleActionKeyBinding( 0 ) );
505 0 : if ( xKeyB.is() && xKeyB->getAccessibleKeyBindingCount() > 1 )
506 0 : aSeq = xKeyB->getAccessibleKeyBinding( 1 );
507 0 : }
508 1 : }
509 : }
510 2 : Sequence< awt::KeyStroke > aSeq2 = ::comphelper::concatSequences( aSeq, aSeq1 );
511 1 : pKeyBindingHelper->AddKeyBinding( aSeq2 );
512 :
513 : // accelerator key
514 1 : vcl::KeyCode aAccelKeyCode = m_pParent->GetAccelKey( m_pParent->GetItemId( m_nItemPos ) );
515 1 : if ( aAccelKeyCode.GetCode() != 0 )
516 : {
517 0 : Sequence< awt::KeyStroke > aSeq3(1);
518 0 : aSeq3[0].Modifiers = 0;
519 0 : if ( aAccelKeyCode.IsShift() )
520 0 : aSeq3[0].Modifiers |= awt::KeyModifier::SHIFT;
521 0 : if ( aAccelKeyCode.IsMod1() )
522 0 : aSeq3[0].Modifiers |= awt::KeyModifier::MOD1;
523 0 : if ( aAccelKeyCode.IsMod2() )
524 0 : aSeq3[0].Modifiers |= awt::KeyModifier::MOD2;
525 0 : if ( aAccelKeyCode.IsMod3() )
526 0 : aSeq3[0].Modifiers |= awt::KeyModifier::MOD3;
527 0 : aSeq3[0].KeyCode = aAccelKeyCode.GetCode();
528 0 : aSeq3[0].KeyFunc = static_cast< sal_Int16 >( aAccelKeyCode.GetFunction() );
529 0 : pKeyBindingHelper->AddKeyBinding( aSeq3 );
530 1 : }
531 : }
532 :
533 2 : return xKeyBinding;
534 : }
535 :
536 :
537 : // XAccessibleValue
538 :
539 :
540 0 : Any VCLXAccessibleMenuItem::getCurrentValue( ) throw (RuntimeException, std::exception)
541 : {
542 0 : OExternalLockGuard aGuard( this );
543 :
544 0 : Any aValue;
545 0 : if ( IsSelected() )
546 0 : aValue <<= (sal_Int32) 1;
547 : else
548 0 : aValue <<= (sal_Int32) 0;
549 :
550 0 : return aValue;
551 : }
552 :
553 :
554 :
555 0 : sal_Bool VCLXAccessibleMenuItem::setCurrentValue( const Any& aNumber ) throw (RuntimeException, std::exception)
556 : {
557 0 : OExternalLockGuard aGuard( this );
558 :
559 0 : bool bReturn = false;
560 0 : sal_Int32 nValue = 0;
561 0 : OSL_VERIFY( aNumber >>= nValue );
562 :
563 0 : if ( nValue <= 0 )
564 : {
565 0 : DeSelect();
566 0 : bReturn = true;
567 : }
568 0 : else if ( nValue >= 1 )
569 : {
570 0 : Select();
571 0 : bReturn = true;
572 : }
573 :
574 0 : return bReturn;
575 : }
576 :
577 :
578 :
579 0 : Any VCLXAccessibleMenuItem::getMaximumValue( ) throw (RuntimeException, std::exception)
580 : {
581 0 : OExternalLockGuard aGuard( this );
582 :
583 0 : Any aValue;
584 0 : aValue <<= (sal_Int32) 1;
585 :
586 0 : return aValue;
587 : }
588 :
589 :
590 :
591 0 : Any VCLXAccessibleMenuItem::getMinimumValue( ) throw (RuntimeException, std::exception)
592 : {
593 0 : OExternalLockGuard aGuard( this );
594 :
595 0 : Any aValue;
596 0 : aValue <<= (sal_Int32) 0;
597 :
598 0 : return aValue;
599 : }
600 :
601 :
602 :
603 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|