LCOV - code coverage report
Current view: top level - sd/source/ui/accessibility - AccessibleSlideSorterView.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 433 0.2 %
Date: 2014-11-03 Functions: 2 71 2.8 %
Legend: Lines: hit not hit

          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 "AccessibleSlideSorterView.hxx"
      21             : #include "AccessibleSlideSorterObject.hxx"
      22             : 
      23             : #include "SlideSorter.hxx"
      24             : #include "controller/SlideSorterController.hxx"
      25             : #include "controller/SlsPageSelector.hxx"
      26             : #include "controller/SlsFocusManager.hxx"
      27             : #include "controller/SlsSelectionManager.hxx"
      28             : #include "view/SlideSorterView.hxx"
      29             : #include "model/SlideSorterModel.hxx"
      30             : #include "model/SlsPageDescriptor.hxx"
      31             : #include "SlideSorterViewShell.hxx"
      32             : 
      33             : #include "ViewShellHint.hxx"
      34             : #include "sdpage.hxx"
      35             : #include "drawdoc.hxx"
      36             : 
      37             : #include "sdresid.hxx"
      38             : #include "accessibility.hrc"
      39             : #include <com/sun/star/accessibility/AccessibleRole.hpp>
      40             : #include <com/sun/star/accessibility/AccessibleEventId.hpp>
      41             : #include <com/sun/star/accessibility/AccessibleStateType.hpp>
      42             : #include <comphelper/accessibleeventnotifier.hxx>
      43             : #include <cppuhelper/supportsservice.hxx>
      44             : #include <unotools/accessiblestatesethelper.hxx>
      45             : #include <rtl/ref.hxx>
      46             : 
      47             : #include <vcl/settings.hxx>
      48             : #include <vcl/svapp.hxx>
      49             : 
      50             : using namespace ::com::sun::star;
      51             : using namespace ::com::sun::star::uno;
      52             : using namespace ::com::sun::star::accessibility;
      53             : 
      54             : namespace accessibility {
      55             : 
      56             : /** Inner implementation class of the AccessibleSlideSorterView.
      57             : 
      58             :     Note that some event broadcasting is done asynchronously because
      59             :     otherwise it could lead to deadlocks on (at least) some Solaris
      60             :     machines.  Probably (but unverified) this can happen on all GTK based
      61             :     systems.  The asynchronous broadcasting is just a workaround for a
      62             :     poorly understood problem.
      63             : */
      64             : class AccessibleSlideSorterView::Implementation
      65             :     : public SfxListener
      66             : {
      67             : public:
      68             :     Implementation (
      69             :         AccessibleSlideSorterView& rAccessibleSlideSorter,
      70             :         ::sd::slidesorter::SlideSorter& rSlideSorter,
      71             :         vcl::Window* pWindow);
      72             :     virtual ~Implementation (void);
      73             : 
      74             :     void RequestUpdateChildren (void);
      75             :     void Clear (void);
      76             :     sal_Int32 GetVisibleChildCount (void) const;
      77             :     AccessibleSlideSorterObject* GetAccessibleChild (sal_Int32 nIndex);
      78             :     AccessibleSlideSorterObject* GetVisibleChild (sal_Int32 nIndex);
      79             : 
      80             :     void ConnectListeners (void);
      81             :     void ReleaseListeners (void);
      82             :     void Notify (SfxBroadcaster& rBroadcaster, const SfxHint& rHint) SAL_OVERRIDE;
      83             :     DECL_LINK(WindowEventListener, VclWindowEvent*);
      84             :     DECL_LINK(SelectionChangeListener, void*);
      85             :     DECL_LINK(BroadcastSelectionChange, void*);
      86             :     DECL_LINK(FocusChangeListener, void*);
      87             :     DECL_LINK(VisibilityChangeListener, void*);
      88             :     DECL_LINK(UpdateChildrenCallback, void*);
      89             : 
      90             :     void Activated(void);
      91             : private:
      92             :     AccessibleSlideSorterView& mrAccessibleSlideSorter;
      93             :     ::sd::slidesorter::SlideSorter& mrSlideSorter;
      94             :     typedef ::std::vector<rtl::Reference<AccessibleSlideSorterObject> > PageObjectList;
      95             :     PageObjectList maPageObjects;
      96             :     sal_Int32 mnFirstVisibleChild;
      97             :     sal_Int32 mnLastVisibleChild;
      98             :     bool mbListeningToDocument;
      99             :     vcl::Window* mpWindow;
     100             :     sal_Int32 mnFocusedIndex;
     101             :     bool mbModelChangeLocked;
     102             :     ImplSVEvent * mnUpdateChildrenUserEventId;
     103             :     ImplSVEvent * mnSelectionChangeUserEventId;
     104             : 
     105             :     void UpdateChildren (void);
     106             : };
     107             : 
     108             : //===== AccessibleSlideSorterView =============================================
     109             : 
     110           0 : AccessibleSlideSorterView::AccessibleSlideSorterView(
     111             :     ::sd::slidesorter::SlideSorter& rSlideSorter,
     112             :     const Reference<XAccessible>& rxParent,
     113             :     vcl::Window* pContentWindow)
     114             :     : AccessibleSlideSorterViewBase(MutexOwner::maMutex),
     115             :       mrSlideSorter(rSlideSorter),
     116             :       mxParent(rxParent),
     117             :       mnClientId(0),
     118           0 :       mpContentWindow(pContentWindow)
     119             : {
     120           0 : }
     121             : 
     122           0 : void AccessibleSlideSorterView::Init()
     123             : {
     124           0 :     mpImpl.reset(new Implementation(*this,mrSlideSorter,mpContentWindow));
     125           0 : }
     126             : 
     127           0 : AccessibleSlideSorterView::~AccessibleSlideSorterView (void)
     128             : {
     129           0 :     Destroyed ();
     130           0 : }
     131             : 
     132           0 : void AccessibleSlideSorterView::FireAccessibleEvent (
     133             :     short nEventId,
     134             :     const uno::Any& rOldValue,
     135             :     const uno::Any& rNewValue )
     136             : {
     137           0 :     if (mnClientId != 0)
     138             :     {
     139           0 :         AccessibleEventObject aEventObject;
     140             : 
     141           0 :         aEventObject.Source = Reference<XWeak>(this);
     142           0 :         aEventObject.EventId = nEventId;
     143           0 :         aEventObject.NewValue = rNewValue;
     144           0 :         aEventObject.OldValue = rOldValue;
     145             : 
     146           0 :         comphelper::AccessibleEventNotifier::addEvent (mnClientId, aEventObject);
     147             :     }
     148           0 : }
     149             : 
     150           0 : void SAL_CALL AccessibleSlideSorterView::disposing (void)
     151             : {
     152           0 :     if (mnClientId != 0)
     153             :     {
     154           0 :         comphelper::AccessibleEventNotifier::revokeClientNotifyDisposing( mnClientId, *this );
     155           0 :         mnClientId = 0;
     156             :     }
     157           0 :     mpImpl.reset();
     158           0 : }
     159             : 
     160           0 : AccessibleSlideSorterObject* AccessibleSlideSorterView::GetAccessibleChildImplementation (
     161             :     sal_Int32 nIndex)
     162             : {
     163           0 :     AccessibleSlideSorterObject* pResult = NULL;
     164           0 :     ::osl::MutexGuard aGuard (maMutex);
     165             : 
     166           0 :     if (nIndex>=0 && nIndex<mpImpl->GetVisibleChildCount())
     167           0 :         pResult = mpImpl->GetVisibleChild(nIndex);
     168             : 
     169           0 :     return pResult;
     170             : }
     171             : 
     172           0 : void AccessibleSlideSorterView::Destroyed (void)
     173             : {
     174           0 :     ::osl::MutexGuard aGuard (maMutex);
     175             : 
     176             :     // Send a disposing to all listeners.
     177           0 :     if (mnClientId != 0)
     178             :     {
     179           0 :         comphelper::AccessibleEventNotifier::revokeClientNotifyDisposing( mnClientId, *this );
     180           0 :         mnClientId = 0;
     181           0 :     }
     182           0 : }
     183             : 
     184             : //=====  XAccessible  =========================================================
     185             : 
     186             : Reference<XAccessibleContext > SAL_CALL
     187           0 :     AccessibleSlideSorterView::getAccessibleContext (void)
     188             :     throw (uno::RuntimeException, std::exception)
     189             : {
     190           0 :     ThrowIfDisposed ();
     191           0 :     return this;
     192             : }
     193             : 
     194             : //=====  XAccessibleContext  ==================================================
     195             : 
     196           0 : sal_Int32 SAL_CALL AccessibleSlideSorterView::getAccessibleChildCount (void)
     197             :     throw (RuntimeException, std::exception)
     198             : {
     199           0 :     ThrowIfDisposed();
     200           0 :     ::osl::MutexGuard aGuard (maMutex);
     201           0 :     return mpImpl->GetVisibleChildCount();
     202             : }
     203             : 
     204             : Reference<XAccessible > SAL_CALL
     205           0 :     AccessibleSlideSorterView::getAccessibleChild (sal_Int32 nIndex)
     206             :     throw (lang::IndexOutOfBoundsException, RuntimeException, std::exception)
     207             : {
     208           0 :     ThrowIfDisposed();
     209           0 :     ::osl::MutexGuard aGuard (maMutex);
     210             : 
     211           0 :     if (nIndex<0 || nIndex>=mpImpl->GetVisibleChildCount())
     212           0 :         throw lang::IndexOutOfBoundsException();
     213             : 
     214           0 :     return  mpImpl->GetVisibleChild(nIndex);
     215             : }
     216             : 
     217           0 : Reference<XAccessible > SAL_CALL AccessibleSlideSorterView::getAccessibleParent (void)
     218             :     throw (uno::RuntimeException, std::exception)
     219             : {
     220           0 :     ThrowIfDisposed();
     221           0 :     const SolarMutexGuard aSolarGuard;
     222           0 :     Reference<XAccessible> xParent;
     223             : 
     224           0 :     if (mpContentWindow != NULL)
     225             :     {
     226           0 :         vcl::Window* pParent = mpContentWindow->GetAccessibleParentWindow();
     227           0 :         if (pParent != NULL)
     228           0 :             xParent = pParent->GetAccessible();
     229             :     }
     230             : 
     231           0 :     return xParent;
     232             : }
     233             : 
     234           0 : sal_Int32 SAL_CALL AccessibleSlideSorterView::getAccessibleIndexInParent (void)
     235             :     throw (uno::RuntimeException, std::exception)
     236             : {
     237             :     OSL_ASSERT(getAccessibleParent().is());
     238           0 :     ThrowIfDisposed();
     239           0 :     const SolarMutexGuard aSolarGuard;
     240           0 :     sal_Int32 nIndexInParent(-1);
     241             : 
     242           0 :     Reference<XAccessibleContext> xParentContext (getAccessibleParent()->getAccessibleContext());
     243           0 :     if (xParentContext.is())
     244             :     {
     245           0 :         sal_Int32 nChildCount (xParentContext->getAccessibleChildCount());
     246           0 :         for (sal_Int32 i=0; i<nChildCount; ++i)
     247           0 :             if (xParentContext->getAccessibleChild(i).get()
     248           0 :                     == static_cast<XAccessible*>(this))
     249             :             {
     250           0 :                 nIndexInParent = i;
     251           0 :                 break;
     252             :             }
     253             :     }
     254             : 
     255           0 :     return nIndexInParent;
     256             : }
     257             : 
     258           0 : sal_Int16 SAL_CALL AccessibleSlideSorterView::getAccessibleRole (void)
     259             :     throw (uno::RuntimeException, std::exception)
     260             : {
     261           0 :     ThrowIfDisposed();
     262             :     static sal_Int16 nRole = AccessibleRole::DOCUMENT;
     263           0 :     return nRole;
     264             : }
     265             : 
     266           0 : OUString SAL_CALL AccessibleSlideSorterView::getAccessibleDescription (void)
     267             :     throw (uno::RuntimeException, std::exception)
     268             : {
     269           0 :     ThrowIfDisposed();
     270           0 :     SolarMutexGuard aGuard;
     271             : 
     272           0 :     return SD_RESSTR(SID_SD_A11Y_I_SLIDEVIEW_D);
     273             : }
     274             : 
     275           0 : OUString SAL_CALL AccessibleSlideSorterView::getAccessibleName (void)
     276             :     throw (uno::RuntimeException, std::exception)
     277             : {
     278           0 :     ThrowIfDisposed();
     279           0 :     SolarMutexGuard aGuard;
     280             : 
     281           0 :     return SD_RESSTR(SID_SD_A11Y_I_SLIDEVIEW_N);
     282             : }
     283             : 
     284             : Reference<XAccessibleRelationSet> SAL_CALL
     285           0 :     AccessibleSlideSorterView::getAccessibleRelationSet (void)
     286             :     throw (uno::RuntimeException, std::exception)
     287             : {
     288           0 :     return Reference<XAccessibleRelationSet>();
     289             : }
     290             : 
     291             : Reference<XAccessibleStateSet > SAL_CALL
     292           0 :     AccessibleSlideSorterView::getAccessibleStateSet (void)
     293             :     throw (uno::RuntimeException, std::exception)
     294             : {
     295           0 :     ThrowIfDisposed();
     296           0 :     const SolarMutexGuard aSolarGuard;
     297           0 :     ::utl::AccessibleStateSetHelper* pStateSet = new ::utl::AccessibleStateSetHelper();
     298             : 
     299           0 :     pStateSet->AddState(AccessibleStateType::FOCUSABLE);
     300           0 :     pStateSet->AddState(AccessibleStateType::SELECTABLE);
     301           0 :     pStateSet->AddState(AccessibleStateType::ENABLED);
     302           0 :     pStateSet->AddState(AccessibleStateType::ACTIVE);
     303           0 :     pStateSet->AddState(AccessibleStateType::MULTI_SELECTABLE);
     304           0 :     pStateSet->AddState(AccessibleStateType::OPAQUE);
     305           0 :     if (mpContentWindow!=NULL)
     306             :     {
     307           0 :         if (mpContentWindow->IsVisible())
     308           0 :             pStateSet->AddState(AccessibleStateType::VISIBLE);
     309           0 :         if (mpContentWindow->IsReallyVisible())
     310           0 :             pStateSet->AddState(AccessibleStateType::SHOWING);
     311             :     }
     312             : 
     313           0 :     return pStateSet;
     314             : }
     315             : 
     316           0 : lang::Locale SAL_CALL AccessibleSlideSorterView::getLocale (void)
     317             :     throw (IllegalAccessibleComponentStateException,
     318             :         RuntimeException, std::exception)
     319             : {
     320           0 :     ThrowIfDisposed ();
     321           0 :     Reference<XAccessibleContext> xParentContext;
     322           0 :     Reference<XAccessible> xParent (getAccessibleParent());
     323           0 :     if (xParent.is())
     324           0 :         xParentContext = xParent->getAccessibleContext();
     325             : 
     326           0 :     if (xParentContext.is())
     327           0 :         return xParentContext->getLocale();
     328             :     else
     329             :         // Strange, no parent!  Anyway, return the default locale.
     330           0 :         return Application::GetSettings().GetLanguageTag().getLocale();
     331             : }
     332             : 
     333           0 : void SAL_CALL AccessibleSlideSorterView::addAccessibleEventListener(
     334             :     const Reference<XAccessibleEventListener >& rxListener)
     335             :     throw (RuntimeException, std::exception)
     336             : {
     337           0 :     if (rxListener.is())
     338             :     {
     339           0 :         const osl::MutexGuard aGuard(maMutex);
     340             : 
     341           0 :         if (IsDisposed())
     342             :         {
     343           0 :             uno::Reference<uno::XInterface> x ((lang::XComponent *)this, uno::UNO_QUERY);
     344           0 :             rxListener->disposing (lang::EventObject (x));
     345             :         }
     346             :         else
     347             :         {
     348           0 :             if ( ! mnClientId)
     349           0 :                 mnClientId = comphelper::AccessibleEventNotifier::registerClient();
     350           0 :             comphelper::AccessibleEventNotifier::addEventListener(mnClientId, rxListener);
     351           0 :         }
     352             :     }
     353           0 : }
     354             : 
     355           0 : void SAL_CALL AccessibleSlideSorterView::removeAccessibleEventListener(
     356             :     const Reference<XAccessibleEventListener >& rxListener)
     357             :     throw (RuntimeException, std::exception)
     358             : {
     359           0 :     ThrowIfDisposed();
     360           0 :     if (rxListener.is())
     361             :     {
     362           0 :         const osl::MutexGuard aGuard(maMutex);
     363             : 
     364           0 :         if (mnClientId != 0)
     365             :         {
     366             :             sal_Int32 nListenerCount = comphelper::AccessibleEventNotifier::removeEventListener(
     367           0 :                 mnClientId, rxListener );
     368           0 :             if ( !nListenerCount )
     369             :             {
     370             :                 // no listeners anymore -> revoke ourself. This may lead to
     371             :                 // the notifier thread dying (if we were the last client),
     372             :                 // and at least to us not firing any events anymore, in case
     373             :                 // somebody calls NotifyAccessibleEvent, again
     374           0 :                 comphelper::AccessibleEventNotifier::revokeClient( mnClientId );
     375           0 :                 mnClientId = 0;
     376             :             }
     377           0 :         }
     378             :     }
     379           0 : }
     380             : 
     381             : //===== XAccessibleComponent ==================================================
     382             : 
     383           0 : sal_Bool SAL_CALL AccessibleSlideSorterView::containsPoint (const awt::Point& aPoint)
     384             :     throw (RuntimeException, std::exception)
     385             : {
     386           0 :     ThrowIfDisposed();
     387           0 :     const awt::Rectangle aBBox (getBounds());
     388           0 :     return (aPoint.X >= 0)
     389           0 :         && (aPoint.X < aBBox.Width)
     390           0 :         && (aPoint.Y >= 0)
     391           0 :         && (aPoint.Y < aBBox.Height);
     392             : }
     393             : 
     394             : Reference<XAccessible> SAL_CALL
     395           0 :     AccessibleSlideSorterView::getAccessibleAtPoint (const awt::Point& aPoint)
     396             :     throw (RuntimeException, std::exception)
     397             : {
     398           0 :     ThrowIfDisposed();
     399           0 :     Reference<XAccessible> xAccessible;
     400           0 :     const SolarMutexGuard aSolarGuard;
     401             : 
     402           0 :     const Point aTestPoint (aPoint.X, aPoint.Y);
     403             :     ::sd::slidesorter::model::SharedPageDescriptor pHitDescriptor (
     404           0 :         mrSlideSorter.GetController().GetPageAt(aTestPoint));
     405           0 :     if (pHitDescriptor.get() != NULL)
     406           0 :         xAccessible = mpImpl->GetAccessibleChild(
     407           0 :             (pHitDescriptor->GetPage()->GetPageNum()-1)/2);
     408             : 
     409           0 :     return xAccessible;
     410             : }
     411             : 
     412           0 : awt::Rectangle SAL_CALL AccessibleSlideSorterView::getBounds (void)
     413             :     throw (uno::RuntimeException, std::exception)
     414             : {
     415           0 :     ThrowIfDisposed();
     416           0 :     const SolarMutexGuard aSolarGuard;
     417           0 :     awt::Rectangle aBBox;
     418             : 
     419           0 :     if (mpContentWindow != NULL)
     420             :     {
     421           0 :         const Point aPosition (mpContentWindow->GetPosPixel());
     422           0 :         const Size aSize (mpContentWindow->GetOutputSizePixel());
     423             : 
     424           0 :         aBBox.X = aPosition.X();
     425           0 :         aBBox.Y = aPosition.Y();
     426           0 :         aBBox.Width = aSize.Width();
     427           0 :         aBBox.Height = aSize.Height();
     428             :     }
     429             : 
     430           0 :     return aBBox;
     431             : }
     432             : 
     433           0 : awt::Point SAL_CALL AccessibleSlideSorterView::getLocation (void)
     434             :     throw (uno::RuntimeException, std::exception)
     435             : {
     436           0 :     ThrowIfDisposed();
     437           0 :     awt::Point aLocation;
     438             : 
     439           0 :     if (mpContentWindow != NULL)
     440             :     {
     441           0 :         const Point aPosition (mpContentWindow->GetPosPixel());
     442           0 :         aLocation.X = aPosition.X();
     443           0 :         aLocation.Y = aPosition.Y();
     444             :     }
     445             : 
     446           0 :     return aLocation;
     447             : }
     448             : 
     449             : /** Calculate the location on screen from the parent's location on screen
     450             :     and our own relative location.
     451             : */
     452           0 : awt::Point SAL_CALL AccessibleSlideSorterView::getLocationOnScreen()
     453             :     throw (uno::RuntimeException, std::exception)
     454             : {
     455           0 :     ThrowIfDisposed();
     456           0 :     const SolarMutexGuard aSolarGuard;
     457           0 :     awt::Point aParentLocationOnScreen;
     458             : 
     459           0 :     Reference<XAccessible> xParent (getAccessibleParent());
     460           0 :     if (xParent.is())
     461             :     {
     462             :         Reference<XAccessibleComponent> xParentComponent (
     463           0 :             xParent->getAccessibleContext(), uno::UNO_QUERY);
     464           0 :         if (xParentComponent.is())
     465           0 :             aParentLocationOnScreen = xParentComponent->getLocationOnScreen();
     466             :     }
     467             : 
     468           0 :     awt::Point aLocationOnScreen (getLocation());
     469           0 :     aLocationOnScreen.X += aParentLocationOnScreen.X;
     470           0 :     aLocationOnScreen.Y += aParentLocationOnScreen.Y;
     471             : 
     472           0 :     return aLocationOnScreen;
     473             : }
     474             : 
     475           0 : awt::Size SAL_CALL AccessibleSlideSorterView::getSize (void)
     476             :     throw (uno::RuntimeException, std::exception)
     477             : {
     478           0 :     ThrowIfDisposed();
     479           0 :     awt::Size aSize;
     480             : 
     481           0 :     if (mpContentWindow != NULL)
     482             :     {
     483           0 :         const Size aOutputSize (mpContentWindow->GetOutputSizePixel());
     484           0 :         aSize.Width = aOutputSize.Width();
     485           0 :         aSize.Height = aOutputSize.Height();
     486             :     }
     487             : 
     488           0 :     return aSize;
     489             : }
     490             : 
     491           0 : void SAL_CALL AccessibleSlideSorterView::grabFocus (void)
     492             :     throw (uno::RuntimeException, std::exception)
     493             : {
     494           0 :     ThrowIfDisposed();
     495           0 :     const SolarMutexGuard aSolarGuard;
     496             : 
     497           0 :     if (mpContentWindow)
     498           0 :         mpContentWindow->GrabFocus();
     499           0 : }
     500             : 
     501           0 : sal_Int32 SAL_CALL AccessibleSlideSorterView::getForeground (void)
     502             :     throw (RuntimeException, std::exception)
     503             : {
     504           0 :     ThrowIfDisposed();
     505           0 :     svtools::ColorConfig aColorConfig;
     506           0 :     sal_uInt32 nColor = aColorConfig.GetColorValue( svtools::FONTCOLOR ).nColor;
     507           0 :     return static_cast<sal_Int32>(nColor);
     508             : }
     509             : 
     510           0 : sal_Int32 SAL_CALL AccessibleSlideSorterView::getBackground (void)
     511             :     throw (RuntimeException, std::exception)
     512             : {
     513           0 :     ThrowIfDisposed();
     514           0 :     sal_uInt32 nColor = Application::GetSettings().GetStyleSettings().GetWindowColor().GetColor();
     515           0 :     return static_cast<sal_Int32>(nColor);
     516             : }
     517             : 
     518             : //===== XAccessibleSelection ==================================================
     519             : 
     520           0 : void SAL_CALL AccessibleSlideSorterView::selectAccessibleChild (sal_Int32 nChildIndex)
     521             :     throw (lang::IndexOutOfBoundsException,
     522             :         RuntimeException, std::exception)
     523             : {
     524           0 :     ThrowIfDisposed();
     525           0 :     const SolarMutexGuard aSolarGuard;
     526             : 
     527           0 :     AccessibleSlideSorterObject* pChild = mpImpl->GetAccessibleChild(nChildIndex);
     528           0 :     if (pChild != NULL)
     529           0 :         mrSlideSorter.GetController().GetPageSelector().SelectPage(pChild->GetPageNumber());
     530             :     else
     531           0 :         throw lang::IndexOutOfBoundsException();
     532           0 : }
     533             : 
     534           0 : sal_Bool SAL_CALL AccessibleSlideSorterView::isAccessibleChildSelected (sal_Int32 nChildIndex)
     535             :     throw (lang::IndexOutOfBoundsException,
     536             :         RuntimeException, std::exception)
     537             : {
     538           0 :     ThrowIfDisposed();
     539           0 :     bool bIsSelected = false;
     540           0 :     const SolarMutexGuard aSolarGuard;
     541             : 
     542           0 :     AccessibleSlideSorterObject* pChild = mpImpl->GetAccessibleChild(nChildIndex);
     543           0 :     if (pChild != NULL)
     544           0 :         bIsSelected = mrSlideSorter.GetController().GetPageSelector().IsPageSelected(
     545           0 :             pChild->GetPageNumber());
     546             :     else
     547           0 :         throw lang::IndexOutOfBoundsException();
     548             : 
     549           0 :     return bIsSelected;
     550             : }
     551             : 
     552           0 : void SAL_CALL AccessibleSlideSorterView::clearAccessibleSelection (void)
     553             :     throw (uno::RuntimeException, std::exception)
     554             : {
     555           0 :     ThrowIfDisposed();
     556           0 :     const SolarMutexGuard aSolarGuard;
     557             : 
     558           0 :     mrSlideSorter.GetController().GetPageSelector().DeselectAllPages();
     559           0 : }
     560             : 
     561           0 : void SAL_CALL AccessibleSlideSorterView::selectAllAccessibleChildren (void)
     562             :     throw (uno::RuntimeException, std::exception)
     563             : {
     564           0 :     ThrowIfDisposed();
     565           0 :     const SolarMutexGuard aSolarGuard;
     566             : 
     567           0 :     mrSlideSorter.GetController().GetPageSelector().SelectAllPages();
     568           0 : }
     569             : 
     570           0 : sal_Int32 SAL_CALL AccessibleSlideSorterView::getSelectedAccessibleChildCount (void)
     571             :     throw (uno::RuntimeException, std::exception)
     572             : {
     573           0 :     ThrowIfDisposed ();
     574           0 :     const SolarMutexGuard aSolarGuard;
     575           0 :     return mrSlideSorter.GetController().GetPageSelector().GetSelectedPageCount();
     576             : }
     577             : 
     578             : Reference<XAccessible > SAL_CALL
     579           0 :     AccessibleSlideSorterView::getSelectedAccessibleChild (sal_Int32 nSelectedChildIndex )
     580             :     throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
     581             : {
     582           0 :     ThrowIfDisposed ();
     583           0 :     const SolarMutexGuard aSolarGuard;
     584           0 :     Reference<XAccessible> xChild;
     585             : 
     586             :     ::sd::slidesorter::controller::PageSelector& rSelector (
     587           0 :         mrSlideSorter.GetController().GetPageSelector());
     588           0 :     sal_Int32 nPageCount(rSelector.GetPageCount());
     589           0 :     sal_Int32 nSelectedCount = 0;
     590           0 :     for (sal_Int32 i=0; i<nPageCount; i++)
     591           0 :         if (rSelector.IsPageSelected(i))
     592             :         {
     593           0 :             if (nSelectedCount == nSelectedChildIndex)
     594             :             {
     595           0 :                 xChild = mpImpl->GetAccessibleChild(i);
     596           0 :                 break;
     597             :             }
     598           0 :             ++nSelectedCount;
     599             :         }
     600             : 
     601           0 :     if ( ! xChild.is() )
     602           0 :         throw lang::IndexOutOfBoundsException();
     603             : 
     604           0 :     return xChild;
     605             : }
     606             : 
     607           0 : void SAL_CALL AccessibleSlideSorterView::deselectAccessibleChild (sal_Int32 nChildIndex)
     608             :     throw (lang::IndexOutOfBoundsException,
     609             :         RuntimeException, std::exception)
     610             : {
     611           0 :     ThrowIfDisposed();
     612           0 :     const SolarMutexGuard aSolarGuard;
     613             : 
     614           0 :     AccessibleSlideSorterObject* pChild = mpImpl->GetAccessibleChild(nChildIndex);
     615           0 :     if (pChild != NULL)
     616           0 :         mrSlideSorter.GetController().GetPageSelector().DeselectPage(pChild->GetPageNumber());
     617             :     else
     618           0 :         throw lang::IndexOutOfBoundsException();
     619           0 : }
     620             : 
     621             : //=====  XServiceInfo  ========================================================
     622             : OUString SAL_CALL
     623           0 :        AccessibleSlideSorterView::getImplementationName (void)
     624             :     throw (::com::sun::star::uno::RuntimeException, std::exception)
     625             : {
     626           0 :     return OUString("AccessibleSlideSorterView");
     627             : }
     628             : 
     629           0 : sal_Bool SAL_CALL AccessibleSlideSorterView::supportsService (const OUString& sServiceName)
     630             :     throw (::com::sun::star::uno::RuntimeException, std::exception)
     631             : {
     632           0 :     return cppu::supportsService(this, sServiceName);
     633             : }
     634             : 
     635             : uno::Sequence< OUString> SAL_CALL
     636           0 :        AccessibleSlideSorterView::getSupportedServiceNames (void)
     637             :     throw (::com::sun::star::uno::RuntimeException, std::exception)
     638             : {
     639           0 :     ThrowIfDisposed ();
     640             : 
     641             :     static const OUString sServiceNames[3] = {
     642             :             OUString("com.sun.star.accessibility.Accessible"),
     643             :             OUString("com.sun.star.accessibility.AccessibleContext"),
     644             :             OUString("com.sun.star.drawing.AccessibleSlideSorterView")
     645           0 :     };
     646           0 :     return uno::Sequence<OUString> (sServiceNames, 3);
     647             : }
     648             : 
     649           0 : void AccessibleSlideSorterView::ThrowIfDisposed (void)
     650             :     throw (lang::DisposedException)
     651             : {
     652           0 :     if (rBHelper.bDisposed || rBHelper.bInDispose)
     653             :     {
     654             :         OSL_TRACE ("Calling disposed object. Throwing exception:");
     655             :         throw lang::DisposedException ("object has been already disposed",
     656           0 :             static_cast<uno::XWeak*>(this));
     657             :     }
     658           0 : }
     659             : 
     660           0 : bool AccessibleSlideSorterView::IsDisposed (void)
     661             : {
     662           0 :     return (rBHelper.bDisposed || rBHelper.bInDispose);
     663             : }
     664             : 
     665             : //===== AccessibleSlideSorterView::Implementation =============================
     666             : 
     667           0 : AccessibleSlideSorterView::Implementation::Implementation (
     668             :     AccessibleSlideSorterView& rAccessibleSlideSorter,
     669             :     ::sd::slidesorter::SlideSorter& rSlideSorter,
     670             :     vcl::Window* pWindow)
     671             :     : mrAccessibleSlideSorter(rAccessibleSlideSorter),
     672             :       mrSlideSorter(rSlideSorter),
     673             :       maPageObjects(),
     674             :       mnFirstVisibleChild(0),
     675             :       mnLastVisibleChild(-1),
     676             :       mbListeningToDocument(false),
     677             :       mpWindow(pWindow),
     678             :       mnFocusedIndex(-1),
     679             :       mbModelChangeLocked(false),
     680             :       mnUpdateChildrenUserEventId(0),
     681           0 :       mnSelectionChangeUserEventId(0)
     682             : {
     683           0 :     ConnectListeners();
     684           0 :     UpdateChildren();
     685           0 : }
     686             : 
     687           0 : AccessibleSlideSorterView::Implementation::~Implementation (void)
     688             : {
     689           0 :     if (mnUpdateChildrenUserEventId != 0)
     690           0 :         Application::RemoveUserEvent(mnUpdateChildrenUserEventId);
     691           0 :     if (mnSelectionChangeUserEventId != 0)
     692           0 :         Application::RemoveUserEvent(mnSelectionChangeUserEventId);
     693           0 :     ReleaseListeners();
     694           0 :     Clear();
     695           0 : }
     696             : 
     697           0 : void AccessibleSlideSorterView::Implementation::RequestUpdateChildren (void)
     698             : {
     699           0 :     if (mnUpdateChildrenUserEventId == 0)
     700             :         mnUpdateChildrenUserEventId = Application::PostUserEvent(
     701             :             LINK(this, AccessibleSlideSorterView::Implementation,
     702           0 :             UpdateChildrenCallback));
     703           0 : }
     704             : 
     705           0 : void AccessibleSlideSorterView::Implementation::UpdateChildren (void)
     706             : {
     707             :       //By default, all children should be accessible. So here workaround is to make all children visible.
     708             :       // MT: THis was in UpdateVisibility, which has some similarity, and hg merge automatically has put it here. Correct?!
     709             :       // In the IA2 CWS, also setting mnFirst/LastVisibleChild was commented out!
     710           0 :       mnLastVisibleChild = maPageObjects.size();
     711             : 
     712           0 :     if (mbModelChangeLocked)
     713             :     {
     714             :         // Do nothing right now.  When the flag is reset, this method is
     715             :         // called again.
     716           0 :         return;
     717             :     }
     718             : 
     719           0 :     const Pair aRange (mrSlideSorter.GetView().GetVisiblePageRange());
     720           0 :     mnFirstVisibleChild = aRange.A();
     721           0 :     mnLastVisibleChild = aRange.B();
     722             : 
     723             :     // Release all children.
     724           0 :     Clear();
     725             : 
     726             :     // Create new children for the modified visible range.
     727           0 :     maPageObjects.resize(mrSlideSorter.GetModel().GetPageCount());
     728             : 
     729             :     // No Visible children
     730           0 :     if (mnFirstVisibleChild == -1 && mnLastVisibleChild == -1)
     731           0 :         return;
     732             : 
     733           0 :     for (sal_Int32 nIndex(mnFirstVisibleChild); nIndex<=mnLastVisibleChild; ++nIndex)
     734           0 :         GetAccessibleChild(nIndex);
     735             : }
     736             : 
     737           0 : void AccessibleSlideSorterView::Implementation::Clear (void)
     738             : {
     739           0 :     PageObjectList::iterator iPageObject;
     740           0 :     PageObjectList::iterator iEnd = maPageObjects.end();
     741           0 :     for (iPageObject=maPageObjects.begin(); iPageObject!=iEnd; ++iPageObject)
     742           0 :         if (*iPageObject != NULL)
     743             :         {
     744             :             mrAccessibleSlideSorter.FireAccessibleEvent(
     745             :                 AccessibleEventId::CHILD,
     746           0 :                 Any(Reference<XAccessible>(iPageObject->get())),
     747           0 :                 Any());
     748             : 
     749           0 :             Reference<XComponent> xComponent (Reference<XWeak>(iPageObject->get()), UNO_QUERY);
     750           0 :             if (xComponent.is())
     751           0 :                 xComponent->dispose();
     752           0 :             *iPageObject = NULL;
     753             :         }
     754           0 :     maPageObjects.clear();
     755           0 : }
     756             : 
     757           0 : sal_Int32 AccessibleSlideSorterView::Implementation::GetVisibleChildCount (void) const
     758             : {
     759           0 :     if (mnFirstVisibleChild<=mnLastVisibleChild && mnFirstVisibleChild>=0)
     760           0 :         return mnLastVisibleChild - mnFirstVisibleChild + 1;
     761             :     else
     762           0 :         return 0;
     763             : }
     764             : 
     765           0 : AccessibleSlideSorterObject* AccessibleSlideSorterView::Implementation::GetVisibleChild (
     766             :     sal_Int32 nIndex)
     767             : {
     768             :     assert(nIndex>=0 && nIndex<GetVisibleChildCount());
     769             : 
     770           0 :     return GetAccessibleChild(nIndex+mnFirstVisibleChild);
     771             : }
     772             : 
     773           0 : AccessibleSlideSorterObject* AccessibleSlideSorterView::Implementation::GetAccessibleChild (
     774             :     sal_Int32 nIndex)
     775             : {
     776           0 :     AccessibleSlideSorterObject* pChild = NULL;
     777             : 
     778           0 :     if (nIndex>=0 && (sal_uInt32)nIndex<maPageObjects.size())
     779             :     {
     780           0 :         if (maPageObjects[nIndex] == NULL)
     781             :         {
     782             :             ::sd::slidesorter::model::SharedPageDescriptor pDescriptor(
     783           0 :                 mrSlideSorter.GetModel().GetPageDescriptor(nIndex));
     784           0 :             if (pDescriptor.get() != NULL)
     785             :             {
     786           0 :                 maPageObjects[nIndex] = new AccessibleSlideSorterObject(
     787             :                     &mrAccessibleSlideSorter,
     788             :                     mrSlideSorter,
     789           0 :                     (pDescriptor->GetPage()->GetPageNum()-1)/2);
     790             : 
     791             :                 mrAccessibleSlideSorter.FireAccessibleEvent(
     792             :                     AccessibleEventId::CHILD,
     793             :                     Any(),
     794           0 :                     Any(Reference<XAccessible>(maPageObjects[nIndex].get())));
     795           0 :             }
     796             : 
     797             :         }
     798             : 
     799           0 :         pChild = maPageObjects[nIndex].get();
     800             :     }
     801             :     else
     802             :     {
     803             :         OSL_ASSERT(nIndex>=0 && (sal_uInt32)nIndex<maPageObjects.size());
     804             :     }
     805             : 
     806           0 :     return pChild;
     807             : }
     808             : 
     809           0 : void AccessibleSlideSorterView::Implementation::ConnectListeners (void)
     810             : {
     811           0 :     StartListening (*mrSlideSorter.GetModel().GetDocument());
     812           0 :     if (mrSlideSorter.GetViewShell() != NULL)
     813           0 :         StartListening (*mrSlideSorter.GetViewShell());
     814           0 :     mbListeningToDocument = true;
     815             : 
     816           0 :     if (mpWindow != NULL)
     817             :         mpWindow->AddEventListener(
     818           0 :             LINK(this,AccessibleSlideSorterView::Implementation,WindowEventListener));
     819             : 
     820           0 :     mrSlideSorter.GetController().GetSelectionManager()->AddSelectionChangeListener(
     821           0 :         LINK(this,AccessibleSlideSorterView::Implementation,SelectionChangeListener));
     822           0 :     mrSlideSorter.GetController().GetFocusManager().AddFocusChangeListener(
     823           0 :         LINK(this,AccessibleSlideSorterView::Implementation,FocusChangeListener));
     824           0 :     mrSlideSorter.GetView().AddVisibilityChangeListener(
     825           0 :         LINK(this,AccessibleSlideSorterView::Implementation,VisibilityChangeListener));
     826           0 : }
     827             : 
     828           0 : void AccessibleSlideSorterView::Implementation::ReleaseListeners (void)
     829             : {
     830           0 :     mrSlideSorter.GetController().GetFocusManager().RemoveFocusChangeListener(
     831           0 :         LINK(this,AccessibleSlideSorterView::Implementation,FocusChangeListener));
     832           0 :     mrSlideSorter.GetController().GetSelectionManager()->RemoveSelectionChangeListener(
     833           0 :         LINK(this,AccessibleSlideSorterView::Implementation,SelectionChangeListener));
     834           0 :     mrSlideSorter.GetView().RemoveVisibilityChangeListener(
     835           0 :         LINK(this,AccessibleSlideSorterView::Implementation,VisibilityChangeListener));
     836             : 
     837           0 :     if (mpWindow != NULL)
     838             :         mpWindow->RemoveEventListener(
     839           0 :             LINK(this,AccessibleSlideSorterView::Implementation,WindowEventListener));
     840             : 
     841           0 :     if (mbListeningToDocument)
     842             :     {
     843           0 :         if (mrSlideSorter.GetViewShell() != NULL)
     844           0 :             StartListening(*mrSlideSorter.GetViewShell());
     845           0 :         EndListening (*mrSlideSorter.GetModel().GetDocument());
     846           0 :         mbListeningToDocument = false;
     847             :     }
     848           0 : }
     849             : 
     850           0 : void AccessibleSlideSorterView::Implementation::Notify (
     851             :     SfxBroadcaster&,
     852             :     const SfxHint& rHint)
     853             : {
     854           0 :     const SdrHint* pSdrHint = dynamic_cast<const SdrHint*>(&rHint);
     855           0 :     if (pSdrHint)
     856             :     {
     857           0 :         switch (pSdrHint->GetKind())
     858             :         {
     859             :             case HINT_PAGEORDERCHG:
     860           0 :                 RequestUpdateChildren();
     861           0 :                 break;
     862             :             default:
     863           0 :                 break;
     864             :         }
     865             :     }
     866           0 :     else if (dynamic_cast<const sd::ViewShellHint*>(&rHint))
     867             :     {
     868           0 :         const sd::ViewShellHint& rViewShellHint = static_cast<const sd::ViewShellHint&>(rHint);
     869           0 :         switch (rViewShellHint.GetHintId())
     870             :         {
     871             :             case sd::ViewShellHint::HINT_COMPLEX_MODEL_CHANGE_START:
     872           0 :                 mbModelChangeLocked = true;
     873           0 :                 break;
     874             : 
     875             :             case sd::ViewShellHint::HINT_COMPLEX_MODEL_CHANGE_END:
     876           0 :                 mbModelChangeLocked = false;
     877           0 :                 RequestUpdateChildren();
     878           0 :                 break;
     879             :             default:
     880           0 :                 break;
     881             :         }
     882             :     }
     883           0 : }
     884             : 
     885           0 : void AccessibleSlideSorterView::SwitchViewActivated (void)
     886             : {
     887             :     // Firstly, set focus to view
     888             :     this->FireAccessibleEvent(AccessibleEventId::STATE_CHANGED,
     889             :                     Any(),
     890           0 :                     Any(AccessibleStateType::FOCUSED));
     891             : 
     892           0 :     mpImpl->Activated();
     893           0 : }
     894             : 
     895           0 : void AccessibleSlideSorterView::Implementation::Activated()
     896             : {
     897           0 :     mrSlideSorter.GetController().GetFocusManager().ShowFocus();
     898             : 
     899           0 : }
     900             : 
     901           0 : IMPL_LINK(AccessibleSlideSorterView::Implementation, WindowEventListener, VclWindowEvent*, pEvent)
     902             : {
     903           0 :     switch (pEvent->GetId())
     904             :     {
     905             :         case VCLEVENT_WINDOW_MOVE:
     906             :         case VCLEVENT_WINDOW_RESIZE:
     907           0 :             RequestUpdateChildren();
     908           0 :             break;
     909             : 
     910             :         case VCLEVENT_WINDOW_GETFOCUS:
     911             :         case VCLEVENT_WINDOW_LOSEFOCUS:
     912             :             mrAccessibleSlideSorter.FireAccessibleEvent(
     913             :                 AccessibleEventId::SELECTION_CHANGED,
     914             :                 Any(),
     915           0 :                 Any());
     916           0 :             break;
     917             :         default:
     918           0 :             break;
     919             :     }
     920           0 :     return 1;
     921             : }
     922             : 
     923           0 : IMPL_LINK_NOARG(AccessibleSlideSorterView::Implementation, SelectionChangeListener)
     924             : {
     925           0 :     if (mnSelectionChangeUserEventId == 0)
     926             :         mnSelectionChangeUserEventId = Application::PostUserEvent(
     927           0 :             LINK(this, AccessibleSlideSorterView::Implementation, BroadcastSelectionChange));
     928           0 :     return 1;
     929             : }
     930             : 
     931           0 : IMPL_LINK_NOARG(AccessibleSlideSorterView::Implementation, BroadcastSelectionChange)
     932             : {
     933           0 :     mnSelectionChangeUserEventId = 0;
     934             :     mrAccessibleSlideSorter.FireAccessibleEvent(
     935             :         AccessibleEventId::SELECTION_CHANGED,
     936             :         Any(),
     937           0 :         Any());
     938           0 :     return 1;
     939             : }
     940             : 
     941           0 : IMPL_LINK_NOARG(AccessibleSlideSorterView::Implementation, FocusChangeListener)
     942             : {
     943             :     sal_Int32 nNewFocusedIndex (
     944           0 :         mrSlideSorter.GetController().GetFocusManager().GetFocusedPageIndex());
     945             : 
     946           0 :     bool bHasFocus = mrSlideSorter.GetController().GetFocusManager().IsFocusShowing();
     947           0 :     if (!bHasFocus)
     948           0 :         nNewFocusedIndex = -1;
     949             : 
     950             :     // add a checker whether the focus event is sent out. Only after sent, the mnFocusedIndex should be updated.
     951           0 :     bool bSentFocus = false;
     952           0 :     if (nNewFocusedIndex != mnFocusedIndex)
     953             :     {
     954           0 :         if (mnFocusedIndex >= 0)
     955             :         {
     956           0 :             AccessibleSlideSorterObject* pObject = GetAccessibleChild(mnFocusedIndex);
     957           0 :             if (pObject != NULL)
     958             :             {
     959             :                 pObject->FireAccessibleEvent(
     960             :                     AccessibleEventId::STATE_CHANGED,
     961             :                     Any(AccessibleStateType::FOCUSED),
     962           0 :                     Any());
     963           0 :                 bSentFocus = true;
     964             :             }
     965             :         }
     966           0 :         if (nNewFocusedIndex >= 0)
     967             :         {
     968           0 :             AccessibleSlideSorterObject* pObject = GetAccessibleChild(nNewFocusedIndex);
     969           0 :             if (pObject != NULL)
     970             :             {
     971             :                 pObject->FireAccessibleEvent(
     972             :                     AccessibleEventId::STATE_CHANGED,
     973             :                     Any(),
     974           0 :                     Any(AccessibleStateType::FOCUSED));
     975           0 :                 bSentFocus = true;
     976             :             }
     977             :         }
     978           0 :         if (bSentFocus)
     979           0 :             mnFocusedIndex = nNewFocusedIndex;
     980             :     }
     981           0 :     return 1;
     982             : }
     983             : 
     984           0 : IMPL_LINK_NOARG(AccessibleSlideSorterView::Implementation, UpdateChildrenCallback)
     985             : {
     986           0 :     mnUpdateChildrenUserEventId = 0;
     987           0 :     UpdateChildren();
     988             : 
     989           0 :     return 1;
     990             : }
     991             : 
     992           0 : IMPL_LINK_NOARG(AccessibleSlideSorterView::Implementation, VisibilityChangeListener)
     993             : {
     994           0 :     UpdateChildren();
     995           0 :     return 1;
     996             : }
     997             : 
     998         114 : } // end of namespace ::accessibility
     999             : 
    1000             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10