1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
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/.
10 #ifndef INCLUDED_SW_SOURCE_UIBASE_DOCVW_UNFLOATTABLEBUTTON_HXX
11 #define INCLUDED_SW_SOURCE_UIBASE_DOCVW_UNFLOATTABLEBUTTON_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 final
: public SwFrameMenuButtonBase
27 std::unique_ptr
<weld::Button
> m_xPushButton
;
31 UnfloatTableButton(SwEditWin
* pEditWin
, const SwFrame
* pFrame
);
32 virtual void dispose() override
;
33 virtual ~UnfloatTableButton() override
;
35 void SetOffset(Point aTopRightPixel
);
37 virtual void MouseButtonDown(const MouseEvent
& rMEvt
) override
;
39 virtual void ShowAll(bool bShow
) override
;
40 virtual bool Contains(const Point
& rDocPt
) const override
;
42 virtual void SetReadonly(bool bReadonly
) override
;
50 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */