bump product version to 7.2.5.1
[LibreOffice.git] / vcl / inc / bubblewindow.hxx
blob1a6077b0298015ae0896b50becfcbc061a4990cd
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 <vcl/toolkit/floatwin.hxx>
23 #include <vcl/image.hxx>
24 #include <vcl/menu.hxx>
26 class BubbleWindow final : public FloatingWindow
28 Point maTipPos;
29 vcl::Region maBounds;
30 tools::Polygon maRectPoly;
31 tools::Polygon maTriPoly;
32 OUString maBubbleTitle;
33 OUString maBubbleText;
34 Image maBubbleImage;
35 Size maMaxTextSize;
36 tools::Rectangle maTitleRect;
37 tools::Rectangle maTextRect;
38 tools::Long mnTipOffset;
40 private:
41 void RecalcTextRects();
43 public:
44 BubbleWindow( vcl::Window* pParent, const OUString& rTitle,
45 const OUString& rText, const Image& rImage );
47 virtual void MouseButtonDown( const MouseEvent& rMEvt ) override;
48 virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) override;
49 void Resize() override;
50 void Show( bool bVisible = true );
51 void SetTipPosPixel( const Point& rTipPos ) { maTipPos = rTipPos; }
52 void SetTitleAndText( const OUString& rTitle, const OUString& rText,
53 const Image& rImage );
56 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */