/src/libreoffice/svx/source/engine3d/objfac3d.cxx
Line | Count | Source (jump to first uncovered line) |
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 | | |
30 | | static bool bInit = false; |
31 | | |
32 | | E3dObjFactory::E3dObjFactory() |
33 | 21.4k | { |
34 | 21.4k | if ( !bInit ) |
35 | 25 | { |
36 | 25 | SdrObjFactory::InsertMakeObjectHdl(LINK(this, E3dObjFactory, MakeObject)); |
37 | 25 | bInit = true; |
38 | 25 | } |
39 | 21.4k | } |
40 | | |
41 | | // Generate chart internal objects |
42 | | |
43 | | IMPL_STATIC_LINK( E3dObjFactory, MakeObject, SdrObjCreatorParams, aParams, rtl::Reference<SdrObject> ) |
44 | 0 | { |
45 | 0 | if ( aParams.nInventor == SdrInventor::E3d ) |
46 | 0 | { |
47 | 0 | switch ( aParams.nObjIdentifier ) |
48 | 0 | { |
49 | 0 | case SdrObjKind::E3D_Scene: |
50 | 0 | return new E3dScene(aParams.rSdrModel); |
51 | 0 | case SdrObjKind::E3D_Polygon : |
52 | 0 | return new E3dPolygonObj(aParams.rSdrModel); |
53 | 0 | case SdrObjKind::E3D_Cube : |
54 | 0 | return new E3dCubeObj(aParams.rSdrModel); |
55 | 0 | case SdrObjKind::E3D_Sphere: |
56 | 0 | return new E3dSphereObj(aParams.rSdrModel); |
57 | 0 | case SdrObjKind::E3D_Extrusion: |
58 | 0 | return new E3dExtrudeObj(aParams.rSdrModel); |
59 | 0 | case SdrObjKind::E3D_Lathe: |
60 | 0 | return new E3dLatheObj(aParams.rSdrModel); |
61 | 0 | case SdrObjKind::E3D_CompoundObject: |
62 | 0 | return new E3dCompoundObject(aParams.rSdrModel); |
63 | 0 | default: |
64 | 0 | break; |
65 | 0 | } |
66 | 0 | } |
67 | 0 | return nullptr; |
68 | 0 | } |
69 | | |
70 | | |
71 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |