LanguageTool: don't crash if REST protocol isn't set
[LibreOffice.git] / sc / inc / userdat.hxx
blobe61d7950750f0e988cce63d758811bb74cdab91c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 #pragma once
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
33 public:
34 enum Type { CellNote, ValidationCircle, DetectiveArrow, DrawingObject };
36 ScAddress maStart;
37 ScAddress maEnd;
38 Point maStartOffset;
39 Point maEndOffset;
40 Type meType;
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;
58 private:
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
70 public:
71 ScMacroInfo();
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; }
84 private:
85 OUString maMacro;
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */