Line data Source code
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 :
21 : #include <sdr/attribute/sdrformtextoutlineattribute.hxx>
22 : #include <drawinglayer/attribute/lineattribute.hxx>
23 : #include <drawinglayer/attribute/strokeattribute.hxx>
24 : #include <rtl/instance.hxx>
25 :
26 :
27 : namespace drawinglayer
28 : {
29 : namespace attribute
30 : {
31 60 : class ImpSdrFormTextOutlineAttribute
32 : {
33 : public:
34 : // one set of attributes for FormText (FontWork) outline visualisation
35 : LineAttribute maLineAttribute;
36 : StrokeAttribute maStrokeAttribute;
37 : sal_uInt8 mnTransparence;
38 :
39 0 : ImpSdrFormTextOutlineAttribute(
40 : const LineAttribute& rLineAttribute,
41 : const StrokeAttribute& rStrokeAttribute,
42 : sal_uInt8 nTransparence)
43 : : maLineAttribute(rLineAttribute),
44 : maStrokeAttribute(rStrokeAttribute),
45 0 : mnTransparence(nTransparence)
46 : {
47 0 : }
48 :
49 64 : ImpSdrFormTextOutlineAttribute()
50 : : maLineAttribute(),
51 : maStrokeAttribute(),
52 64 : mnTransparence(0)
53 : {
54 64 : }
55 :
56 : // data read access
57 0 : const LineAttribute& getLineAttribute() const { return maLineAttribute; }
58 0 : const StrokeAttribute& getStrokeAttribute() const { return maStrokeAttribute; }
59 0 : sal_uInt8 getTransparence() const { return mnTransparence; }
60 :
61 : // compare operator
62 0 : bool operator==(const ImpSdrFormTextOutlineAttribute& rCandidate) const
63 : {
64 0 : return (getLineAttribute() == rCandidate.getLineAttribute()
65 0 : && getStrokeAttribute() == rCandidate.getStrokeAttribute()
66 0 : && getTransparence() == rCandidate.getTransparence());
67 : }
68 : };
69 :
70 : namespace
71 : {
72 : struct theGlobalDefault :
73 : public rtl::Static< SdrFormTextOutlineAttribute::ImplType, theGlobalDefault > {};
74 : }
75 :
76 0 : SdrFormTextOutlineAttribute::SdrFormTextOutlineAttribute(
77 : const LineAttribute& rLineAttribute,
78 : const StrokeAttribute& rStrokeAttribute,
79 : sal_uInt8 nTransparence)
80 : : mpSdrFormTextOutlineAttribute(
81 : ImpSdrFormTextOutlineAttribute(
82 0 : rLineAttribute, rStrokeAttribute, nTransparence))
83 : {
84 0 : }
85 :
86 128 : SdrFormTextOutlineAttribute::SdrFormTextOutlineAttribute()
87 128 : : mpSdrFormTextOutlineAttribute(theGlobalDefault::get())
88 : {
89 128 : }
90 :
91 0 : SdrFormTextOutlineAttribute::SdrFormTextOutlineAttribute(const SdrFormTextOutlineAttribute& rCandidate)
92 0 : : mpSdrFormTextOutlineAttribute(rCandidate.mpSdrFormTextOutlineAttribute)
93 : {
94 0 : }
95 :
96 120 : SdrFormTextOutlineAttribute::~SdrFormTextOutlineAttribute()
97 : {
98 120 : }
99 :
100 0 : bool SdrFormTextOutlineAttribute::isDefault() const
101 : {
102 0 : return mpSdrFormTextOutlineAttribute.same_object(theGlobalDefault::get());
103 : }
104 :
105 0 : SdrFormTextOutlineAttribute& SdrFormTextOutlineAttribute::operator=(const SdrFormTextOutlineAttribute& rCandidate)
106 : {
107 0 : mpSdrFormTextOutlineAttribute = rCandidate.mpSdrFormTextOutlineAttribute;
108 0 : return *this;
109 : }
110 :
111 0 : bool SdrFormTextOutlineAttribute::operator==(const SdrFormTextOutlineAttribute& rCandidate) const
112 : {
113 : // tdf#87509 default attr is always != non-default attr, even with same values
114 0 : if(rCandidate.isDefault() != isDefault())
115 0 : return false;
116 :
117 0 : return rCandidate.mpSdrFormTextOutlineAttribute == mpSdrFormTextOutlineAttribute;
118 : }
119 :
120 0 : const LineAttribute& SdrFormTextOutlineAttribute::getLineAttribute() const
121 : {
122 0 : return mpSdrFormTextOutlineAttribute->getLineAttribute();
123 : }
124 :
125 0 : const StrokeAttribute& SdrFormTextOutlineAttribute::getStrokeAttribute() const
126 : {
127 0 : return mpSdrFormTextOutlineAttribute->getStrokeAttribute();
128 : }
129 :
130 0 : sal_uInt8 SdrFormTextOutlineAttribute::getTransparence() const
131 : {
132 0 : return mpSdrFormTextOutlineAttribute->getTransparence();
133 : }
134 : } // end of namespace attribute
135 : } // end of namespace drawinglayer
136 :
137 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|