00001 /**************************************************************************** 00002 ** Copyright (C) 2001-2011 Klaralvdalens Datakonsult AB. All rights reserved. 00003 ** 00004 ** This file is part of the KD Chart library. 00005 ** 00006 ** Licensees holding valid commercial KD Chart licenses may use this file in 00007 ** accordance with the KD Chart Commercial License Agreement provided with 00008 ** the Software. 00009 ** 00010 ** 00011 ** This file may be distributed and/or modified under the terms of the 00012 ** GNU General Public License version 2 and version 3 as published by the 00013 ** Free Software Foundation and appearing in the file LICENSE.GPL.txt included. 00014 ** 00015 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00016 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00017 ** 00018 ** Contact info@kdab.com if any conditions of this licensing are not 00019 ** clear to you. 00020 ** 00021 **********************************************************************/ 00022 00023 #ifndef KDCHARTABSTRACTTHREEDATTRIBUTES_H 00024 #define KDCHARTABSTRACTTHREEDATTRIBUTES_H 00025 00026 #include <QMetaType> 00027 #include "KDChartGlobal.h" 00028 00029 namespace KDChart { 00030 00034 class KDCHART_EXPORT AbstractThreeDAttributes 00035 { 00036 public: 00037 AbstractThreeDAttributes(); 00038 AbstractThreeDAttributes( const AbstractThreeDAttributes& ); 00039 AbstractThreeDAttributes &operator= ( const AbstractThreeDAttributes& ); 00040 00041 virtual ~AbstractThreeDAttributes() = 0; 00042 00043 void setEnabled( bool enabled ); 00044 bool isEnabled() const; 00045 00046 void setDepth( double depth ); 00047 double depth() const; 00048 00049 // returns the depth(), if is isEnabled() is true, otherwise returns 0.0 00050 double validDepth() const; 00051 00052 bool operator==( const AbstractThreeDAttributes& ) const; 00053 inline bool operator!=( const AbstractThreeDAttributes& other ) const { return !operator==(other); } 00054 00055 KDCHART_DECLARE_PRIVATE_BASE_POLYMORPHIC(AbstractThreeDAttributes) 00056 00057 KDCHART_DECLARE_SWAP_BASE(AbstractThreeDAttributes) 00058 00059 }; // End of class AbstractThreeDAttributes 00060 00061 } 00062 00063 #if !defined(QT_NO_DEBUG_STREAM) 00064 KDCHART_EXPORT QDebug operator<<(QDebug, const KDChart::AbstractThreeDAttributes& ); 00065 #endif /* QT_NO_DEBUG_STREAM */ 00066 00067 00068 00069 #endif // KDCHARTABSTRACTTHREEDATTRIBUTES_H