tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / svx / inc / sdr / overlay / overlayhandle.hxx
blob882fb702cbc0e7784b6264ab30a1dc1b69d8790e
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 */
11 #ifndef INCLUDED_SVX_SDR_OVERLAY_OVERLAYHANDLE_HXX
12 #define INCLUDED_SVX_SDR_OVERLAY_OVERLAYHANDLE_HXX
14 #include <svx/sdr/overlay/overlayobject.hxx>
15 #include <basegfx/vector/b2dsize.hxx>
17 namespace sdr::overlay {
20 class OverlayHandle final : public OverlayObjectWithBasePosition
22 basegfx::B2DSize maSize;
23 Color maStrokeColor;
25 // geometry creation for OverlayObject
26 virtual drawinglayer::primitive2d::Primitive2DContainer createOverlayObjectPrimitive2DSequence() override;
28 public:
29 OverlayHandle(const basegfx::B2DPoint& rBasePos,
30 const basegfx::B2DSize& rSize,
31 Color const & rStrokeColor,
32 Color const & rFillColor);
34 virtual ~OverlayHandle() override;
37 } // end of namespace sdr::overlay
39 #endif // INCLUDED_SVX_SDR_OVERLAY_OVERLAYHANDLE_HXX
41 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */