docthemes: Save themes def. to a file when added to ColorSets
[LibreOffice.git] / sw / source / uibase / inc / UnfloatTableButton.hxx
blob8803b5169173558a5d7488d2c28b9a6538a172ad
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 final : public SwFrameMenuButtonBase
27 std::unique_ptr<weld::Button> m_xPushButton;
28 OUString m_sLabel;
30 public:
31 UnfloatTableButton(SwEditWin* pEditWin, const SwFrame* pFrame);
32 virtual void dispose() override;
33 virtual ~UnfloatTableButton() override;
35 void SetOffset(Point aTopRightPixel);
37 virtual void ShowAll(bool bShow) override;
38 virtual bool Contains(const Point& rDocPt) const override;
40 virtual void SetReadonly(bool bReadonly) override;
41 weld::Button* GetButton() override;
43 private:
44 DECL_LINK(ClickHdl, weld::Button&, void);
45 void PaintButton();
48 #endif
50 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */