xref: /aoo4110/main/svx/source/engine3d/polysc3d.cxx (revision b1cdbd2c)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 // MARKER(update_precomp.py): autogen include statement, do not remove
25 #include "precompiled_svx.hxx"
26 #include <svx/xfillit.hxx>
27 #include <svx/svdopath.hxx>
28 #include <svx/svdogrp.hxx>
29 #include "svx/svditer.hxx"
30 #include <svx/svdetc.hxx>
31 #include <vcl/virdev.hxx>
32 #include <vcl/svapp.hxx>
33 #include <svx/svdpage.hxx>
34 #include <svx/svdpool.hxx>
35 #include <svl/style.hxx>
36 #include "svx/globl3d.hxx"
37 #include <svx/polysc3d.hxx>
38 #include <svx/xlnclit.hxx>
39 #include <svl/metitem.hxx>
40 #include <svx/xtable.hxx>
41 #include <svx/xlnwtit.hxx>
42 
43 #define ITEMVALUE(ItemSet,Id,Cast)	((const Cast&)(ItemSet).Get(Id)).GetValue()
44 
45 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
46 
47 TYPEINIT1(E3dPolyScene, E3dScene);
48 
E3dPolyScene()49 E3dPolyScene::E3dPolyScene()
50 :	E3dScene()
51 {
52 }
53 
E3dPolyScene(E3dDefaultAttributes & rDefault)54 E3dPolyScene::E3dPolyScene(E3dDefaultAttributes& rDefault)
55 :	E3dScene(rDefault)
56 {
57 }
58 
59 /*************************************************************************
60 |*
61 |* Identifier zurueckgeben
62 |*
63 \************************************************************************/
64 
GetObjIdentifier() const65 sal_uInt16 E3dPolyScene::GetObjIdentifier() const
66 {
67 	return E3D_POLYSCENE_ID;
68 }
69 
70 // eof
71