1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
28 #ifndef _SD_ACCESSIBILITY_ACCESSIBLE_PRESENTATION_SHAPE_HXX
29 #define _SD_ACCESSIBILITY_ACCESSIBLE_PRESENTATION_SHAPE_HXX
31 #include <svx/AccessibleShape.hxx>
33 namespace accessibility
{
35 /** This class makes Impress shapes accessible.
37 class AccessiblePresentationShape
38 : public AccessibleShape
41 //===== internal ========================================================
42 AccessiblePresentationShape (
43 const AccessibleShapeInfo
& rShapeInfo
,
44 const AccessibleShapeTreeInfo
& rShapeTreeInfo
);
45 virtual ~AccessiblePresentationShape (void);
47 //===== XServiceInfo ====================================================
49 /** Returns an identifier for the implementation of this object.
51 virtual ::rtl::OUString SAL_CALL
52 getImplementationName (void)
53 throw (::com::sun::star::uno::RuntimeException
);
55 //===== internal ========================================================
57 /// Create a name string that contains the accessible name.
58 virtual ::rtl::OUString
59 CreateAccessibleBaseName ()
60 throw (::com::sun::star::uno::RuntimeException
);
62 /// Create a description string that contains the accessible description.
63 virtual ::rtl::OUString
64 CreateAccessibleDescription ()
65 throw (::com::sun::star::uno::RuntimeException
);
68 /** Don't use the default constructor. Use the public constructor that
69 takes the original shape and the parent as arguments instead.
71 AccessiblePresentationShape (void);
73 /// Don't use the constructor. Not yet implemented.
74 AccessiblePresentationShape (const AccessiblePresentationShape
&);
76 /// Don't use the assignment operator. Not yet implemented.
77 AccessiblePresentationShape
& operator= (const AccessiblePresentationShape
&);
80 } // end of namespace accessibility