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 <editeng/outlobj.hxx>
23 #include <svx/sdr/properties/defaultproperties.hxx>
24 #include <svx/svxdllapi.h>
25 #include <tools/weakbase.hxx>
29 class OutlinerParaObject
;
34 enum class OutlinerMode
;
36 namespace sdr::properties
41 /** This class stores information about one text inside a shape.
45 class SVXCORE_DLLPUBLIC SdrText
: public tools::WeakBase
48 explicit SdrText(SdrTextObj
& rObject
);
49 virtual ~SdrText() override
;
51 void ForceOutlinerParaObject(OutlinerMode nOutlMode
);
53 virtual void SetOutlinerParaObject(std::optional
<OutlinerParaObject
> pTextObject
);
54 OutlinerParaObject
* GetOutlinerParaObject();
55 const OutlinerParaObject
* GetOutlinerParaObject() const;
57 void CheckPortionInfo(const SdrOutliner
& rOutliner
);
60 // default uses GetObjectItemSet, but may be overridden to
61 // return a text-specific ItemSet
62 const SfxItemSet
& GetItemSet() const;
64 // This class does not need an own SdrModel reference - always
65 // has the SdrTextObj working with so can use SdrModel::getSdrModelFromSdrObject()
66 SdrTextObj
& GetObject() const { return mrObject
; }
68 /** returns the current OutlinerParaObject and removes it from this instance */
69 std::optional
<OutlinerParaObject
> RemoveOutlinerParaObject();
71 void dumpAsXml(xmlTextWriterPtr pWriter
) const;
74 virtual const SfxItemSet
& GetObjectItemSet();
75 virtual SfxStyleSheet
* GetStyleSheet() const;
78 std::optional
<OutlinerParaObject
> mpOutlinerParaObject
;
80 bool mbPortionInfoChecked
;
83 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */