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 .
22 #include <svx/fmmodel.hxx>
23 #include <svx/svdundo.hxx>
31 enum class SdrObjKind
: sal_uInt16
;
33 class ScTabDeletedHint final
: public SfxHint
38 ScTabDeletedHint( SCTAB nTabNo
);
39 virtual ~ScTabDeletedHint() override
;
41 SCTAB
GetTab() const { return nTab
; }
44 class ScTabSizeChangedHint final
: public SfxHint
49 ScTabSizeChangedHint( SCTAB nTabNo
);
50 virtual ~ScTabSizeChangedHint() override
;
52 SCTAB
GetTab() const { return nTab
; }
55 // Adjusting of detective UserData and draw undo's both have to be in SdrUndoGroup;
56 // therefore derived from SdrUndoAction
58 class ScUndoObjData final
: public SdrUndoObj
66 ScUndoObjData( SdrObject
* pObj
, const ScAddress
& rOS
, const ScAddress
& rOE
,
67 const ScAddress
& rNS
, const ScAddress
& rNE
);
68 virtual ~ScUndoObjData() override
;
70 virtual void Undo() override
;
71 virtual void Redo() override
;
74 class ScUndoAnchorData final
: public SdrUndoObj
77 bool mbWasCellAnchored
;
78 bool mbWasResizeWithCell
;
82 ScUndoAnchorData( SdrObject
* pObj
, ScDocument
* pDoc
, SCTAB nTab
);
83 virtual ~ScUndoAnchorData() override
;
85 virtual void Undo() override
;
86 virtual void Redo() override
;
89 // for ScDrawLayer::SetPageSize
90 enum class ScObjectHandling
92 RecalcPosMode
, // used for row height or col width changes
93 MoveRTLMode
, // used for switch to RTL during import of right-to-left sheet
94 MirrorRTLMode
// used for switch between RTL and LTR by .uno:SheetRightToLeft
97 class SAL_DLLPUBLIC_RTTI ScDrawLayer final
: public FmFormModel
102 std::unique_ptr
<SdrUndoGroup
> pUndoGroup
;
108 void MoveCells( SCTAB nTab
, SCCOL nCol1
,SCROW nRow1
, SCCOL nCol2
,SCROW nRow2
,
109 SCCOL nDx
,SCROW nDy
, bool bUpdateNoteCaptionPos
);
111 void ResizeLastRectFromAnchor( const SdrObject
* pObj
, ScDrawObjData
& rData
, bool bNegativePage
, bool bCanResize
);
114 ScDrawLayer( ScDocument
* pDocument
, OUString aName
);
115 virtual ~ScDrawLayer() override
;
117 virtual rtl::Reference
<SdrPage
> AllocPage(bool bMasterPage
) override
;
118 virtual SdrModel
* AllocModel() const override
;
119 virtual void SetChanged( bool bFlg
= true ) override
;
121 void CreateDefaultStyles();
122 bool HasObjects() const;
124 bool ScAddPage( SCTAB nTab
);
125 void ScRemovePage( SCTAB nTab
);
126 void ScRenamePage( SCTAB nTab
, const OUString
& rNewName
);
127 void ScMovePage( sal_uInt16 nOldPos
, sal_uInt16 nNewPos
);
128 void ScCopyPage( sal_uInt16 nOldPos
, sal_uInt16 nNewPos
);
129 void ResetTab( SCTAB nStart
, SCTAB nEnd
);
131 ScDocument
* GetDocument() const { return pDoc
; }
133 void UseHyphenator();
135 bool GetPrintArea( ScRange
& rRange
, bool bSetHor
, bool bSetVer
) const;
137 // automatic adjustments
139 void EnableAdjust( bool bSet
) { bAdjustEnabled
= bSet
; }
141 void BeginCalcUndo(bool bDisableTextEditUsesCommonUndoManager
);
142 std::unique_ptr
<SdrUndoGroup
> GetCalcUndo();
143 bool IsRecording() const { return bRecording
; }
144 void AddCalcUndo( std::unique_ptr
<SdrUndoAction
> pUndo
);
146 void MoveArea( SCTAB nTab
, SCCOL nCol1
,SCROW nRow1
, SCCOL nCol2
,SCROW nRow2
,
147 SCCOL nDx
,SCROW nDy
, bool bInsDel
, bool bUpdateNoteCaptionPos
);
148 void InitializeCellAnchoredObj(SdrObject
* pObj
, ScDrawObjData
& rData
);
149 SC_DLLPUBLIC
void RecalcPos( SdrObject
* pObj
, ScDrawObjData
& rData
, bool bNegativePage
, bool bUpdateNoteCaptionPos
);
151 SC_DLLPUBLIC
bool HasObjectsInRows( SCTAB nTab
, SCROW nStartRow
, SCROW nEndRow
);
153 SC_DLLPUBLIC
void DeleteObjectsInArea( SCTAB nTab
, SCCOL nCol1
,SCROW nRow1
,
154 SCCOL nCol2
,SCROW nRow2
, bool bAnchored
= false );
155 void DeleteObjectsInSelection( const ScMarkData
& rMark
);
157 void CopyToClip( ScDocument
* pClipDoc
, SCTAB nTab
, const tools::Rectangle
& rRange
);
158 void CopyFromClip( ScDrawLayer
* pClipModel
,
159 SCTAB nSourceTab
, const ScRange
& rSourceRange
,
160 const ScAddress
& rDestPos
, const ScRange
& rDestRange
,
161 bool bTransposing
= false);
163 void SetPageSize(sal_uInt16 nPageNo
, const Size
& rSize
, bool bUpdateNoteCaptionPos
,
164 const ScObjectHandling eObjectHandling
= ScObjectHandling::RecalcPosMode
);
166 // mirror or move between positive and negative positions for RTL
167 void MirrorRTL( SdrObject
* pObj
);
168 void MoveRTL(SdrObject
* pObj
);
169 static void MirrorRectRTL( tools::Rectangle
& rRect
); // for bounding rectangles etc.
171 /** Returns the rectangle for the passed cell address in 1/100 mm.
172 @param bMergedCell True = regards merged cells. False = use single column/row size. */
173 static tools::Rectangle
GetCellRect( const ScDocument
& rDoc
, const ScAddress
& rPos
, bool bMergedCell
);
175 // GetVisibleName: name for navigator etc: GetPersistName or GetName
176 // (ChartListenerCollection etc. must use GetPersistName directly)
177 static OUString
GetVisibleName( const SdrObject
* pObj
);
179 SdrObject
* GetNamedObject( std::u16string_view rName
, SdrObjKind nId
, SCTAB
& rFoundTab
) const;
180 // if pnCounter != NULL, the search for a name starts with this index + 1,
181 // and the index really used is returned.
182 OUString
GetNewGraphicName( tools::Long
* pnCounter
= nullptr ) const;
183 void EnsureGraphicNames();
185 SC_DLLPUBLIC
static bool IsCellAnchored( const SdrObject
& rObj
);
186 SC_DLLPUBLIC
static bool IsResizeWithCell( const SdrObject
& rObj
);
187 SC_DLLPUBLIC
static void SetPageAnchored( SdrObject
& );
188 static void SetCellAnchored( SdrObject
&, const ScDrawObjData
&rAnchor
);
189 static void SetNonRotatedAnchor( SdrObject
&, const ScDrawObjData
&rAnchor
);
191 // Updates rAnchor based on position of rObj
192 static void GetCellAnchorFromPosition(
193 const tools::Rectangle
&rRectangle
,
194 ScDrawObjData
&rAnchor
,
195 const ScDocument
&rDoc
,
197 bool bHiddenAsZero
= true);
199 SC_DLLPUBLIC
static void SetCellAnchoredFromPosition( SdrObject
&rObj
, const ScDocument
&rDoc
, SCTAB nTab
, bool bResizeWithCell
);
200 static void UpdateCellAnchorFromPositionEnd( const SdrObject
&rObj
, ScDrawObjData
&rAnchor
, const ScDocument
&rDoc
, SCTAB nTab
, bool bUseLogicRect
= true );
201 SC_DLLPUBLIC
static ScAnchorType
GetAnchorType( const SdrObject
& );
202 std::vector
<SdrObject
*> GetObjectsAnchoredToRows(SCTAB nTab
, SCROW nStartRow
, SCROW nEndRow
);
203 SC_DLLPUBLIC
std::map
<SCROW
, std::vector
<SdrObject
*>> GetObjectsAnchoredToRange(SCTAB nTab
, SCCOL nCol
, SCROW nStartRow
, SCROW nEndRow
);
204 bool HasObjectsAnchoredInRange(const ScRange
& rRange
);
205 std::vector
<SdrObject
*> GetObjectsAnchoredToCols(SCTAB nTab
, SCCOL nStartCol
, SCCOL nEndCol
);
206 void MoveObject(SdrObject
* pObj
, const ScAddress
& rNewPosition
);
208 // positions for detective lines
209 SC_DLLPUBLIC
static ScDrawObjData
* GetObjData( SdrObject
* pObj
, bool bCreate
=false );
210 SC_DLLPUBLIC
static ScDrawObjData
* GetNonRotatedObjData( SdrObject
* pObj
, bool bCreate
=false );
212 // The sheet information in ScDrawObjData isn't updated when sheets are inserted/deleted.
213 // Use this method to get an object with positions on the specified sheet (should be the
214 // sheet on which the object is inserted).
215 static ScDrawObjData
* GetObjDataTab( SdrObject
* pObj
, SCTAB nTab
);
217 /** Returns true, if the passed object is the caption of a cell note. */
218 SC_DLLPUBLIC
static bool IsNoteCaption(const ScDrawObjData
* pData
);
219 static bool IsNoteCaption(SdrObject
* pObj
) { return IsNoteCaption(GetObjData(pObj
)); }
221 /** Returns the object data, if the passed object is a cell note caption. */
222 static ScDrawObjData
* GetNoteCaptionData( SdrObject
* pObj
, SCTAB nTab
);
224 SC_DLLPUBLIC
static ScMacroInfo
* GetMacroInfo( SdrObject
* pObj
, bool bCreate
= false );
227 static SfxObjectShell
* pGlobalDrawPersist
; // for AllocModel
229 static void SetGlobalDrawPersist(SfxObjectShell
* pPersist
);
231 virtual css::uno::Reference
< css::frame::XModel
> createUnoModel() override
;
234 extern bool bDrawIsInUndo
; // somewhere as member!
236 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */