LibreOffice Module svx (master) 1
objfac3d.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#include <svx/svdobjkind.hxx>
21#include <svx/cube3d.hxx>
22#include <svx/sphere3d.hxx>
23#include <extrud3d.hxx>
24#include <svx/lathe3d.hxx>
25#include <polygn3d.hxx>
26#include <svx/objfac3d.hxx>
27#include <svx/svdobj.hxx>
28#include <svx/scene3d.hxx>
29
30static bool bInit = false;
31
33{
34 if ( !bInit )
35 {
37 bInit = true;
38 }
39}
40
41// Generate chart internal objects
42
44{
45 if ( aParams.nInventor == SdrInventor::E3d )
46 {
47 switch ( aParams.nObjIdentifier )
48 {
50 return new E3dScene(aParams.rSdrModel);
52 return new E3dPolygonObj(aParams.rSdrModel);
54 return new E3dCubeObj(aParams.rSdrModel);
56 return new E3dSphereObj(aParams.rSdrModel);
58 return new E3dExtrudeObj(aParams.rSdrModel);
60 return new E3dLatheObj(aParams.rSdrModel);
62 return new E3dCompoundObject(aParams.rSdrModel);
63 default:
64 break;
65 }
66 }
67 return nullptr;
68}
69
70
71/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
SphereObject with diameter r3DSize.
Definition: sphere3d.hxx:36
static void InsertMakeObjectHdl(Link< SdrObjCreatorParams, rtl::Reference< SdrObject > > const &rLink)
Definition: svdobj.cxx:3421
static bool bInit
Definition: objfac3d.cxx:30
IMPL_STATIC_LINK(E3dObjFactory, MakeObject, SdrObjCreatorParams, aParams, rtl::Reference< SdrObject >)
Definition: objfac3d.cxx:43
@ E3D_CompoundObject