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 <svx/sdr/attribute/sdrlinefillshadowtextattribute.hxx>
22 :
23 :
24 :
25 : namespace drawinglayer
26 : {
27 : namespace attribute
28 : {
29 77748 : SdrLineFillShadowTextAttribute::SdrLineFillShadowTextAttribute(
30 : const SdrLineAttribute& rLine,
31 : const SdrFillAttribute& rFill,
32 : const SdrLineStartEndAttribute& rLineStartEnd,
33 : const SdrShadowAttribute& rShadow,
34 : const FillGradientAttribute& rFillFloatTransGradient,
35 : const SdrTextAttribute& rTextAttribute)
36 : : SdrLineShadowTextAttribute(rLine, rLineStartEnd, rShadow, rTextAttribute),
37 : maFill(rFill),
38 77748 : maFillFloatTransGradient(rFillFloatTransGradient)
39 : {
40 77748 : }
41 :
42 10650 : SdrLineFillShadowTextAttribute::SdrLineFillShadowTextAttribute()
43 : : SdrLineShadowTextAttribute(),
44 : maFill(),
45 10650 : maFillFloatTransGradient()
46 : {
47 10650 : }
48 :
49 88398 : SdrLineFillShadowTextAttribute::SdrLineFillShadowTextAttribute(const SdrLineFillShadowTextAttribute& rCandidate)
50 : : SdrLineShadowTextAttribute(rCandidate),
51 88398 : maFill(rCandidate.getFill()),
52 176796 : maFillFloatTransGradient(rCandidate.getFillFloatTransGradient())
53 : {
54 88398 : }
55 :
56 0 : SdrLineFillShadowTextAttribute& SdrLineFillShadowTextAttribute::operator=(const SdrLineFillShadowTextAttribute& rCandidate)
57 : {
58 0 : SdrLineShadowTextAttribute::operator=(rCandidate);
59 0 : maFill = rCandidate.getFill();
60 0 : maFillFloatTransGradient = rCandidate.getFillFloatTransGradient();
61 :
62 0 : return *this;
63 : }
64 :
65 28 : bool SdrLineFillShadowTextAttribute::isDefault() const
66 : {
67 28 : return (SdrLineShadowTextAttribute::isDefault()
68 0 : && getFill().isDefault()
69 28 : && getFillFloatTransGradient().isDefault());
70 : }
71 :
72 50510 : bool SdrLineFillShadowTextAttribute::operator==(const SdrLineFillShadowTextAttribute& rCandidate) const
73 : {
74 50510 : return(SdrLineShadowTextAttribute::operator==(rCandidate)
75 48690 : && getFill() == rCandidate.getFill()
76 99167 : && getFillFloatTransGradient() == rCandidate.getFillFloatTransGradient());
77 : }
78 : } // end of namespace attribute
79 : } // end of namespace drawinglayer
80 :
81 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|