~ubuntu-branches/ubuntu/oneiric/koffice/oneiric-updates

« back to all changes in this revision

Viewing changes to plugins/chartshape/kdchart/src/KDChartThreeDPieAttributes.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-10-27 17:52:57 UTC
  • mfrom: (0.12.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101027175257-s04zqqk5bs8ckm9o
Tags: 1:2.2.83-0ubuntu1
* Merge with Debian git remaining changes:
 - Add build-deps on librcps-dev, opengtl-dev, libqtgtl-dev, freetds-dev,
   create-resources, libspnav-dev
 - Remove needless build-dep on libwv2-dev
 - koffice-libs recommends create-resources
 - krita recommends pstoedit
 - Keep our patches
* New upstream release 2.3 beta 3
  - Remove debian/patches fixed by upstream
  - Update install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
** Copyright (C) 2001-2010 Klaralvdalens Datakonsult AB.  All rights reserved.
 
3
**
 
4
** This file is part of the KD Chart library.
 
5
**
 
6
** Licensees holding valid commercial KD Chart licenses may use this file in
 
7
** accordance with the KD Chart Commercial License Agreement provided with
 
8
** the Software.
 
9
**
 
10
**
 
11
** This file may be distributed and/or modified under the terms of the
 
12
** GNU General Public License version 2 and version 3 as published by the
 
13
** Free Software Foundation and appearing in the file LICENSE.GPL included.
 
14
**
 
15
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 
16
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 
17
**
 
18
** Contact info@kdab.com if any conditions of this licensing are not
 
19
** clear to you.
 
20
**
 
21
**********************************************************************/
 
22
 
 
23
#include "KDChartThreeDPieAttributes.h"
 
24
#include "KDChartThreeDPieAttributes_p.h"
 
25
 
 
26
#include <QDebug>
 
27
 
 
28
#include <KDABLibFakes>
 
29
 
 
30
#define d d_func()
 
31
 
 
32
using namespace KDChart;
 
33
 
 
34
ThreeDPieAttributes::Private::Private()
 
35
    : useShadowColors( true )
 
36
{
 
37
}
 
38
 
 
39
 
 
40
ThreeDPieAttributes::ThreeDPieAttributes()
 
41
    : AbstractThreeDAttributes( new Private() )
 
42
{
 
43
 
 
44
}
 
45
 
 
46
ThreeDPieAttributes::ThreeDPieAttributes( const ThreeDPieAttributes& r )
 
47
    : AbstractThreeDAttributes( new Private( *r.d) )
 
48
{
 
49
}
 
50
 
 
51
ThreeDPieAttributes& ThreeDPieAttributes::operator= ( const ThreeDPieAttributes& r )
 
52
{
 
53
    if( this == &r )
 
54
        return *this;
 
55
 
 
56
    *d = *r.d;
 
57
 
 
58
    return *this;
 
59
}
 
60
 
 
61
ThreeDPieAttributes::~ThreeDPieAttributes()
 
62
{
 
63
}
 
64
 
 
65
void ThreeDPieAttributes::init()
 
66
{
 
67
}
 
68
 
 
69
 
 
70
bool ThreeDPieAttributes::operator==( const ThreeDPieAttributes& r ) const
 
71
{
 
72
    return ( useShadowColors() == r.useShadowColors() &&
 
73
             AbstractThreeDAttributes::operator==(r));
 
74
}
 
75
 
 
76
 
 
77
 
 
78
void ThreeDPieAttributes::setUseShadowColors( bool shadowColors )
 
79
{
 
80
    d->useShadowColors = shadowColors;
 
81
}
 
82
 
 
83
bool ThreeDPieAttributes::useShadowColors() const
 
84
{
 
85
    return d->useShadowColors;
 
86
}
 
87
 
 
88
#if !defined(QT_NO_DEBUG_STREAM)
 
89
QDebug operator<<(QDebug dbg, const KDChart::ThreeDPieAttributes& a)
 
90
{
 
91
    dbg << "KDChart::ThreeDPieAttributes(";
 
92
    dbg = operator <<( dbg, static_cast<const AbstractThreeDAttributes&>(a) );
 
93
    dbg << "useShadowColors="<< a.useShadowColors() << ")";
 
94
    return dbg;
 
95
}
 
96
#endif /* QT_NO_DEBUG_STREAM */
 
97