Update git submodules
[LibreOffice.git] / svx / inc / sdr / primitive2d / sdrcaptionprimitive2d.hxx
blobbeddbd75a0d6c1f819c14a0dddac74950fbe180e
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_SVX_INC_SDR_PRIMITIVE2D_SDRCAPTIONPRIMITIVE2D_HXX
21 #define INCLUDED_SVX_INC_SDR_PRIMITIVE2D_SDRCAPTIONPRIMITIVE2D_HXX
23 #include <drawinglayer/primitive2d/BufferedDecompositionPrimitive2D.hxx>
24 #include <basegfx/matrix/b2dhommatrix.hxx>
25 #include <sdr/attribute/sdrlinefilleffectstextattribute.hxx>
26 #include <basegfx/polygon/b2dpolygon.hxx>
29 // predefines
32 namespace drawinglayer::primitive2d
34 class SdrCaptionPrimitive2D final : public BufferedDecompositionPrimitive2D
36 private:
37 ::basegfx::B2DHomMatrix maTransform;
38 attribute::SdrLineFillEffectsTextAttribute maSdrLFSTAttribute;
39 ::basegfx::B2DPolygon maTail;
40 double mfCornerRadiusX; // [0.0..1.0] relative to 1/2 width
41 double mfCornerRadiusY; // [0.0..1.0] relative to 1/2 height
43 // local decomposition.
44 virtual Primitive2DReference create2DDecomposition(const geometry::ViewInformation2D& aViewInformation) const override;
46 public:
47 SdrCaptionPrimitive2D(
48 ::basegfx::B2DHomMatrix aTransform,
49 const attribute::SdrLineFillEffectsTextAttribute& rSdrLFSTAttribute,
50 ::basegfx::B2DPolygon aTail,
51 double fCornerRadiusX,
52 double fCornerRadiusY);
54 // compare operator
55 virtual bool operator==(const BasePrimitive2D& rPrimitive) const override;
57 // data access
58 const ::basegfx::B2DHomMatrix& getTransform() const { return maTransform; }
59 const attribute::SdrLineFillEffectsTextAttribute& getSdrLFSTAttribute() const { return maSdrLFSTAttribute; }
60 const ::basegfx::B2DPolygon& getTail() const { return maTail; }
61 double getCornerRadiusX() const { return mfCornerRadiusX; }
62 double getCornerRadiusY() const { return mfCornerRadiusY; }
64 // provide unique ID
65 virtual sal_uInt32 getPrimitive2DID() const override;
67 } // end of namespace drawinglayer::primitive2d
70 #endif // INCLUDED_SVX_INC_SDR_PRIMITIVE2D_SDRCAPTIONPRIMITIVE2D_HXX
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */