1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <svx/sdr/overlay/overlayobject.hxx>
23 #include <vcl/font.hxx>
24 #include <vcl/mapmod.hxx>
26 class ScOverlayDashedBorder
: public sdr::overlay::OverlayObject
29 ScOverlayDashedBorder(const ::basegfx::B2DRange
& rRange
, const Color
& rColor
);
30 virtual ~ScOverlayDashedBorder() override
;
32 virtual void Trigger(sal_uInt32 nTime
) override
;
34 virtual void stripeDefinitionHasChanged() override
;
37 virtual drawinglayer::primitive2d::Primitive2DContainer
createOverlayObjectPrimitive2DSequence() override
;
40 ::basegfx::B2DRange maRange
;
44 class ScOverlayHint
: public sdr::overlay::OverlayObject
47 ScOverlayHint(OUString aTit
, const OUString
& rMsg
, const Color
& rColor
, vcl::Font aFont
);
48 Size
GetSizePixel() const;
49 void SetPos(const Point
& rPos
, const MapMode
& rMode
);
52 virtual drawinglayer::primitive2d::Primitive2DContainer
createOverlayObjectPrimitive2DSequence() override
;
55 drawinglayer::primitive2d::Primitive2DContainer
createOverlaySequence(sal_Int32 nLeft
, sal_Int32 nTop
, const MapMode
&rMapMode
, basegfx::B2DRange
&rRange
) const;
57 const OUString m_aTitle
;
58 const OUString m_aMessage
;
59 const vcl::Font m_aTextFont
;
65 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */