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 .
20 #ifndef INCLUDED_EDITENG_ACCESSIBLECONTEXTBASE_HXX
21 #define INCLUDED_EDITENG_ACCESSIBLECONTEXTBASE_HXX
23 #include <com/sun/star/accessibility/XAccessible.hpp>
24 #include <com/sun/star/accessibility/XAccessibleContext.hpp>
25 #include <com/sun/star/accessibility/XAccessibleEventBroadcaster.hpp>
26 #include <com/sun/star/accessibility/XAccessibleStateSet.hpp>
27 #include <com/sun/star/accessibility/XAccessibleRelationSet.hpp>
28 #include <com/sun/star/accessibility/AccessibleEventObject.hpp>
29 #include <com/sun/star/accessibility/AccessibleEventId.hpp>
30 #include <com/sun/star/accessibility/IllegalAccessibleComponentStateException.hpp>
31 #include <com/sun/star/uno/Reference.hxx>
32 #include <com/sun/star/lang/XComponent.hpp>
33 #include <cppuhelper/weak.hxx>
34 #include <com/sun/star/lang/XServiceInfo.hpp>
35 #include <com/sun/star/lang/XTypeProvider.hpp>
36 #include <com/sun/star/lang/IndexOutOfBoundsException.hpp>
37 #include <com/sun/star/lang/DisposedException.hpp>
38 #include <osl/mutex.hxx>
39 #include <cppuhelper/compbase4.hxx>
40 #include <editeng/editengdllapi.h>
43 namespace accessibility
{
45 struct MutexOwner
{mutable ::osl::Mutex maMutex
;};
48 This base class provides an implementation of the
49 AccessibleContext service. Apart from the
50 <type>XXAccessible<type> and XAccessibleContextContext
51 interfaces it supports the XServiceInfo interface.
53 class EDITENG_DLLPUBLIC AccessibleContextBase
55 public cppu::WeakComponentImplHelper4
<
56 ::com::sun::star::accessibility::XAccessible
,
57 ::com::sun::star::accessibility::XAccessibleContext
,
58 ::com::sun::star::accessibility::XAccessibleEventBroadcaster
,
59 ::com::sun::star::lang::XServiceInfo
64 //===== internal ========================================================
66 /** The origin of the accessible name or description.
75 AccessibleContextBase (
76 const ::com::sun::star::uno::Reference
<
77 ::com::sun::star::accessibility::XAccessible
>& rxParent
,
78 const sal_Int16 aRole
);
79 virtual ~AccessibleContextBase();
82 /** Call all accessiblity event listeners to inform them about the
87 New value of the modified attribute. Pass empty structure if
90 Old value of the modified attribute. Pass empty structure if
93 void CommitChange (sal_Int16 aEventId
,
94 const ::com::sun::star::uno::Any
& rNewValue
,
95 const ::com::sun::star::uno::Any
& rOldValue
);
97 /** Set a new description and, provided that the new name differs from
98 the old one, broadcast an accessibility event.
101 @param eDescriptionOrigin
102 The origin of the description. This is used to determine
103 whether the given description overrules the existing one. An
104 origin with a lower numerical value overrides one with a higher
107 void SetAccessibleDescription (
108 const OUString
& rsDescription
,
109 StringOrigin eDescriptionOrigin
)
110 throw (::com::sun::star::uno::RuntimeException
);
112 /** Set a new description and, provided that the new name differs from
113 the old one, broadcast an accessibility event.
117 The origin of the name. This is used to determine whether the
118 given name overrules the existing one. An origin with a lower
119 numerical value overrides one with a higher value.
121 void SetAccessibleName (
122 const OUString
& rsName
,
123 StringOrigin eNameOrigin
)
124 throw (::com::sun::star::uno::RuntimeException
);
126 /** Set the specified state (turn it on) and send events to all
127 listeners to inform them of the change.
130 The state to turn on.
133 If the specified state changed its value due to this call
134 <TRUE/> is returned, otherwise <FALSE/>.
136 virtual bool SetState (sal_Int16 aState
);
138 /** Reset the specified state (turn it off) and send events to all
139 listeners to inform them of the change.
142 The state to turn off.
145 If the specified state changed its value due to this call
146 <TRUE/> is returned, otherwise <FALSE/>.
148 virtual bool ResetState (sal_Int16 aState
);
150 /** Return the state of the specified state.
153 The state for which to return its value.
156 A value of <TRUE/> indicates that the state is set. A <FALSE/>
157 value indicates an unset state.
159 bool GetState (sal_Int16 aState
);
161 /** Replace the current relation set with the specified one. Send
162 events for relations that are not in both sets.
165 The new relation set that replaces the old one.
167 void SetRelationSet (
168 const ::com::sun::star::uno::Reference
<
169 ::com::sun::star::accessibility::XAccessibleRelationSet
>& rxRelationSet
)
170 throw (::com::sun::star::uno::RuntimeException
);
173 //===== XAccessible =====================================================
175 /// Return the XAccessibleContext.
176 virtual ::com::sun::star::uno::Reference
<
177 ::com::sun::star::accessibility::XAccessibleContext
> SAL_CALL
178 getAccessibleContext() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
181 //===== XAccessibleContext ==============================================
183 /// Return the number of currently visible children.
184 virtual sal_Int32 SAL_CALL
185 getAccessibleChildCount() throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
187 /// Return the specified child or throw exception.
188 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::accessibility::XAccessible
> SAL_CALL
189 getAccessibleChild (sal_Int32 nIndex
)
190 throw (::com::sun::star::lang::IndexOutOfBoundsException
, ::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
192 /// Return a reference to the parent.
193 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::accessibility::XAccessible
> SAL_CALL
194 getAccessibleParent()
195 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
197 /// Return this objects index among the parents children.
198 virtual sal_Int32 SAL_CALL
199 getAccessibleIndexInParent()
200 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
202 /// Return this object's role.
203 virtual sal_Int16 SAL_CALL
205 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
207 /// Return this object's description.
208 virtual OUString SAL_CALL
209 getAccessibleDescription()
210 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
212 /// Return the object's current name.
213 virtual OUString SAL_CALL
215 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
217 /// Return NULL to indicate that an empty relation set.
218 virtual ::com::sun::star::uno::Reference
<
219 ::com::sun::star::accessibility::XAccessibleRelationSet
> SAL_CALL
220 getAccessibleRelationSet()
221 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
223 /// Return the set of current states.
224 virtual ::com::sun::star::uno::Reference
<
225 ::com::sun::star::accessibility::XAccessibleStateSet
> SAL_CALL
226 getAccessibleStateSet()
227 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
229 /** Return the parents locale or throw exception if this object has no
232 virtual ::com::sun::star::lang::Locale SAL_CALL
234 throw (::com::sun::star::uno::RuntimeException
,
235 ::com::sun::star::accessibility::IllegalAccessibleComponentStateException
, std::exception
) SAL_OVERRIDE
;
237 //===== XAccessibleEventBroadcaster ========================================
239 virtual void SAL_CALL
240 addAccessibleEventListener (
241 const ::com::sun::star::uno::Reference
<
242 ::com::sun::star::accessibility::XAccessibleEventListener
>& xListener
)
243 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
245 virtual void SAL_CALL
246 removeAccessibleEventListener (
247 const ::com::sun::star::uno::Reference
<
248 ::com::sun::star::accessibility::XAccessibleEventListener
>& xListener
)
249 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
252 //===== XServiceInfo ====================================================
254 /** Returns an identifier for the implementation of this object.
256 virtual OUString SAL_CALL
257 getImplementationName()
258 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
260 /** Return whether the specified service is supported by this class.
262 virtual sal_Bool SAL_CALL
263 supportsService (const OUString
& sServiceName
)
264 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
266 /** Returns a list of all supported services. In this case that is just
267 the AccessibleContext service.
269 virtual ::com::sun::star::uno::Sequence
< OUString
> SAL_CALL
270 getSupportedServiceNames()
271 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
274 //===== XTypeProvider ===================================================
276 /** Returns a sequence of all supported interfaces.
278 virtual ::com::sun::star::uno::Sequence
< ::com::sun::star::uno::Type
> SAL_CALL
280 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
282 /** Returns a implementation id.
284 virtual ::com::sun::star::uno::Sequence
<sal_Int8
> SAL_CALL
285 getImplementationId()
286 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
291 ::com::sun::star::uno::Reference
<
292 ::com::sun::star::accessibility::XAccessibleStateSet
> mxStateSet
;
294 /** The relation set. Relations can be set or removed by calling the
295 <member>AddRelation</member> and <member>RemoveRelation</member> methods.
297 ::com::sun::star::uno::Reference
<
298 ::com::sun::star::accessibility::XAccessibleRelationSet
> mxRelationSet
;
300 // This method is called from the component helper base class while disposing.
301 virtual void SAL_CALL
disposing() SAL_OVERRIDE
;
303 /** Create the accessible object's name. This method may be called more
304 than once for a single object.
306 The returned string is a unique (among the accessible object's
309 virtual OUString
CreateAccessibleName()
310 throw (::com::sun::star::uno::RuntimeException
);
312 /** Create the accessible object's descriptive string. May be called
315 Descriptive string. Not necessarily unique.
318 CreateAccessibleDescription()
319 throw (::com::sun::star::uno::RuntimeException
);
321 void FireEvent (const ::com::sun::star::accessibility::AccessibleEventObject
& aEvent
);
323 /** Check whether or not the object has been disposed (or is in the
324 state of being disposed). If that is the case then
325 DisposedException is thrown to inform the (indirect) caller of the
328 void ThrowIfDisposed()
329 throw (::com::sun::star::lang::DisposedException
);
331 /** Check whether or not the object has been disposed (or is in the
332 state of being disposed).
334 @return TRUE, if the object is disposed or in the course
335 of being disposed. Otherwise, FALSE is returned.
339 /** sets the role as returned by XaccessibleContext::getAccessibleRole
341 <p>Caution: This is only to be used in the construction phase (means within
342 the ctor or late ctor), <em>never</em> when the object is still alive and part
343 of an Accessibility hierarchy.</p>
345 void SetAccessibleRole( sal_Int16 _nRole
);
348 /// Reference to the parent object.
349 ::com::sun::star::uno::Reference
<
350 ::com::sun::star::accessibility::XAccessible
> mxParent
;
352 /** Description of this object. This is not a constant because it can
353 be set from the outside. Furthermore, it changes according to the
354 draw page's display mode.
356 OUString msDescription
;
358 /** The origin of the description is used to determine whether new
359 descriptions given to the SetAccessibleDescription is ignored or
360 whether that replaces the old value in msDescription.
362 StringOrigin meDescriptionOrigin
;
364 /** Name of this object. It changes according the draw page's
369 /** The origin of the name is used to determine whether new
370 name given to the SetAccessibleName is ignored or
371 whether that replaces the old value in msName.
373 StringOrigin meNameOrigin
;
375 /** client id in the AccessibleEventNotifier queue
377 sal_uInt32 mnClientId
;
379 /** This is the role of this object.
388 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */