nss: upgrade to release 3.73
[LibreOffice.git] / include / drawinglayer / primitive3d / polygonprimitive3d.hxx
blob76f4a8fe7b395742921e29500f1540980c6d1f2b
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 #ifndef INCLUDED_DRAWINGLAYER_PRIMITIVE3D_POLYGONPRIMITIVE3D_HXX
21 #define INCLUDED_DRAWINGLAYER_PRIMITIVE3D_POLYGONPRIMITIVE3D_HXX
23 #include <drawinglayer/drawinglayerdllapi.h>
25 #include <drawinglayer/primitive3d/baseprimitive3d.hxx>
26 #include <basegfx/color/bcolor.hxx>
27 #include <basegfx/polygon/b3dpolygon.hxx>
28 #include <drawinglayer/attribute/lineattribute.hxx>
29 #include <drawinglayer/attribute/strokeattribute.hxx>
32 namespace drawinglayer::primitive3d
34 /** PolygonHairlinePrimitive3D class
36 This primitive defines a Hairline in 3D. Since hairlines are view-dependent,
37 this primitive is view-dependent, too.
39 This is one of the non-decomposable 3D primitives, so a renderer
40 should process it.
42 class DRAWINGLAYER_DLLPUBLIC PolygonHairlinePrimitive3D : public BasePrimitive3D
44 private:
45 /// the hairline geometry
46 basegfx::B3DPolygon maPolygon;
48 /// the hairline color
49 basegfx::BColor maBColor;
51 public:
52 /// constructor
53 PolygonHairlinePrimitive3D(
54 const basegfx::B3DPolygon& rPolygon,
55 const basegfx::BColor& rBColor);
57 /// data read access
58 const basegfx::B3DPolygon& getB3DPolygon() const { return maPolygon; }
59 const basegfx::BColor& getBColor() const { return maBColor; }
61 /// compare operator
62 virtual bool operator==(const BasePrimitive3D& rPrimitive) const override;
64 /// get range
65 virtual basegfx::B3DRange getB3DRange(const geometry::ViewInformation3D& rViewInformation) const override;
67 /// provide unique ID
68 DeclPrimitive3DIDBlock()
71 } // end of namespace drawinglayer::primitive3d
74 namespace drawinglayer::primitive3d
76 /** PolygonStrokePrimitive3D class
78 This primitive defines a 3D line with line width, line join, line color
79 and stroke attributes. It will be decomposed dependent on the definition
80 to the needed primitives, e.g. filled Tubes for fat lines.
82 class PolygonStrokePrimitive3D final : public BufferedDecompositionPrimitive3D
84 private:
85 /// the line geometry
86 basegfx::B3DPolygon maPolygon;
88 /// the line attributes like width, join and color
89 attribute::LineAttribute maLineAttribute;
91 /// the line stroking (if used)
92 attribute::StrokeAttribute maStrokeAttribute;
94 /// local decomposition.
95 virtual Primitive3DContainer create3DDecomposition(const geometry::ViewInformation3D& rViewInformation) const override;
97 public:
98 /// constructor
99 PolygonStrokePrimitive3D(
100 const basegfx::B3DPolygon& rPolygon,
101 const attribute::LineAttribute& rLineAttribute,
102 const attribute::StrokeAttribute& rStrokeAttribute);
104 /// data read access
105 const basegfx::B3DPolygon& getB3DPolygon() const { return maPolygon; }
106 const attribute::LineAttribute& getLineAttribute() const { return maLineAttribute; }
107 const attribute::StrokeAttribute& getStrokeAttribute() const { return maStrokeAttribute; }
109 /// compare operator
110 virtual bool operator==(const BasePrimitive3D& rPrimitive) const override;
112 /// provide unique ID
113 DeclPrimitive3DIDBlock()
116 } // end of namespace drawinglayer::primitive3d
119 #endif //INCLUDED_DRAWINGLAYER_PRIMITIVE3D_POLYGONPRIMITIVE3D_HXX
121 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */