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_SVX_ACCESSIBLESHAPEINFO_HXX
21 #define INCLUDED_SVX_ACCESSIBLESHAPEINFO_HXX
23 #include <com/sun/star/uno/Reference.hxx>
24 #include <svx/svxdllapi.h>
26 namespace com::sun::star
{
27 namespace accessibility
{ class XAccessible
; }
28 namespace drawing
{ class XShape
; }
31 namespace accessibility
{
33 class IAccessibleParent
;
36 This class is a container for the information specific for a single
37 shape that is passed to the constructor of that shape. It allows to
38 separate the class definitions of the shapes from the information
39 needed on construction. Only the shapes' implementation has to be
40 adapted to a modified AccessibleShapeInfo definition.
42 <p>Note that this class complements the
43 AccessibleShapeTreeInfo interface which contains
44 information that is passed to all shapes in a subtree not just to a
47 class SVX_DLLPUBLIC AccessibleShapeInfo
50 /** The shape itself for which an accessible object is to be
54 css::drawing::XShape
> mxShape
;
56 /** The accessible parent object of the shape.
59 css::accessibility::XAccessible
> mxParent
;
61 /** This object that may be realized by the same implementation as that
62 of that of <member>mxParent</member> can be used to modify
63 parent/child relationships with the shape as initiator.
64 Note that NULL is a valid value for this member.
66 IAccessibleParent
* mpChildrenManager
;
68 /** Copy the given values into the members described above.
72 css::drawing::XShape
> xShape
,
74 css::accessibility::XAccessible
> xParent
,
75 IAccessibleParent
* pChildrenManager
);
77 /** Copy the given values into the members described above.
78 The accessible parent implementation object is set to NULL.
82 css::drawing::XShape
> xShape
,
84 css::accessibility::XAccessible
> xParent
);
86 ~AccessibleShapeInfo();
88 AccessibleShapeInfo (const AccessibleShapeInfo
&);
90 AccessibleShapeInfo
& operator= (const AccessibleShapeInfo
&) = delete;
93 } // end of namespace accessibility
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */