nss: upgrade to release 3.73
[LibreOffice.git] / sw / source / uibase / inc / UnfloatTableButton.hxx
blob701c824b814ec9888c8ef2f4037e5d1171446666
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
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/.
8 */
10 #ifndef INCLUDED_SW_SOURCE_UIBASE_DOCVW_UNFLOATTABLEBUTTON_HXX
11 #define INCLUDED_SW_SOURCE_UIBASE_DOCVW_UNFLOATTABLEBUTTON_HXX
13 #include "edtwin.hxx"
14 #include "FrameControl.hxx"
16 /** Class for unfloat table button
18 * This unfloat button is used to convert a floating table into a simple writer table embedded to the text body.
19 * This unfloat operation is useful typically for documents imported from MSO file formats containing
20 * multi-page floating tables. In case of a multi-page table the text frame cuts off the table because
21 * the frame can't span across multiple pages. With unfloating we can get a multi-page table without
22 * floating properties.
25 class UnfloatTableButton : public SwFrameMenuButtonBase
27 OUString m_sLabel;
29 public:
30 UnfloatTableButton(SwEditWin* pEditWin, const SwFrame* pFrame);
31 virtual ~UnfloatTableButton() override;
33 void SetOffset(Point aTopRightPixel);
35 virtual void MouseButtonDown(const MouseEvent& rMEvt) override;
36 virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) override;
38 virtual void ShowAll(bool bShow) override;
39 virtual bool Contains(const Point& rDocPt) const override;
41 virtual void SetReadonly(bool bReadonly) override;
44 #endif
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */