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 #ifndef INCLUDED_SVX_EXTRUD3D_HXX
21 #define INCLUDED_SVX_EXTRUD3D_HXX
23 #include <svl/intitem.hxx>
24 #include <svl/itemset.hxx>
25 #include <svx/obj3d.hxx>
26 #include <svx/svxdllapi.h>
27 #include <svx/svddef.hxx>
28 #include <svx/svx3ditems.hxx>
30 class E3dDefaultAttributes
;
32 /*************************************************************************
34 |* 3D extrusion object created from the provided 2D polygon
36 \************************************************************************/
38 class SAL_WARN_UNUSED SVX_DLLPUBLIC E3dExtrudeObj final
: public E3dCompoundObject
41 // to allow sdr::properties::E3dExtrudeProperties access to SetGeometryValid()
42 friend class sdr::properties::E3dExtrudeProperties
;
44 // geometry, which determines the object
45 basegfx::B2DPolyPolygon maExtrudePolygon
;
47 virtual std::unique_ptr
<sdr::contact::ViewContact
> CreateObjectSpecificViewContact() override
;
48 virtual std::unique_ptr
<sdr::properties::BaseProperties
> CreateObjectSpecificProperties() override
;
49 void SetDefaultAttributes(const E3dDefaultAttributes
& rDefault
);
52 // protected destructor - due to final, make private
53 virtual ~E3dExtrudeObj() override
;
58 const E3dDefaultAttributes
& rDefault
,
59 const basegfx::B2DPolyPolygon
& rPP
,
61 E3dExtrudeObj(SdrModel
& rSdrModel
);
63 // PercentDiagonal: 0..100, before 0.0..0.5
64 sal_uInt16
GetPercentDiagonal() const
65 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_PERCENT_DIAGONAL
).GetValue(); }
67 // BackScale: 0..100, before 0.0..1.0
68 sal_uInt16
GetPercentBackScale() const
69 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_BACKSCALE
).GetValue(); }
71 // BackScale: 0..100, before 0.0..1.0
72 sal_uInt32
GetExtrudeDepth() const
73 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_DEPTH
).GetValue(); }
75 // #107245# GetSmoothNormals() for bExtrudeSmoothed
76 bool GetSmoothNormals() const
77 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_SMOOTH_NORMALS
).GetValue(); }
79 // #107245# GetSmoothLids() for bExtrudeSmoothFrontBack
80 bool GetSmoothLids() const
81 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_SMOOTH_LIDS
).GetValue(); }
83 // #107245# GetCharacterMode() for bExtrudeCharacterMode
84 bool GetCharacterMode() const
85 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_CHARACTER_MODE
).GetValue(); }
87 // #107245# GetCloseFront() for bExtrudeCloseFront
88 bool GetCloseFront() const
89 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_CLOSE_FRONT
).GetValue(); }
91 // #107245# GetCloseBack() for bExtrudeCloseBack
92 bool GetCloseBack() const
93 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_CLOSE_BACK
).GetValue(); }
95 virtual sal_uInt16
GetObjIdentifier() const override
;
97 virtual E3dExtrudeObj
* CloneSdrObject(SdrModel
& rTargetModel
) const override
;
99 // implemented mainly for the purposes of Clone()
100 E3dExtrudeObj
& operator=(const E3dExtrudeObj
& rObj
);
102 // TakeObjName...() is for the display in the UI (for example "3 frames selected")
103 virtual OUString
TakeObjNameSingul() const override
;
104 virtual OUString
TakeObjNamePlural() const override
;
106 // set/get local parameters with geometry regeneration
107 void SetExtrudePolygon(const basegfx::B2DPolyPolygon
&rNew
);
108 const basegfx::B2DPolyPolygon
&GetExtrudePolygon() const { return maExtrudePolygon
; }
110 virtual bool IsBreakObjPossible() override
;
111 virtual std::unique_ptr
<SdrAttrObj
,SdrObjectFreeOp
> GetBreakObj() override
;
114 #endif // INCLUDED_SVX_EXTRUD3D_HXX
116 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */