Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / svx / inc / sdr / overlay / overlayrectangle.hxx
blobf9de1178922eec06e1859ab62143f9e9cb362e11
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 .
19 #ifndef INCLUDED_SVX_INC_SDR_OVERLAY_OVERLAYRECTANGLE_HXX
20 #define INCLUDED_SVX_INC_SDR_OVERLAY_OVERLAYRECTANGLE_HXX
22 #include <svx/sdr/overlay/overlayobject.hxx>
23 #include <tools/gen.hxx>
25 namespace tools { class PolyPolygon; }
27 namespace sdr
29 namespace overlay
31 class OverlayRectangle : public OverlayObjectWithBasePosition
33 // geometric definitions
34 basegfx::B2DPoint maSecondPosition;
35 const double mfTransparence;
36 const double mfDiscreteGrow;
37 const double mfDiscreteShrink;
38 const double mfRotation;
40 // #i53216# added CursorBlinkTime (in ms)
41 sal_uInt32 mnBlinkTime;
43 // Flag to remember which state to draw. Inited with false (0)
44 bool mbOverlayState : 1;
46 // geometry creation for OverlayObject
47 virtual drawinglayer::primitive2d::Primitive2DContainer createOverlayObjectPrimitive2DSequence() override;
49 public:
50 OverlayRectangle(
51 const basegfx::B2DPoint& rBasePosition,
52 const basegfx::B2DPoint& rSecondPosition,
53 const Color& rHatchColor,
54 double fTransparence,
55 double fDiscreteGrow,
56 double fDiscreteShrink,
57 double fRotation,
58 bool bAnimate);
60 // execute event from base class sdr::animation::Event. Default
61 // implementation does nothing and does not create a new event.
62 virtual void Trigger(sal_uInt32 nTime) override;
64 } // end of namespace overlay
65 } // end of namespace sdr
67 #endif // INCLUDED_SVX_INC_SDR_OVERLAY_OVERLAYRECTANGLE_HXX
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */