Bump version to 6.4-15
[LibreOffice.git] / include / svx / sdr / attribute / sdrformtextattribute.hxx
blob1260509b4234fc66a40aea2ca2243519850c5137
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 #ifndef INCLUDED_SVX_SDR_ATTRIBUTE_SDRFORMTEXTATTRIBUTE_HXX
21 #define INCLUDED_SVX_SDR_ATTRIBUTE_SDRFORMTEXTATTRIBUTE_HXX
23 #include <sal/types.h>
24 #include <svx/xenum.hxx>
25 #include <tools/color.hxx>
26 #include <o3tl/cow_wrapper.hxx>
28 // predefines
30 class SfxItemSet;
32 namespace drawinglayer { namespace attribute {
33 class ImpSdrFormTextAttribute;
34 class SdrFormTextOutlineAttribute;
38 namespace drawinglayer
40 namespace attribute
42 class SdrFormTextAttribute
44 public:
45 typedef o3tl::cow_wrapper< ImpSdrFormTextAttribute > ImplType;
47 private:
48 ImplType mpSdrFormTextAttribute;
50 public:
51 /// constructors/assignmentoperator/destructor
52 SdrFormTextAttribute(const SfxItemSet& rSet);
53 SdrFormTextAttribute();
54 SdrFormTextAttribute(const SdrFormTextAttribute& rCandidate);
55 SdrFormTextAttribute(SdrFormTextAttribute&& rCandidate) noexcept;
56 SdrFormTextAttribute& operator=(const SdrFormTextAttribute& rCandidate);
57 SdrFormTextAttribute& operator=(SdrFormTextAttribute&& rCandidate) noexcept;
58 ~SdrFormTextAttribute();
60 // checks if the incarnation is default constructed
61 bool isDefault() const;
63 // compare operator
64 bool operator==(const SdrFormTextAttribute& rCandidate) const;
66 // data read access
67 sal_Int32 getFormTextDistance() const;
68 sal_Int32 getFormTextStart() const;
69 sal_Int32 getFormTextShdwXVal() const;
70 sal_Int32 getFormTextShdwYVal() const;
71 XFormTextStyle getFormTextStyle() const;
72 XFormTextAdjust getFormTextAdjust() const;
73 XFormTextShadow getFormTextShadow() const;
74 Color const & getFormTextShdwColor() const;
75 const SdrFormTextOutlineAttribute& getOutline() const;
76 const SdrFormTextOutlineAttribute& getShadowOutline() const;
77 bool getFormTextMirror() const;
78 bool getFormTextOutline() const;
80 } // end of namespace attribute
81 } // end of namespace drawinglayer
84 #endif // INCLUDED_SVX_SDR_ATTRIBUTE_SDRFORMTEXTATTRIBUTE_HXX
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */