1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
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.
14  *
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).
20  *
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.
25  *
26  ************************************************************************/
27 
28 #ifndef _SD_ACCESSIBILITY_ACCESSIBLE_PRESENTATION_SHAPE_HXX
29 #define _SD_ACCESSIBILITY_ACCESSIBLE_PRESENTATION_SHAPE_HXX
30 
31 #include <svx/AccessibleShape.hxx>
32 
33 namespace accessibility {
34 
35 /**	This class makes Impress shapes accessible.
36 */
37 class AccessiblePresentationShape
38     :	public AccessibleShape
39 {
40 public:
41 	//=====  internal  ========================================================
42 	AccessiblePresentationShape (
43         const AccessibleShapeInfo& rShapeInfo,
44         const AccessibleShapeTreeInfo& rShapeTreeInfo);
45 	virtual ~AccessiblePresentationShape (void);
46 
47 	//=====  XServiceInfo  ====================================================
48 
49     /**	Returns an identifier for the implementation of this object.
50     */
51 	virtual ::rtl::OUString SAL_CALL
52     	getImplementationName (void)
53 	    throw (::com::sun::star::uno::RuntimeException);
54 
55     //=====  internal  ========================================================
56 
57     ///	Create a name string that contains the accessible name.
58 	virtual ::rtl::OUString
59     	CreateAccessibleBaseName ()
60         throw (::com::sun::star::uno::RuntimeException);
61 
62     ///	Create a description string that contains the accessible description.
63 	virtual ::rtl::OUString
64     	CreateAccessibleDescription ()
65         throw (::com::sun::star::uno::RuntimeException);
66 
67 private:
68     /** Don't use the default constructor.  Use the public constructor that
69         takes the original shape and the parent as arguments instead.
70     */
71     AccessiblePresentationShape (void);
72 
73     /// Don't use the constructor.  Not yet implemented.
74     AccessiblePresentationShape (const AccessiblePresentationShape&);
75 
76     /// Don't use the assignment operator.  Not yet implemented.
77     AccessiblePresentationShape& operator= (const AccessiblePresentationShape&);
78 };
79 
80 } // end of namespace accessibility
81 
82 #endif
83