##// END OF EJS Templates
Fix designer plugin desc
Fix designer plugin desc

File last commit:

r1211:c8b3f0fb84c6
r1216:27179fba36bb
Show More
plugin.cpp
75 lines | 3.1 KiB | text/x-c | CppLexer
Jani Honkonen
Add/modify license headers
r830 /****************************************************************************
**
** Copyright (C) 2012 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the Qt Commercial Charts Add-on.
**
** $QT_BEGIN_LICENSE$
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/
Jani Honkonen
First draft of project structure
r1 #include <QtDeclarative/qdeclarativeextensionplugin.h>
#include <QtDeclarative/qdeclarative.h>
Tero Ahola
QML api to use chart theme enum of QChart
r836 #include "qchart.h"
Tero Ahola
Draft for QML demo that shows weather forecasts
r1139 #include "qaxiscategories.h"
Jani Honkonen
First draft of project structure
r1 #include "declarativechart.h"
Tero Ahola
d
r722 #include "declarativexypoint.h"
Tero Ahola
Dynamic data for QML pie and line series
r215 #include "declarativelineseries.h"
Tero Ahola
Spline to QML API
r732 #include "declarativesplineseries.h"
Tero Ahola
Added area series to QML api
r847 #include "declarativeareaseries.h"
Tero Ahola
Spline to QML API
r732 #include "declarativescatterseries.h"
Tero Ahola
Added QML api for bar series
r646 #include "declarativebarseries.h"
Tero Ahola
Dynamic data for QML pie and line series
r215 #include "declarativepieseries.h"
Tero Ahola
Now using only one declarative model
r1169 #include "declarativemodel.h"
#include <QPieModelMapper>
#include <QXYModelMapper>
Jani Honkonen
First draft of project structure
r1
Tero Ahola
Proof-of-concept for QML api...
r120 QTCOMMERCIALCHART_BEGIN_NAMESPACE
Jani Honkonen
First draft of project structure
r1
Tero Ahola
Proof-of-concept for QML api...
r120 class ChartQmlPlugin : public QDeclarativeExtensionPlugin
Jani Honkonen
First draft of project structure
r1 {
Q_OBJECT
public:
virtual void registerTypes(const char *uri)
{
Tero Ahola
Proof-of-concept for QML api...
r120 Q_ASSERT(QLatin1String(uri) == QLatin1String("QtCommercial.Chart"));
Tero Ahola
Dynamic data for QML pie and line series
r215
Tero Ahola
Draft version for QML PieSeries model API
r1130 qmlRegisterType<DeclarativeChart>(uri, 1, 0, "ChartView");
Tero Ahola
Draft for QML demo that shows weather forecasts
r1139 qmlRegisterUncreatableType<QAxis>(uri, 1, 0, "Axis",
Tero Ahola
Now using only one declarative model
r1169 QLatin1String("Trying to create uncreatable: Axis."));
Tero Ahola
d
r722 qmlRegisterType<DeclarativeXyPoint>(uri, 1, 0, "XyPoint");
Tero Ahola
Proposal for QML data API
r196 qmlRegisterType<DeclarativeScatterSeries>(uri, 1, 0, "ScatterSeries");
Tero Ahola
Dynamic data for QML pie and line series
r215 qmlRegisterType<DeclarativeLineSeries>(uri, 1, 0, "LineSeries");
Tero Ahola
Spline to QML API
r732 qmlRegisterType<DeclarativeSplineSeries>(uri, 1, 0, "SplineSeries");
Tero Ahola
Added area series to QML api
r847 qmlRegisterType<DeclarativeAreaSeries>(uri, 1, 0, "AreaSeries");
Tero Ahola
Added QML api for bar series
r646 qmlRegisterType<DeclarativeBarSeries>(uri, 1, 0, "BarSeries");
Tero Ahola
Cleaning up declarative implementation
r1211 qmlRegisterType<DeclarativeGroupedBarSeries>(uri, 1, 0, "GroupedBarSeries");
Tero Ahola
Dynamic data for QML pie and line series
r215 qmlRegisterType<DeclarativePieSeries>(uri, 1, 0, "PieSeries");
Tero Ahola
d
r722 qmlRegisterType<QPieSlice>(uri, 1, 0, "PieSlice");
Tero Ahola
Now using only one declarative model
r1169 qmlRegisterType<DeclarativeTableModel>(uri, 1, 0, "ChartModel");
Tero Ahola
Cleaning up ChartModel impl before moving it into a demo app
r1190 qmlRegisterType<DeclarativeTableModelElement>(uri, 1, 0, "ChartModelElement");
Tero Ahola
Now using only one declarative model
r1169 qmlRegisterUncreatableType<QPieModelMapper>(uri, 1, 0, "PieModelMapper",
QLatin1String("Trying to create uncreatable: PieModelMapper."));
qmlRegisterUncreatableType<QXYModelMapper>(uri, 1, 0, "XYModelMapper",
Tero Ahola
Cleaning up declarative implementation
r1211 QLatin1String("Trying to create uncreatable: XYModelMapper."));
Tero Ahola
Added declarative model for bar series
r1162 qmlRegisterType<DeclarativeBarSet>(uri, 1, 0, "BarSet");
Jani Honkonen
First draft of project structure
r1 }
};
#include "plugin.moc"
Tero Ahola
Proof-of-concept for QML api...
r120 QTCOMMERCIALCHART_END_NAMESPACE
QTCOMMERCIALCHART_USE_NAMESPACE
Q_EXPORT_PLUGIN2(qtcommercialchartqml, QT_PREPEND_NAMESPACE(ChartQmlPlugin))