Update ooo320-m1
[ooovba.git] / chart2 / source / inc / SceneProperties.hxx
blobf3107b1b1524731701e9340d39d7a6268cf2c5aa
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: SceneProperties.hxx,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef CHART_SCENEPROPERTIES_HXX
31 #define CHART_SCENEPROPERTIES_HXX
33 #include "PropertyHelper.hxx"
34 #include "FastPropertyIdRanges.hxx"
35 #include "charttoolsdllapi.hxx"
36 #include <com/sun/star/beans/Property.hpp>
38 #include <vector>
40 namespace chart
43 // implements service SceneProperties
44 class OOO_DLLPUBLIC_CHARTTOOLS SceneProperties
46 public:
47 // FastProperty Ids for properties
48 enum
50 // "com.sun.star.drawing.SceneProperties" (does not exist)
51 PROP_SCENE_TRANSF_MATRIX = FAST_PROPERTY_ID_START_SCENE_PROP,
52 PROP_SCENE_DISTANCE,
53 PROP_SCENE_FOCAL_LENGTH,
54 PROP_SCENE_SHADOW_SLANT,
55 PROP_SCENE_SHADE_MODE,
56 PROP_SCENE_AMBIENT_COLOR,
57 PROP_SCENE_TWO_SIDED_LIGHTING,
58 PROP_SCENE_CAMERA_GEOMETRY,
59 PROP_SCENE_PERSPECTIVE,
60 PROP_SCENE_LIGHT_COLOR_1,
61 PROP_SCENE_LIGHT_DIRECTION_1,
62 PROP_SCENE_LIGHT_ON_1,
63 PROP_SCENE_LIGHT_COLOR_2,
64 PROP_SCENE_LIGHT_DIRECTION_2,
65 PROP_SCENE_LIGHT_ON_2,
66 PROP_SCENE_LIGHT_COLOR_3,
67 PROP_SCENE_LIGHT_DIRECTION_3,
68 PROP_SCENE_LIGHT_ON_3,
69 PROP_SCENE_LIGHT_COLOR_4,
70 PROP_SCENE_LIGHT_DIRECTION_4,
71 PROP_SCENE_LIGHT_ON_4,
72 PROP_SCENE_LIGHT_COLOR_5,
73 PROP_SCENE_LIGHT_DIRECTION_5,
74 PROP_SCENE_LIGHT_ON_5,
75 PROP_SCENE_LIGHT_COLOR_6,
76 PROP_SCENE_LIGHT_DIRECTION_6,
77 PROP_SCENE_LIGHT_ON_6,
78 PROP_SCENE_LIGHT_COLOR_7,
79 PROP_SCENE_LIGHT_DIRECTION_7,
80 PROP_SCENE_LIGHT_ON_7,
81 PROP_SCENE_LIGHT_COLOR_8,
82 PROP_SCENE_LIGHT_DIRECTION_8,
83 PROP_SCENE_LIGHT_ON_8
86 static void AddPropertiesToVector(
87 ::std::vector< ::com::sun::star::beans::Property > & rOutProperties );
89 static void AddDefaultsToMap( ::chart::tPropertyValueMap & rOutMap );
91 private:
92 // not implemented
93 SceneProperties();
96 } // namespace chart
98 // CHART_FILLPROPERTIES_HXX
99 #endif