1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/**
* SPDX-FileCopyrightText: 2001-2015 Klaralvdalens Datakonsult AB. All rights reserved.
*
* This file is part of the KD Chart library.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "mainwindow.h"
#include <KChartChart>
#include <KChartPieDiagram>
#include <KChartPieAttributes>
#include <KChartThreeDPieAttributes>
#include <QDebug>
#include <QTimer>
using namespace KChart;
MainWindow::MainWindow( QWidget* parent ) :
QWidget( parent ),
m_currentFactor( 0 ),
m_currentDirection( 1 ),
m_currentSlice( 0 )
{
setupUi( this );
QHBoxLayout* chartLayout = new QHBoxLayout( chartFrame );
m_chart = new Chart();
m_chart->setGlobalLeadingLeft( 5 );
m_chart->setGlobalLeadingRight( 5 );
chartLayout->addWidget( m_chart );
m_model.loadFromCSV( ":/data" );
explodeDatasetSB->setMaximum( m_model.columnCount() - 1 );
// Set up the diagram
PolarCoordinatePlane* polarPlane = new PolarCoordinatePlane( m_chart );
m_chart->replaceCoordinatePlane( polarPlane );
m_pie = new PieDiagram();
m_pie->setModel( &m_model );
m_chart->coordinatePlane()->replaceDiagram( m_pie );
m_timer = new QTimer( this );
connect( m_timer, SIGNAL(timeout()), this, SLOT(slotNextFrame()) );
}
void MainWindow::on_startPositionSB_valueChanged( double pos )
{
const int intValue = static_cast<int>( pos );
startPositionSL->blockSignals( true );
startPositionSL->setValue( intValue );
startPositionSL->blockSignals( false );
static_cast<PolarCoordinatePlane*>( m_chart->coordinatePlane()
)->setStartPosition( pos );
m_chart->update();
}
void MainWindow::on_startPositionSL_valueChanged( int pos )
{
qreal qrealValue = static_cast<qreal>( pos );
startPositionSB->blockSignals( true );
startPositionSB->setValue( qrealValue );
startPositionSB->blockSignals( false );
static_cast<PolarCoordinatePlane*>( m_chart->coordinatePlane()
)->setStartPosition( pos );
m_chart->update();
}
void MainWindow::on_explodeSubmitPB_clicked()
{
setExplodeFactor( explodeDatasetSB->value(), explodeFactorSB->value() );
m_chart->update();
}
void MainWindow::setExplodeFactor( int column, qreal value )
{
// Note:
// We use the per-column getter method here, it will fall back
// automatically to return the global (or even the default) settings.
PieAttributes attrs( m_pie->pieAttributes( column ) );
attrs.setExplodeFactor( value );
m_pie->setPieAttributes( column, attrs );
m_chart->update();
}
void MainWindow::on_animateExplosionCB_toggled( bool toggle )
{
if ( toggle )
m_timer->start( 100 );
else
m_timer->stop();
}
void MainWindow::slotNextFrame()
{
m_currentFactor += ( 1 * m_currentDirection );
if ( m_currentFactor == 0 || m_currentFactor == 5 )
m_currentDirection = -m_currentDirection;
if ( m_currentFactor == 0 ) {
setExplodeFactor( m_currentSlice, 0.0 );
m_currentSlice++;
if ( m_currentSlice >= m_model.columnCount() )
m_currentSlice = 0;
}
setExplodeFactor(
m_currentSlice,
static_cast<qreal>( m_currentFactor ) / 10.0 );
m_chart->update();
}
void MainWindow::on_threeDGB_toggled( bool toggle )
{
// note: We use the global getter method here, it will fall back
// automatically to return the default settings.
ThreeDPieAttributes attrs( m_pie->threeDPieAttributes() );
attrs.setEnabled( toggle );
attrs.setDepth( threeDFactorSB->value() );
m_pie->setThreeDPieAttributes( attrs );
m_chart->update();
}
void MainWindow::on_threeDFactorSB_valueChanged( int factor )
{
// note: We use the global getter method here, it will fall back
// automatically to return the default settings.
ThreeDPieAttributes attrs( m_pie->threeDPieAttributes() );
attrs.setEnabled( threeDGB->isChecked() );
attrs.setDepth( factor );
m_pie->setThreeDPieAttributes( attrs );
m_chart->update();
}
|