1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <svx/svdpage.hxx>
21 #include <svx/globl3d.hxx>
22 #include <svx/cube3d.hxx>
23 #include <svx/sphere3d.hxx>
24 #include <svx/extrud3d.hxx>
25 #include <svx/lathe3d.hxx>
26 #include <svx/polygn3d.hxx>
27 #include <svx/objfac3d.hxx>
28 #include <svx/svdobj.hxx>
29 #include <svx/scene3d.hxx>
31 static bool bInit
= false;
33 E3dObjFactory::E3dObjFactory()
37 SdrObjFactory::InsertMakeObjectHdl(LINK(this, E3dObjFactory
, MakeObject
));
42 E3dObjFactory::~E3dObjFactory()
46 // Generate chart internal objects
48 IMPL_STATIC_LINK( E3dObjFactory
, MakeObject
, SdrObjCreatorParams
, aParams
, SdrObject
* )
50 if ( aParams
.nInventor
== SdrInventor::E3d
)
52 switch ( aParams
.nObjIdentifier
)
55 return new E3dScene(aParams
.rSdrModel
);
56 case E3D_POLYGONOBJ_ID
:
57 return new E3dPolygonObj(aParams
.rSdrModel
);
59 return new E3dCubeObj(aParams
.rSdrModel
);
60 case E3D_SPHEREOBJ_ID
:
61 return new E3dSphereObj(aParams
.rSdrModel
);
62 case E3D_EXTRUDEOBJ_ID
:
63 return new E3dExtrudeObj(aParams
.rSdrModel
);
65 return new E3dLatheObj(aParams
.rSdrModel
);
66 case E3D_COMPOUNDOBJ_ID
:
67 return new E3dCompoundObject(aParams
.rSdrModel
);
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */