1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 #ifndef INCLUDED_SVX_SOURCE_TABLE_TABLEUNDO_HXX
21 #define INCLUDED_SVX_SOURCE_TABLE_TABLEUNDO_HXX
23 #include <com/sun/star/container/XIndexAccess.hpp>
24 #include <com/sun/star/table/CellContentType.hpp>
26 #include <svx/svdotable.hxx>
27 #include <svx/svdobj.hxx>
28 #include <svx/svdundo.hxx>
29 #include <svx/sdrobjectuser.hxx>
31 #include <celltypes.hxx>
33 namespace sdr
{ namespace properties
{
37 class OutlinerParaObject
;
40 namespace sdr
{ namespace table
{
42 class CellUndo
: public SdrUndoAction
, public sdr::ObjectUser
45 CellUndo( const tools::WeakReference
<SdrObject
>& xObjRef
, const CellRef
& xCell
);
46 virtual ~CellUndo() override
;
48 virtual void Undo() override
;
49 virtual void Redo() override
;
50 virtual bool Merge( SfxUndoAction
*pNextAction
) override
;
53 virtual void ObjectInDestruction(const SdrObject
& rObject
) override
;
58 sdr::properties::TextProperties
* mpProperties
;
59 OutlinerParaObject
* mpOutlinerParaObject
;
65 ::sal_Int32 mnRowSpan
;
66 ::sal_Int32 mnColSpan
;
69 : mpProperties(nullptr)
70 , mpOutlinerParaObject(nullptr)
80 void setDataToCell( const Data
& rData
);
81 void getDataFromCell( Data
& rData
);
83 tools::WeakReference
<SdrObject
> mxObjRef
;
91 class InsertRowUndo
: public SdrUndoAction
94 InsertRowUndo( const TableModelRef
& xTable
, sal_Int32 nIndex
, RowVector
& aNewRows
);
95 virtual ~InsertRowUndo() override
;
97 virtual void Undo() override
;
98 virtual void Redo() override
;
101 TableModelRef mxTable
;
102 sal_Int32
const mnIndex
;
108 class RemoveRowUndo
: public SdrUndoAction
111 RemoveRowUndo( const TableModelRef
& xTable
, sal_Int32 nIndex
, RowVector
& aRemovedRows
);
112 virtual ~RemoveRowUndo() override
;
114 virtual void Undo() override
;
115 virtual void Redo() override
;
118 TableModelRef mxTable
;
119 sal_Int32
const mnIndex
;
125 class InsertColUndo
: public SdrUndoAction
128 InsertColUndo( const TableModelRef
& xTable
, sal_Int32 nIndex
, ColumnVector
& aNewCols
, CellVector
& aCells
);
129 virtual ~InsertColUndo() override
;
131 virtual void Undo() override
;
132 virtual void Redo() override
;
135 TableModelRef mxTable
;
136 sal_Int32
const mnIndex
;
137 ColumnVector maColumns
;
143 class RemoveColUndo
: public SdrUndoAction
146 RemoveColUndo( const TableModelRef
& xTable
, sal_Int32 nIndex
, ColumnVector
& aNewCols
, CellVector
& aCells
);
147 virtual ~RemoveColUndo() override
;
149 virtual void Undo() override
;
150 virtual void Redo() override
;
153 TableModelRef mxTable
;
154 sal_Int32
const mnIndex
;
155 ColumnVector maColumns
;
161 class TableColumnUndo
: public SdrUndoAction
164 explicit TableColumnUndo( const TableColumnRef
& xCol
);
165 virtual ~TableColumnUndo() override
;
167 virtual void Undo() override
;
168 virtual void Redo() override
;
169 virtual bool Merge( SfxUndoAction
*pNextAction
) override
;
178 bool mbIsStartOfNewPage
;
184 , mbOptimalWidth(false)
186 , mbIsStartOfNewPage(false)
191 void setData( const Data
& rData
);
192 void getData( Data
& rData
);
194 TableColumnRef mxCol
;
201 class TableRowUndo
: public SdrUndoAction
204 explicit TableRowUndo( const TableRowRef
& xRow
);
205 virtual ~TableRowUndo() override
;
207 virtual void Undo() override
;
208 virtual void Redo() override
;
209 virtual bool Merge( SfxUndoAction
*pNextAction
) override
;
216 bool mbOptimalHeight
;
218 bool mbIsStartOfNewPage
;
222 void setData( const Data
& rData
);
223 void getData( Data
& rData
);
231 class TableStyleUndo
: public SdrUndoAction
234 explicit TableStyleUndo( const SdrTableObj
& rTableObj
);
236 virtual void Undo() override
;
237 virtual void Redo() override
;
240 tools::WeakReference
<SdrTableObj
> mxObjRef
;
244 TableStyleSettings maSettings
;
245 css::uno::Reference
< css::container::XIndexAccess
> mxTableStyle
;
248 void setData( const Data
& rData
);
249 void getData( Data
& rData
);
260 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */