blob: 8803b5169173558a5d7488d2c28b9a6538a172ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#ifndef INCLUDED_SW_SOURCE_UIBASE_DOCVW_UNFLOATTABLEBUTTON_HXX
#define INCLUDED_SW_SOURCE_UIBASE_DOCVW_UNFLOATTABLEBUTTON_HXX
#include "edtwin.hxx"
#include "FrameControl.hxx"
/** Class for unfloat table button
*
* This unfloat button is used to convert a floating table into a simple writer table embedded to the text body.
* This unfloat operation is useful typically for documents imported from MSO file formats containing
* multi-page floating tables. In case of a multi-page table the text frame cuts off the table because
* the frame can't span across multiple pages. With unfloating we can get a multi-page table without
* floating properties.
*
*/
class UnfloatTableButton final : public SwFrameMenuButtonBase
{
std::unique_ptr<weld::Button> m_xPushButton;
OUString m_sLabel;
public:
UnfloatTableButton(SwEditWin* pEditWin, const SwFrame* pFrame);
virtual void dispose() override;
virtual ~UnfloatTableButton() override;
void SetOffset(Point aTopRightPixel);
virtual void ShowAll(bool bShow) override;
virtual bool Contains(const Point& rDocPt) const override;
virtual void SetReadonly(bool bReadonly) override;
weld::Button* GetButton() override;
private:
DECL_LINK(ClickHdl, weld::Button&, void);
void PaintButton();
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
|