tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / sc / source / ui / inc / overlayobject.hxx
blob35ea695edaf0ac8e4b847454797f756e7ee3c635
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 .
20 #pragma once
22 #include <svx/sdr/overlay/overlayobject.hxx>
23 #include <vcl/font.hxx>
24 #include <vcl/mapmod.hxx>
26 class ScOverlayDashedBorder : public sdr::overlay::OverlayObject
28 public:
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;
36 protected:
37 virtual drawinglayer::primitive2d::Primitive2DContainer createOverlayObjectPrimitive2DSequence() override;
39 private:
40 ::basegfx::B2DRange maRange;
41 bool mbToggle;
44 class ScOverlayHint : public sdr::overlay::OverlayObject
46 public:
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);
51 public:
52 virtual drawinglayer::primitive2d::Primitive2DContainer createOverlayObjectPrimitive2DSequence() override;
54 private:
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;
60 MapMode m_aMapMode;
61 sal_Int32 m_nLeft;
62 sal_Int32 m_nTop;
65 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */