Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 : #ifndef INCLUDED_SVX_INC_SDR_OVERLAY_OVERLAYRECTANGLE_HXX
20 : #define INCLUDED_SVX_INC_SDR_OVERLAY_OVERLAYRECTANGLE_HXX
21 :
22 : #include <svx/sdr/overlay/overlayobject.hxx>
23 : #include <tools/gen.hxx>
24 :
25 : namespace tools { class PolyPolygon; }
26 :
27 : namespace sdr
28 : {
29 : namespace overlay
30 : {
31 24 : class OverlayRectangle : public OverlayObjectWithBasePosition
32 : {
33 : // geometric definitions
34 : basegfx::B2DPoint maSecondPosition;
35 : const double mfTransparence;
36 : const double mfDiscreteGrow;
37 : const double mfDiscreteShrink;
38 : const double mfRotation;
39 :
40 : // #i53216# added CursorBlinkTime (in ms)
41 : sal_uInt32 mnBlinkTime;
42 :
43 : /// bitfield
44 : // Flag to remember which state to draw. Inited with false (0)
45 : bool mbOverlayState : 1;
46 :
47 : // geometry creation for OverlayObject
48 : virtual drawinglayer::primitive2d::Primitive2DSequence createOverlayObjectPrimitive2DSequence() SAL_OVERRIDE;
49 :
50 : public:
51 : OverlayRectangle(
52 : const basegfx::B2DPoint& rBasePosition,
53 : const basegfx::B2DPoint& rSecondPosition,
54 : const Color& rHatchColor,
55 : double fTransparence,
56 : double fDiscreteGrow,
57 : double fDiscreteShrink,
58 : double fRotation,
59 : sal_uInt64 nBlinkTime,
60 : bool bAnimate);
61 :
62 : // data read access
63 24 : double getTransparence() const { return mfTransparence; }
64 24 : double getDiscreteGrow() const { return mfDiscreteGrow; }
65 24 : double getDiscreteShrink() const { return mfDiscreteShrink; }
66 24 : double getRotation() const { return mfRotation; }
67 :
68 : // execute event from base class sdr::animation::Event. Default
69 : // implementation does nothing and does not create a new event.
70 : virtual void Trigger(sal_uInt32 nTime) SAL_OVERRIDE;
71 : };
72 : } // end of namespace overlay
73 : } // end of namespace sdr
74 :
75 : #endif // INCLUDED_SVX_INC_SDR_OVERLAY_OVERLAYRECTANGLE_HXX
76 :
77 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|