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
|
/**
* 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 <https://www.gnu.org/licenses/>.
*/
#include "mainwindow.h"
#include <KChartWidget>
#include <KChartAbstractDiagram>
#include <QDebug>
#include <QMessageBox>
using namespace KChart;
MainWindow::MainWindow( QWidget* parent )
: QWidget( parent ), datasetCount( 3 )
{
setupUi( this );
QHBoxLayout* chartLayout = new QHBoxLayout( chartFrame );
widget = new Widget( chartFrame );
chartLayout->addWidget( widget );
typeSelector->setCurrentIndex(1); // we start by LineDiagram
connect( typeSelector, SIGNAL(activated(int)), SLOT(changeType()) );
connect( btnAddDataset, SIGNAL(clicked()), SLOT(addDataset()) );
connect( leadingSelector, SIGNAL(valueChanged(int)),
this, SLOT(changeLeading(int)) );
}
void MainWindow::changeType()
{
QString text = typeSelector->currentText();
if ( text == "Widget::Bar" )
widget->setType( Widget::Bar );
else if ( text == "Widget::Line" )
widget->setType( Widget::Line );
else if ( text == "Widget::Pie" )
widget->setType( Widget::Pie );
else if ( text == "Widget::Polar" )
widget->setType( Widget::Polar );
else
widget->setType( Widget::NoType );
}
void MainWindow::changeLeading( int leading )
{
widget->setGlobalLeading( leading, leading, leading, leading );
}
void MainWindow::addDataset()
{
const QStringList parts = lineAddDataset->text().split( ';' );
bool ok;
QVector< qreal > vec;
for ( const QString &str : parts ) {
const qreal val = str.toDouble( &ok );
if ( ok )
vec.append( val );
}
const int rows = widget->diagram()->model()->rowCount();
if ( vec.count() != rows ) {
QMessageBox::warning( this, "Wrong number of values entered!",
QString( "You have entered %1 values,<br>but the data model needs %2 ones."
"<br><br>Note: Use <b>;</b> to separate the values!" )
.arg(vec.count()).arg(rows));
} else {
widget->setDataset( datasetCount++, vec, "user data" );
}
}
|