##// END OF EJS Templates
Fix warning about uninitialized variable...
Fix warning about uninitialized variable Change-Id: Ie4bb39b548622e002258e3e82142f128224332f6 Reviewed-by: Mika Salmela <mika.salmela@digia.com>

File last commit:

r2574:599370d0561c
r2580:a20cc56483ba
Show More
main.cpp
67 lines | 1.7 KiB | text/x-c | CppLexer
Michal Klocek
Uninfy examples , updated public API changes
r747 /****************************************************************************
**
Miikka Heikkinen
More copyright year changes
r2433 ** Copyright (C) 2013 Digia Plc
Michal Klocek
Uninfy examples , updated public API changes
r747 ** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** This file is part of the Qt Enterprise Charts Add-on.
Michal Klocek
Uninfy examples , updated public API changes
r747 **
Jani Honkonen
Add/modify license headers
r830 ** $QT_BEGIN_LICENSE$
Miikka Heikkinen
Qt Commercial -> Qt Enterprise...
r2574 ** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
Jani Honkonen
Add/modify license headers
r830 ** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
Michal Klocek
Uninfy examples , updated public API changes
r747 **
Jani Honkonen
Add/modify license headers
r830 ** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
Michal Klocek
Uninfy examples , updated public API changes
r747 ** $QT_END_LICENSE$
**
****************************************************************************/
Michal Klocek
adds missing files form previous commit
r12 #include <QApplication>
#include <QMainWindow>
Michal Klocek
Change headers to qt ones in some examples
r632 #include <QChartView>
#include <QLineSeries>
Michal Klocek
adds missing files form previous commit
r12
Tero Ahola
Renamed to QtCommercialChart
r30 QTCOMMERCIALCHART_USE_NAMESPACE
Michal Klocek
adds missing files form previous commit
r12
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Refactor documentation...
r331 //![1]
Jani Honkonen
more coding style fixes for examples...
r2102 QLineSeries *series = new QLineSeries();
Michal Klocek
Refactor documentation...
r331 //![1]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Refactor documentation...
r331 //![2]
Miikka Heikkinen
Fix trivial problems with examples and docs
r2442 series->append(0, 6);
series->append(2, 4);
series->append(3, 8);
series->append(7, 4);
series->append(10, 5);
*series << QPointF(11, 1) << QPointF(13, 3) << QPointF(17, 6) << QPointF(18, 3) << QPointF(20, 2);
Michal Klocek
Refactor documentation...
r331 //![2]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Refactor documentation...
r331 //![3]
Jani Honkonen
more coding style fixes for examples...
r2102 QChart *chart = new QChart();
Jani Honkonen
Fix/hide legend in some examples and demos
r1400 chart->legend()->hide();
Michal Klocek
Creates only one line in linechart example
r873 chart->addSeries(series);
Michal Klocek
Refactor QChart API...
r1577 chart->createDefaultAxes();
Michal Klocek
Uninfy examples , updated public API changes
r747 chart->setTitle("Simple line chart example");
Michal Klocek
Refactor documentation...
r331 //![3]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Add linechart example documentation
r370 //![4]
Jani Honkonen
more coding style fixes for examples...
r2102 QChartView *chartView = new QChartView(chart);
Michal Klocek
Uninfy examples , updated public API changes
r747 chartView->setRenderHint(QPainter::Antialiasing);
//![4]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
Refactor QChart API...
r1577
Michal Klocek
Uninfy examples , updated public API changes
r747 //![5]
QMainWindow window;
Michal Klocek
Adds rubberband for zooming...
r58 window.setCentralWidget(chartView);
Michal Klocek
adds missing files form previous commit
r12 window.resize(400, 300);
window.show();
Michal Klocek
Uninfy examples , updated public API changes
r747 //![5]
Jani Honkonen
Add newlines to examples to make docs nicer
r883
Michal Klocek
adds missing files form previous commit
r12 return a.exec();
}