xref: /AOO41X/main/sd/inc/SdShapeTypes.hxx (revision 67e470dafe1997e73f56ff7ff4878983707e3e07)
1*c45d927aSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*c45d927aSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*c45d927aSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*c45d927aSAndrew Rist  * distributed with this work for additional information
6*c45d927aSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*c45d927aSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*c45d927aSAndrew Rist  * "License"); you may not use this file except in compliance
9*c45d927aSAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11*c45d927aSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13*c45d927aSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*c45d927aSAndrew Rist  * software distributed under the License is distributed on an
15*c45d927aSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*c45d927aSAndrew Rist  * KIND, either express or implied.  See the License for the
17*c45d927aSAndrew Rist  * specific language governing permissions and limitations
18*c45d927aSAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20*c45d927aSAndrew Rist  *************************************************************/
21*c45d927aSAndrew Rist 
22*c45d927aSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef _SD_SD_SHAPE_TYPES_HXX
25cdf0e10cSrcweir #define _SD_SD_SHAPE_TYPES_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #ifndef _SVX_ACCESSIBILITY_ACCESSIBLE_SHAPE_TYPE_HANDLERHXX
28cdf0e10cSrcweir #include <svx/ShapeTypeHandler.hxx>
29cdf0e10cSrcweir #endif
30cdf0e10cSrcweir #include <svx/AccessibleShape.hxx>
31cdf0e10cSrcweir #include <com/sun/star/accessibility/XAccessible.hpp>
32cdf0e10cSrcweir 
33cdf0e10cSrcweir namespace accessibility {
34cdf0e10cSrcweir 
35cdf0e10cSrcweir /** Register the SD presentation shape types with the ShapeTypeHandler singleton.
36cdf0e10cSrcweir     This method is usually called while loading the sd library.
37cdf0e10cSrcweir */
38cdf0e10cSrcweir void RegisterImpressShapeTypes (void);
39cdf0e10cSrcweir 
40cdf0e10cSrcweir /** Enum describing all shape types known in the SD project.
41cdf0e10cSrcweir */
42cdf0e10cSrcweir enum SdShapeTypes
43cdf0e10cSrcweir {
44cdf0e10cSrcweir     PRESENTATION_OUTLINER,
45cdf0e10cSrcweir     PRESENTATION_SUBTITLE,
46cdf0e10cSrcweir     PRESENTATION_GRAPHIC_OBJECT,
47cdf0e10cSrcweir     PRESENTATION_PAGE,
48cdf0e10cSrcweir     PRESENTATION_OLE,
49cdf0e10cSrcweir     PRESENTATION_CHART,
50cdf0e10cSrcweir     PRESENTATION_TABLE,
51cdf0e10cSrcweir     PRESENTATION_NOTES,
52cdf0e10cSrcweir     PRESENTATION_TITLE,
53cdf0e10cSrcweir     PRESENTATION_HANDOUT,
54cdf0e10cSrcweir 	PRESENTATION_HEADER,
55cdf0e10cSrcweir 	PRESENTATION_FOOTER,
56cdf0e10cSrcweir 	PRESENTATION_DATETIME,
57cdf0e10cSrcweir 	PRESENTATION_PAGENUMBER
58cdf0e10cSrcweir };
59cdf0e10cSrcweir 
60cdf0e10cSrcweir /** Factory method that creates accessibility objects corresponding to the
61cdf0e10cSrcweir     type of the given shape.
62cdf0e10cSrcweir */
63cdf0e10cSrcweir AccessibleShape*
64cdf0e10cSrcweir     CreateSdAccessibleShape (const ::com::sun::star::uno::Reference<
65cdf0e10cSrcweir         ::com::sun::star::accessibility::XAccessible>& rxParent,
66cdf0e10cSrcweir         const ::com::sun::star::uno::Reference<
67cdf0e10cSrcweir         ::com::sun::star::drawing::XShape>& rxShape
68cdf0e10cSrcweir         );
69cdf0e10cSrcweir 
70cdf0e10cSrcweir 
71cdf0e10cSrcweir /** List of shape type descriptors corresponding to the
72cdf0e10cSrcweir     <type>SdShapeTypes</type> enum.
73cdf0e10cSrcweir */
74cdf0e10cSrcweir extern ShapeTypeDescriptor aSdShapeTypeList[];
75cdf0e10cSrcweir 
76cdf0e10cSrcweir 
77cdf0e10cSrcweir } // end of namespace accessibility
78cdf0e10cSrcweir 
79cdf0e10cSrcweir #endif
80