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/sdrlineshadowtextattribute.hxx>
22 :
23 :
24 :
25 : namespace drawinglayer
26 : {
27 : namespace attribute
28 : {
29 0 : SdrLineShadowTextAttribute::SdrLineShadowTextAttribute(
30 : const SdrLineAttribute& rLine,
31 : const SdrLineStartEndAttribute& rLineStartEnd,
32 : const SdrShadowAttribute& rShadow,
33 : const SdrTextAttribute& rTextAttribute)
34 : : SdrShadowTextAttribute(rShadow, rTextAttribute),
35 : maLine(rLine),
36 0 : maLineStartEnd(rLineStartEnd)
37 : {
38 0 : }
39 :
40 0 : SdrLineShadowTextAttribute::SdrLineShadowTextAttribute()
41 : : SdrShadowTextAttribute(),
42 : maLine(),
43 0 : maLineStartEnd()
44 : {
45 0 : }
46 :
47 0 : SdrLineShadowTextAttribute::SdrLineShadowTextAttribute(const SdrLineShadowTextAttribute& rCandidate)
48 : : SdrShadowTextAttribute(rCandidate),
49 0 : maLine(rCandidate.getLine()),
50 0 : maLineStartEnd(rCandidate.getLineStartEnd())
51 : {
52 0 : }
53 :
54 0 : SdrLineShadowTextAttribute& SdrLineShadowTextAttribute::operator=(const SdrLineShadowTextAttribute& rCandidate)
55 : {
56 0 : SdrShadowTextAttribute::operator=(rCandidate);
57 0 : maLine = rCandidate.getLine();
58 0 : maLineStartEnd = rCandidate.getLineStartEnd();
59 :
60 0 : return *this;
61 : }
62 :
63 0 : bool SdrLineShadowTextAttribute::isDefault() const
64 : {
65 0 : return(SdrShadowTextAttribute::isDefault()
66 0 : && getLine().isDefault()
67 0 : && getLineStartEnd().isDefault());
68 : }
69 :
70 0 : bool SdrLineShadowTextAttribute::operator==(const SdrLineShadowTextAttribute& rCandidate) const
71 : {
72 0 : return(SdrShadowTextAttribute::operator==(rCandidate)
73 0 : && getLine() == rCandidate.getLine()
74 0 : && getLineStartEnd() == rCandidate.getLineStartEnd());
75 : }
76 : } // end of namespace attribute
77 : } // end of namespace drawinglayer
78 :
79 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|