LibreOffice Module sc (master) 1
userdat.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#include <svx/svdobj.hxx>
23#include "address.hxx"
24#include "drwlayer.hxx"
25
26// Object IDs for UserData
27#define SC_UD_OBJDATA 1
28// SVX_IMAPINFO_ID = 2
29#define SC_UD_MACRODATA 3
30
32{
33public:
34 enum Type { CellNote, ValidationCircle, DetectiveArrow, DrawingObject };
35
41 bool mbResizeWithCell = false;
42 bool mbWasInHiddenRow = false;
43
44 explicit ScDrawObjData();
45
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)
49 {
50 // bIsVisible should be false when the object is hidden obviously. We don't 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;
56 };
57
58private:
59 virtual std::unique_ptr<SdrObjUserData> Clone( SdrObject* pObj ) const override;
60
61 // Stores the last cell rect this shape was anchored to.
62 // Needed when the cell is resized to resize the image accordingly.
64 // Stores the rect of the shape to which this ScDrawObjData belongs.
66};
67
68class SAL_DLLPUBLIC_RTTI ScMacroInfo final : public SdrObjUserData
69{
70public:
72 virtual ~ScMacroInfo() override;
73
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
78
79 virtual std::unique_ptr<SdrObjUserData> Clone( SdrObject* pObj ) const override;
80
81 void SetMacro( const OUString& rMacro ) { maMacro = rMacro; }
82 const OUString& GetMacro() const { return maMacro; }
83
84private:
85 OUString maMacro;
86};
87
88/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Point maStart
static tools::Rectangle GetCellRect(const ScDocument &rDoc, const ScAddress &rPos, bool bMergedCell)
Returns the rectangle for the passed cell address in 1/100 mm.
Definition: drwlayer.cxx:2385
ScAddress maStart
Definition: userdat.hxx:36
const tools::Rectangle & getShapeRect() const
Definition: userdat.hxx:46
Point maStartOffset
Definition: userdat.hxx:38
tools::Rectangle maLastCellRect
Definition: userdat.hxx:63
const tools::Rectangle & getLastCellRect() const
Definition: userdat.hxx:47
Point maEndOffset
Definition: userdat.hxx:39
void setShapeRect(const ScDocument *rDoc, tools::Rectangle rNewRect, bool bIsVisible=true)
Definition: userdat.hxx:48
tools::Rectangle maShapeRect
Definition: userdat.hxx:65
ScAddress maEnd
Definition: userdat.hxx:37
const OUString & GetMacro() const
Definition: userdat.hxx:82
ScMacroInfo(ScMacroInfo &&)=default
OUString maMacro
Definition: userdat.hxx:85
void SetMacro(const OUString &rMacro)
Definition: userdat.hxx:81
ScMacroInfo(ScMacroInfo const &)=default
void operator=(const SdrObjUserData &rData)=delete
virtual std::unique_ptr< SdrObjUserData > Clone(SdrObject *pObj1) const=0
#define SC_DLLPUBLIC
Definition: scdllapi.h:27