Breeze: tdf#143300 add criss-cross border
[LibreOffice.git] / svx / inc / extrud3d.hxx
blob1b0e5a248171736c7266b7b93028fcb83472b311
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 #pragma once
22 #include <config_options.h>
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 UNLESS_MERGELIBS(SVXCORE_DLLPUBLIC) E3dExtrudeObj final : public E3dCompoundObject
40 private:
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);
51 private:
52 // protected destructor - due to final, make private
53 virtual ~E3dExtrudeObj() override;
55 public:
56 E3dExtrudeObj(
57 SdrModel& rSdrModel,
58 const E3dDefaultAttributes& rDefault,
59 const basegfx::B2DPolyPolygon& rPP,
60 double fDepth);
61 E3dExtrudeObj(SdrModel& rSdrModel, E3dExtrudeObj const & rSource);
62 E3dExtrudeObj(SdrModel& rSdrModel);
64 // PercentDiagonal: 0..100, before 0.0..0.5
65 sal_uInt16 GetPercentDiagonal() const
66 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_PERCENT_DIAGONAL).GetValue(); }
68 // BackScale: 0..100, before 0.0..1.0
69 sal_uInt16 GetPercentBackScale() const
70 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_BACKSCALE).GetValue(); }
72 // BackScale: 0..100, before 0.0..1.0
73 sal_uInt32 GetExtrudeDepth() const
74 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_DEPTH).GetValue(); }
76 // #107245# GetSmoothNormals() for bExtrudeSmoothed
77 bool GetSmoothNormals() const
78 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_SMOOTH_NORMALS).GetValue(); }
80 // #107245# GetSmoothLids() for bExtrudeSmoothFrontBack
81 bool GetSmoothLids() const
82 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_SMOOTH_LIDS).GetValue(); }
84 // #107245# GetCharacterMode() for bExtrudeCharacterMode
85 bool GetCharacterMode() const
86 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_CHARACTER_MODE).GetValue(); }
88 // #107245# GetCloseFront() for bExtrudeCloseFront
89 bool GetCloseFront() const
90 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_CLOSE_FRONT).GetValue(); }
92 // #107245# GetCloseBack() for bExtrudeCloseBack
93 bool GetCloseBack() const
94 { return GetObjectItemSet().Get(SDRATTR_3DOBJ_CLOSE_BACK).GetValue(); }
96 virtual SdrObjKind GetObjIdentifier() const override;
98 virtual E3dExtrudeObj* CloneSdrObject(SdrModel& rTargetModel) const override;
100 // TakeObjName...() is for the display in the UI (for example "3 frames selected")
101 virtual OUString TakeObjNameSingul() const override;
102 virtual OUString TakeObjNamePlural() const override;
104 // set/get local parameters with geometry regeneration
105 void SetExtrudePolygon(const basegfx::B2DPolyPolygon &rNew);
106 const basegfx::B2DPolyPolygon &GetExtrudePolygon() const { return maExtrudePolygon; }
108 virtual bool IsBreakObjPossible() override;
109 virtual std::unique_ptr<SdrAttrObj,SdrObjectFreeOp> GetBreakObj() override;
112 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */