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_SDR_OVERLAY_OVERLAYRECTANGLE_HXX
20 : #define INCLUDED_SVX_SDR_OVERLAY_OVERLAYRECTANGLE_HXX
21 :
22 : #include <svx/sdr/overlay/overlayobject.hxx>
23 : #include <tools/gen.hxx>
24 :
25 :
26 :
27 : class PolyPolygon;
28 :
29 : namespace sdr
30 : {
31 : namespace overlay
32 : {
33 0 : class OverlayRectangle : public OverlayObjectWithBasePosition
34 : {
35 : // geometric definitions
36 : basegfx::B2DPoint maSecondPosition;
37 : const double mfTransparence;
38 : const double mfDiscreteGrow;
39 : const double mfDiscreteShrink;
40 : const double mfRotation;
41 :
42 : // #i53216# added CursorBlinkTime (in ms)
43 : sal_uInt32 mnBlinkTime;
44 :
45 : /// bitfield
46 : // Flag to remember which state to draw. Inited with false (0)
47 : bool mbOverlayState : 1;
48 :
49 : // geometry creation for OverlayObject
50 : virtual drawinglayer::primitive2d::Primitive2DSequence createOverlayObjectPrimitive2DSequence() SAL_OVERRIDE;
51 :
52 : public:
53 : OverlayRectangle(
54 : const basegfx::B2DPoint& rBasePosition,
55 : const basegfx::B2DPoint& rSecondPosition,
56 : const Color& rHatchColor,
57 : double fTransparence,
58 : double fDiscreteGrow,
59 : double fDiscreteShrink,
60 : double fRotation,
61 : sal_uInt32 nBlinkTime,
62 : bool bAnimate);
63 :
64 : // data read access
65 0 : double getTransparence() const { return mfTransparence; }
66 0 : double getDiscreteGrow() const { return mfDiscreteGrow; }
67 0 : double getDiscreteShrink() const { return mfDiscreteShrink; }
68 0 : double getRotation() const { return mfRotation; }
69 :
70 : // added CursorBlinkTime (in ms)
71 : sal_uInt32 getBlinkTime() const { return mnBlinkTime; }
72 :
73 : // execute event from base class ::sdr::animation::Event. Default
74 : // implementation does nothing and does not create a new event.
75 : virtual void Trigger(sal_uInt32 nTime) SAL_OVERRIDE;
76 : };
77 : } // end of namespace overlay
78 : } // end of namespace sdr
79 :
80 :
81 :
82 : #endif // INCLUDED_SVX_SDR_OVERLAY_OVERLAYRECTANGLE_HXX
83 :
84 : // eof
85 :
86 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|