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/accessiblemenuitemcomponent.hxx>
21 :
22 :
23 : #include <accessibility/helper/accresmgr.hxx>
24 : #include <accessibility/helper/accessiblestrings.hrc>
25 : #include <toolkit/awt/vclxwindows.hxx>
26 : #include <toolkit/helper/externallock.hxx>
27 : #include <toolkit/helper/convert.hxx>
28 :
29 : #include <com/sun/star/accessibility/AccessibleEventId.hpp>
30 : #include <com/sun/star/accessibility/AccessibleRole.hpp>
31 : #include <com/sun/star/accessibility/AccessibleStateType.hpp>
32 : #include <com/sun/star/datatransfer/clipboard/XClipboard.hpp>
33 : #include <com/sun/star/datatransfer/clipboard/XFlushableClipboard.hpp>
34 :
35 : #include <unotools/accessiblestatesethelper.hxx>
36 : #include <unotools/accessiblerelationsethelper.hxx>
37 : #include <cppuhelper/typeprovider.hxx>
38 : #include <comphelper/sequence.hxx>
39 : #include <comphelper/accessibletexthelper.hxx>
40 : #include <vcl/svapp.hxx>
41 : #include <vcl/window.hxx>
42 : #include <vcl/menu.hxx>
43 : #include <vcl/unohelp2.hxx>
44 : #include <vcl/settings.hxx>
45 :
46 : using namespace ::com::sun::star::accessibility;
47 : using namespace ::com::sun::star::uno;
48 : using namespace ::com::sun::star::beans;
49 : using namespace ::com::sun::star::lang;
50 : using namespace ::com::sun::star;
51 : using namespace ::comphelper;
52 :
53 :
54 :
55 : // class OAccessibleMenuItemComponent
56 :
57 :
58 3970 : OAccessibleMenuItemComponent::OAccessibleMenuItemComponent( Menu* pParent, sal_uInt16 nItemPos, Menu* pMenu )
59 : :OAccessibleMenuBaseComponent( pMenu )
60 : ,m_pParent( pParent )
61 3970 : ,m_nItemPos( nItemPos )
62 : {
63 3970 : m_sAccessibleName = GetAccessibleName();
64 3970 : m_sItemText = GetItemText();
65 3970 : }
66 :
67 :
68 :
69 3970 : OAccessibleMenuItemComponent::~OAccessibleMenuItemComponent()
70 : {
71 3970 : }
72 :
73 :
74 :
75 8508 : bool OAccessibleMenuItemComponent::IsEnabled()
76 : {
77 8508 : OExternalLockGuard aGuard( this );
78 :
79 8508 : bool bEnabled = false;
80 8508 : if ( m_pParent )
81 8508 : bEnabled = m_pParent->IsItemEnabled( m_pParent->GetItemId( m_nItemPos ) );
82 :
83 8508 : return bEnabled;
84 : }
85 :
86 :
87 :
88 8844 : bool OAccessibleMenuItemComponent::IsVisible()
89 : {
90 8844 : bool bVisible = false;
91 :
92 8844 : if ( m_pParent )
93 8844 : bVisible = m_pParent->IsItemPosVisible( m_nItemPos );
94 :
95 8844 : return bVisible;
96 : }
97 :
98 :
99 :
100 0 : void OAccessibleMenuItemComponent::Select()
101 : {
102 : // open the parent menu
103 0 : Reference< XAccessible > xParent( getAccessibleParent() );
104 0 : if ( xParent.is() )
105 : {
106 0 : OAccessibleMenuBaseComponent* pComp = static_cast< OAccessibleMenuBaseComponent* >( xParent.get() );
107 0 : if ( pComp && pComp->getAccessibleRole() == AccessibleRole::MENU && !pComp->IsPopupMenuOpen() )
108 0 : pComp->Click();
109 : }
110 :
111 : // highlight the menu item
112 0 : if ( m_pParent )
113 0 : m_pParent->HighlightItem( m_nItemPos );
114 0 : }
115 :
116 :
117 :
118 0 : void OAccessibleMenuItemComponent::DeSelect()
119 : {
120 0 : if ( m_pParent && IsSelected() )
121 0 : m_pParent->DeHighlight();
122 0 : }
123 :
124 :
125 :
126 16 : void OAccessibleMenuItemComponent::Click()
127 : {
128 : // open the parent menu
129 16 : Reference< XAccessible > xParent( getAccessibleParent() );
130 16 : if ( xParent.is() )
131 : {
132 16 : OAccessibleMenuBaseComponent* pComp = static_cast< OAccessibleMenuBaseComponent* >( xParent.get() );
133 16 : if ( pComp && pComp->getAccessibleRole() == AccessibleRole::MENU && !pComp->IsPopupMenuOpen() )
134 0 : pComp->Click();
135 : }
136 :
137 : // click the menu item
138 16 : if ( m_pParent )
139 : {
140 16 : vcl::Window* pWindow = m_pParent->GetWindow();
141 16 : if ( pWindow )
142 : {
143 : // #102438# Menu items are not selectable
144 : // Popup menus are executed asynchronously, triggered by a timer.
145 : // As Menu::SelectItem only works, if the corresponding menu window is
146 : // already created, we have to set the menu delay to 0, so
147 : // that the popup menus are executed synchronously.
148 16 : AllSettings aSettings = pWindow->GetSettings();
149 32 : MouseSettings aMouseSettings = aSettings.GetMouseSettings();
150 16 : sal_uLong nDelay = aMouseSettings.GetMenuDelay();
151 16 : aMouseSettings.SetMenuDelay( 0 );
152 16 : aSettings.SetMouseSettings( aMouseSettings );
153 16 : pWindow->SetSettings( aSettings );
154 :
155 16 : m_pParent->SelectItem( m_pParent->GetItemId( m_nItemPos ) );
156 :
157 : // meanwhile the window pointer may be invalid
158 16 : pWindow = m_pParent->GetWindow();
159 16 : if ( pWindow )
160 : {
161 : // set the menu delay back to the old value
162 16 : aSettings = pWindow->GetSettings();
163 16 : aMouseSettings = aSettings.GetMouseSettings();
164 16 : aMouseSettings.SetMenuDelay( nDelay );
165 16 : aSettings.SetMouseSettings( aMouseSettings );
166 16 : pWindow->SetSettings( aSettings );
167 16 : }
168 : }
169 16 : }
170 16 : }
171 :
172 :
173 :
174 3112 : void OAccessibleMenuItemComponent::SetItemPos( sal_uInt16 nItemPos )
175 : {
176 3112 : m_nItemPos = nItemPos;
177 3112 : }
178 :
179 :
180 :
181 0 : void OAccessibleMenuItemComponent::SetAccessibleName( const OUString& sAccessibleName )
182 : {
183 0 : if ( !m_sAccessibleName.equals( sAccessibleName ) )
184 : {
185 0 : Any aOldValue, aNewValue;
186 0 : aOldValue <<= m_sAccessibleName;
187 0 : aNewValue <<= sAccessibleName;
188 0 : m_sAccessibleName = sAccessibleName;
189 0 : NotifyAccessibleEvent( AccessibleEventId::NAME_CHANGED, aOldValue, aNewValue );
190 : }
191 0 : }
192 :
193 :
194 :
195 3970 : OUString OAccessibleMenuItemComponent::GetAccessibleName()
196 : {
197 3970 : OUString sName;
198 3970 : if ( m_pParent )
199 : {
200 3970 : sal_uInt16 nItemId = m_pParent->GetItemId( m_nItemPos );
201 3970 : sName = m_pParent->GetAccessibleName( nItemId );
202 3970 : if ( sName.isEmpty() )
203 3970 : sName = m_pParent->GetItemText( nItemId );
204 3970 : sName = OutputDevice::GetNonMnemonicString( sName );
205 : }
206 :
207 3970 : return sName;
208 : }
209 :
210 :
211 :
212 0 : void OAccessibleMenuItemComponent::SetItemText( const OUString& sItemText )
213 : {
214 0 : Any aOldValue, aNewValue;
215 0 : if ( OCommonAccessibleText::implInitTextChangedEvent( m_sItemText, sItemText, aOldValue, aNewValue ) )
216 : {
217 0 : m_sItemText = sItemText;
218 0 : NotifyAccessibleEvent( AccessibleEventId::TEXT_CHANGED, aOldValue, aNewValue );
219 0 : }
220 0 : }
221 :
222 :
223 :
224 3970 : OUString OAccessibleMenuItemComponent::GetItemText()
225 : {
226 3970 : OUString sText;
227 3970 : if ( m_pParent )
228 3970 : sText = OutputDevice::GetNonMnemonicString( m_pParent->GetItemText( m_pParent->GetItemId( m_nItemPos ) ) );
229 :
230 3970 : return sText;
231 : }
232 :
233 :
234 :
235 4538 : void OAccessibleMenuItemComponent::FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet )
236 : {
237 4538 : bool bEnabled = IsEnabled();
238 4538 : if ( bEnabled )
239 : {
240 4432 : rStateSet.AddState( AccessibleStateType::ENABLED );
241 4432 : rStateSet.AddState( AccessibleStateType::SENSITIVE );
242 : }
243 :
244 4538 : if ( IsVisible() )
245 : {
246 158 : rStateSet.AddState( AccessibleStateType::SHOWING );
247 158 : if( !IsMenuHideDisabledEntries() || bEnabled )
248 158 : rStateSet.AddState( AccessibleStateType::VISIBLE );
249 : }
250 4538 : rStateSet.AddState( AccessibleStateType::OPAQUE );
251 4538 : }
252 :
253 :
254 : // OCommonAccessibleComponent
255 :
256 :
257 3104 : awt::Rectangle OAccessibleMenuItemComponent::implGetBounds() throw (RuntimeException)
258 : {
259 3104 : awt::Rectangle aBounds( 0, 0, 0, 0 );
260 :
261 3104 : if ( m_pParent )
262 : {
263 : // get bounding rectangle of the item relative to the containing window
264 3104 : aBounds = AWTRectangle( m_pParent->GetBoundingRectangle( m_nItemPos ) );
265 :
266 : // get position of containing window in screen coordinates
267 3104 : vcl::Window* pWindow = m_pParent->GetWindow();
268 3104 : if ( pWindow )
269 : {
270 3104 : Rectangle aRect = pWindow->GetWindowExtentsRelative( NULL );
271 3104 : awt::Point aWindowScreenLoc = AWTPoint( aRect.TopLeft() );
272 :
273 : // get position of accessible parent in screen coordinates
274 3104 : Reference< XAccessible > xParent = getAccessibleParent();
275 3104 : if ( xParent.is() )
276 : {
277 3104 : Reference< XAccessibleComponent > xParentComponent( xParent->getAccessibleContext(), UNO_QUERY );
278 3104 : if ( xParentComponent.is() )
279 : {
280 3104 : awt::Point aParentScreenLoc = xParentComponent->getLocationOnScreen();
281 :
282 : // calculate bounding rectangle of the item relative to the accessible parent
283 3104 : aBounds.X += aWindowScreenLoc.X - aParentScreenLoc.X;
284 3104 : aBounds.Y += aWindowScreenLoc.Y - aParentScreenLoc.Y;
285 3104 : }
286 3104 : }
287 : }
288 : }
289 :
290 3104 : return aBounds;
291 : }
292 :
293 :
294 : // XComponent
295 :
296 :
297 3970 : void SAL_CALL OAccessibleMenuItemComponent::disposing()
298 : {
299 3970 : OAccessibleMenuBaseComponent::disposing();
300 :
301 3970 : m_pParent = NULL;
302 3970 : m_sAccessibleName = OUString();
303 3970 : m_sItemText = OUString();
304 3970 : }
305 :
306 :
307 : // XAccessibleContext
308 :
309 :
310 7882 : sal_Int32 OAccessibleMenuItemComponent::getAccessibleChildCount() throw (RuntimeException, std::exception)
311 : {
312 7882 : OExternalLockGuard aGuard( this );
313 :
314 7882 : return 0;
315 : }
316 :
317 :
318 :
319 0 : Reference< XAccessible > OAccessibleMenuItemComponent::getAccessibleChild( sal_Int32 i ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
320 : {
321 0 : OExternalLockGuard aGuard( this );
322 :
323 0 : if ( i < 0 || i >= getAccessibleChildCount() )
324 0 : throw IndexOutOfBoundsException();
325 :
326 0 : return Reference< XAccessible >();
327 : }
328 :
329 :
330 :
331 4892 : Reference< XAccessible > OAccessibleMenuItemComponent::getAccessibleParent( ) throw (RuntimeException, std::exception)
332 : {
333 4892 : OExternalLockGuard aGuard( this );
334 :
335 4892 : return m_pParent->GetAccessible();
336 : }
337 :
338 :
339 :
340 106 : sal_Int32 OAccessibleMenuItemComponent::getAccessibleIndexInParent( ) throw (RuntimeException, std::exception)
341 : {
342 106 : OExternalLockGuard aGuard( this );
343 :
344 106 : return m_nItemPos;
345 : }
346 :
347 :
348 :
349 0 : sal_Int16 OAccessibleMenuItemComponent::getAccessibleRole( ) throw (RuntimeException, std::exception)
350 : {
351 0 : OExternalLockGuard aGuard( this );
352 :
353 0 : return AccessibleRole::UNKNOWN;
354 : }
355 :
356 :
357 :
358 412 : OUString OAccessibleMenuItemComponent::getAccessibleDescription( ) throw (RuntimeException, std::exception)
359 : {
360 412 : OExternalLockGuard aGuard( this );
361 :
362 412 : OUString sDescription;
363 412 : if ( m_pParent )
364 412 : sDescription = m_pParent->GetHelpText( m_pParent->GetItemId( m_nItemPos ) );
365 :
366 412 : return sDescription;
367 : }
368 :
369 :
370 :
371 412 : OUString OAccessibleMenuItemComponent::getAccessibleName( ) throw (RuntimeException, std::exception)
372 : {
373 412 : OExternalLockGuard aGuard( this );
374 :
375 412 : return m_sAccessibleName;
376 : }
377 :
378 :
379 :
380 4 : Reference< XAccessibleRelationSet > OAccessibleMenuItemComponent::getAccessibleRelationSet( ) throw (RuntimeException, std::exception)
381 : {
382 4 : OExternalLockGuard aGuard( this );
383 :
384 4 : utl::AccessibleRelationSetHelper* pRelationSetHelper = new utl::AccessibleRelationSetHelper;
385 4 : Reference< XAccessibleRelationSet > xSet = pRelationSetHelper;
386 4 : return xSet;
387 : }
388 :
389 :
390 :
391 4 : Locale OAccessibleMenuItemComponent::getLocale( ) throw (IllegalAccessibleComponentStateException, RuntimeException, std::exception)
392 : {
393 4 : OExternalLockGuard aGuard( this );
394 :
395 4 : return Application::GetSettings().GetLanguageTag().getLocale();
396 : }
397 :
398 :
399 : // XAccessibleComponent
400 :
401 :
402 0 : Reference< XAccessible > OAccessibleMenuItemComponent::getAccessibleAtPoint( const awt::Point& ) throw (RuntimeException, std::exception)
403 : {
404 0 : OExternalLockGuard aGuard( this );
405 :
406 0 : return Reference< XAccessible >();
407 : }
408 :
409 :
410 :
411 2 : void OAccessibleMenuItemComponent::grabFocus( ) throw (RuntimeException, std::exception)
412 : {
413 : // no focus for items
414 2 : }
415 :
416 :
417 :
418 2 : sal_Int32 OAccessibleMenuItemComponent::getForeground( ) throw (RuntimeException, std::exception)
419 : {
420 2 : OExternalLockGuard aGuard( this );
421 :
422 2 : sal_Int32 nColor = 0;
423 4 : Reference< XAccessible > xParent = getAccessibleParent();
424 2 : if ( xParent.is() )
425 : {
426 2 : Reference< XAccessibleComponent > xParentComp( xParent->getAccessibleContext(), UNO_QUERY );
427 2 : if ( xParentComp.is() )
428 2 : nColor = xParentComp->getForeground();
429 : }
430 :
431 4 : return nColor;
432 : }
433 :
434 :
435 :
436 2 : sal_Int32 OAccessibleMenuItemComponent::getBackground( ) throw (RuntimeException, std::exception)
437 : {
438 2 : OExternalLockGuard aGuard( this );
439 :
440 2 : sal_Int32 nColor = 0;
441 4 : Reference< XAccessible > xParent = getAccessibleParent();
442 2 : if ( xParent.is() )
443 : {
444 2 : Reference< XAccessibleComponent > xParentComp( xParent->getAccessibleContext(), UNO_QUERY );
445 2 : if ( xParentComp.is() )
446 2 : nColor = xParentComp->getBackground();
447 : }
448 :
449 4 : return nColor;
450 : }
451 :
452 :
453 : // XAccessibleExtendedComponent
454 :
455 :
456 6 : Reference< awt::XFont > OAccessibleMenuItemComponent::getFont( ) throw (RuntimeException, std::exception)
457 : {
458 6 : OExternalLockGuard aGuard( this );
459 :
460 6 : Reference< awt::XFont > xFont;
461 12 : Reference< XAccessible > xParent = getAccessibleParent();
462 6 : if ( xParent.is() )
463 : {
464 6 : Reference< XAccessibleExtendedComponent > xParentComp( xParent->getAccessibleContext(), UNO_QUERY );
465 6 : if ( xParentComp.is() )
466 6 : xFont = xParentComp->getFont();
467 : }
468 :
469 12 : return xFont;
470 : }
471 :
472 :
473 :
474 4 : OUString OAccessibleMenuItemComponent::getTitledBorderText( ) throw (RuntimeException, std::exception)
475 : {
476 4 : OExternalLockGuard aGuard( this );
477 :
478 4 : return OUString();
479 : }
480 :
481 :
482 :
483 4 : OUString OAccessibleMenuItemComponent::getToolTipText( ) throw (RuntimeException, std::exception)
484 : {
485 4 : OExternalLockGuard aGuard( this );
486 :
487 4 : OUString sRet;
488 4 : if ( m_pParent )
489 4 : sRet = m_pParent->GetTipHelpText( m_pParent->GetItemId( m_nItemPos ) );
490 :
491 4 : return sRet;
492 : }
493 :
494 :
495 :
496 158 : bool OAccessibleMenuItemComponent::IsMenuHideDisabledEntries()
497 : {
498 158 : if (m_pParent )
499 : {
500 158 : if( m_pParent->GetMenuFlags() & MENU_FLAG_HIDEDISABLEDENTRIES)
501 : {
502 0 : return true;
503 : }
504 : }
505 158 : return false;
506 60 : }
507 :
508 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|