1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
22 #include <com/sun/star/accessibility/XAccessibleEventListener.hpp>
24 #include <cppuhelper/implbase.hxx>
26 #include <osx/a11yfocustracker.hxx>
28 #include <o3tl/sorted_vector.hxx>
31 class DocumentFocusListener
:
32 public ::cppu::WeakImplHelper
< css::accessibility::XAccessibleEventListener
>
37 explicit DocumentFocusListener(AquaA11yFocusTracker
& rTracker
);
39 /// @throws css::lang::IndexOutOfBoundsException
40 /// @throws css::uno::RuntimeException
42 const css::uno::Reference
< css::accessibility::XAccessible
>& xAccessible
45 /// @throws css::lang::IndexOutOfBoundsException
46 /// @throws css::uno::RuntimeException
48 const css::uno::Reference
< css::accessibility::XAccessible
>& xAccessible
,
49 const css::uno::Reference
< css::accessibility::XAccessibleContext
>& xContext
52 /// @throws css::lang::IndexOutOfBoundsException
53 /// @throws css::uno::RuntimeException
55 const css::uno::Reference
< css::accessibility::XAccessible
>& xAccessible
,
56 const css::uno::Reference
< css::accessibility::XAccessibleContext
>& xContext
,
60 /// @throws css::lang::IndexOutOfBoundsException
61 /// @throws css::uno::RuntimeException
63 const css::uno::Reference
< css::accessibility::XAccessible
>& xAccessible
66 /// @throws css::lang::IndexOutOfBoundsException
67 /// @throws css::uno::RuntimeException
69 const css::uno::Reference
< css::accessibility::XAccessible
>& xAccessible
,
70 const css::uno::Reference
< css::accessibility::XAccessibleContext
>& xContext
73 /// @throws css::lang::IndexOutOfBoundsException
74 /// @throws css::uno::RuntimeException
76 const css::uno::Reference
< css::accessibility::XAccessible
>& xAccessible
,
77 const css::uno::Reference
< css::accessibility::XAccessibleContext
>& xContext
,
81 /// @throws css::lang::IndexOutOfBoundsException
82 /// @throws css::uno::RuntimeException
83 static css::uno::Reference
< css::accessibility::XAccessible
> getAccessible(const css::lang::EventObject
& aEvent
);
86 virtual void SAL_CALL
disposing( const css::lang::EventObject
& Source
) override
;
88 // XAccessibleEventListener
89 virtual void SAL_CALL
notifyEvent( const css::accessibility::AccessibleEventObject
& aEvent
) override
;
92 o3tl::sorted_vector
< css::uno::Reference
< css::uno::XInterface
> > m_aRefList
;
94 AquaA11yFocusTracker
& m_aFocusTracker
;
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */