KDChartAbstractTernaryDiagram.cpp

Go to the documentation of this file.
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 #include "KDChartAbstractTernaryDiagram.h"
00024 #include "KDChartAbstractTernaryDiagram_p.h"
00025 
00026 #include "KDChartTernaryCoordinatePlane.h"
00027 
00028 using namespace KDChart;
00029 
00030 AbstractTernaryDiagram::Private::Private()
00031     : AbstractDiagram::Private()
00032 {
00033 }
00034 
00035 void AbstractTernaryDiagram::init()
00036 {
00037 }
00038 
00039 #define d d_func()
00040 
00041 AbstractTernaryDiagram::AbstractTernaryDiagram( QWidget* parent,
00042                                                 TernaryCoordinatePlane* plane )
00043     : AbstractDiagram( parent, plane )
00044 {
00045 }
00046 
00047 AbstractTernaryDiagram::~AbstractTernaryDiagram()
00048 {
00049     while ( ! d->axesList.isEmpty() ) {
00050         TernaryAxis* axis = d->axesList.takeFirst();
00051         delete axis;
00052     }
00053 }
00054 
00055 void AbstractTernaryDiagram::addAxis( TernaryAxis* axis )
00056 {
00057     d->axesList.append( axis );
00058     // FIXME update
00059 }
00060 
00061 void AbstractTernaryDiagram::takeAxis( TernaryAxis* axis )
00062 {
00063 
00064     int index = d->axesList.indexOf( axis );
00065     if ( index != -1 )
00066         d->axesList.removeAt( index );
00067     // FIXME update
00068 }
00069 
00070 TernaryAxisList AbstractTernaryDiagram::axes() const
00071 {
00072     return d->axesList;
00073 }
00074 
00075 void AbstractTernaryDiagram::paint (PaintContext *paintContext)
00076 {
00077     d->paint( paintContext );
00078 }
00079 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Defines

Klarälvdalens Datakonsult AB (KDAB)
Qt-related services and products
http://www.kdab.com/
http://www.kdab.com/products/kd-chart/