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/svdobj.hxx>
23 #include "address.hxx"
24 #include "drwlayer.hxx"
26 // Object IDs for UserData
27 #define SC_UD_OBJDATA 1
28 // SVX_IMAPINFO_ID = 2
29 #define SC_UD_MACRODATA 3
31 class SC_DLLPUBLIC ScDrawObjData final
: public SdrObjUserData
34 enum Type
{ CellNote
, ValidationCircle
, DetectiveArrow
, DrawingObject
};
41 bool mbResizeWithCell
= false;
42 bool mbWasInHiddenRow
= false;
44 explicit ScDrawObjData();
46 const tools::Rectangle
& getShapeRect() const { return maShapeRect
; };
47 const tools::Rectangle
& getLastCellRect() const { return maLastCellRect
; };
48 void setShapeRect(const ScDocument
* rDoc
, tools::Rectangle rNewRect
, bool bIsVisible
=true)
50 // bIsVisible should be false when the object is hidden obviously. we dont want to store the old cell rect in that
51 // case because it will have height=0
52 if (maStart
.IsValid() && mbResizeWithCell
&& bIsVisible
)
53 maLastCellRect
= ScDrawLayer::GetCellRect(*rDoc
, maStart
, true);
54 maShapeRect
= rNewRect
;
55 mbWasInHiddenRow
= !bIsVisible
;
59 virtual std::unique_ptr
<SdrObjUserData
> Clone( SdrObject
* pObj
) const override
;
61 // Stores the last cell rect this shape was anchored to.
62 // Needed when the cell is resized to resize the image accordingly.
63 tools::Rectangle maLastCellRect
;
64 // Stores the rect of the shape to which this ScDrawObjData belongs.
65 tools::Rectangle maShapeRect
;
68 class SAL_DLLPUBLIC_RTTI ScMacroInfo final
: public SdrObjUserData
72 virtual ~ScMacroInfo() override
;
74 ScMacroInfo(ScMacroInfo
const &) = default;
75 ScMacroInfo(ScMacroInfo
&&) = default;
76 ScMacroInfo
& operator =(ScMacroInfo
const &) = delete; // due to SdrObjUserData
77 ScMacroInfo
& operator =(ScMacroInfo
&&) = delete; // due to SdrObjUserData
79 virtual std::unique_ptr
<SdrObjUserData
> Clone( SdrObject
* pObj
) const override
;
81 void SetMacro( const OUString
& rMacro
) { maMacro
= rMacro
; }
82 const OUString
& GetMacro() const { return maMacro
; }
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */