/*
* Copyright (C) 2001-2015 Klaralvdalens Datakonsult AB. All rights reserved.
*
* This file is part of the KD Chart library.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
#include "KChartThreeDBarAttributes.h"
#include "KChartThreeDBarAttributes_p.h"
#include "KChartMath_p.h"
#include
#define d d_func()
using namespace KChart;
ThreeDBarAttributes::Private::Private()
: useShadowColors( true ),
angle( 45 )
{
}
ThreeDBarAttributes::ThreeDBarAttributes()
: AbstractThreeDAttributes( new Private() )
{
}
ThreeDBarAttributes::ThreeDBarAttributes( const ThreeDBarAttributes& r )
: AbstractThreeDAttributes( new Private( *r.d) )
{
}
ThreeDBarAttributes& ThreeDBarAttributes::operator= ( const ThreeDBarAttributes& r )
{
if ( this == &r )
return *this;
*d = *r.d;
return *this;
}
ThreeDBarAttributes::~ThreeDBarAttributes()
{
}
void ThreeDBarAttributes::init()
{
}
bool ThreeDBarAttributes::operator==( const ThreeDBarAttributes& r ) const
{
return ( useShadowColors() == r.useShadowColors() &&
angle() == r.angle() &&
AbstractThreeDAttributes::operator==(r));
}
void ThreeDBarAttributes::setUseShadowColors( bool shadowColors )
{
d->useShadowColors = shadowColors;
}
bool ThreeDBarAttributes::useShadowColors() const
{
return d->useShadowColors;
}
void ThreeDBarAttributes::setAngle( uint threeDAngle )
{
d->angle = threeDAngle;
}
uint ThreeDBarAttributes::angle() const
{
return d->angle;
}
#if !defined(QT_NO_DEBUG_STREAM)
QDebug operator<<(QDebug dbg, const KChart::ThreeDBarAttributes& a)
{
dbg << "KChart::ThreeDBarAttributes(";
dbg = operator <<( dbg, static_cast(a) );
dbg << "useShadowColors="<< a.useShadowColors()
<< "angle=" << a.angle() << ")";
return dbg;
}
#endif /* QT_NO_DEBUG_STREAM */