##// END OF EJS Templates
review fix: Removed iterator from barseries. Remove const from brush and pen. Renamed setters for tooltip, floating values and separators
review fix: Removed iterator from barseries. Remove const from brush and pen. Renamed setters for tooltip, floating values and separators

File last commit:

r311:e1f0c8c24a70
r357:82b904eaae07
Show More
declarativechart.cpp
38 lines | 1.2 KiB | text/x-c | CppLexer
/ qmlplugin / declarativechart.cpp
Jani Honkonen
First draft of project structure
r1 #include "declarativechart.h"
Tero Ahola
Proof-of-concept for QML api...
r120 QTCOMMERCIALCHART_BEGIN_NAMESPACE
Jani Honkonen
First draft of project structure
r1 DeclarativeChart::DeclarativeChart(QDeclarativeItem *parent)
Tero Ahola
Proof-of-concept for QML api...
r120 : QDeclarativeItem(parent),
m_chart(new QChart(this))
Jani Honkonen
First draft of project structure
r1 {
setFlag(QGraphicsItem::ItemHasNoContents, false);
}
Tero Ahola
Proof-of-concept for QML api...
r120 DeclarativeChart::ChartTheme DeclarativeChart::theme()
{
Tero Ahola
Removed unused DeclarativeSeries class
r311 return (ChartTheme) m_chart->chartTheme();
Jani Honkonen
First draft of project structure
r1 }
Tero Ahola
Proof-of-concept for QML api...
r120 void DeclarativeChart::geometryChanged(const QRectF &newGeometry, const QRectF &oldGeometry)
Jani Honkonen
First draft of project structure
r1 {
Tero Ahola
Set margins to 30 on QML impl
r200 qDebug() << "geometryChanged " << this << " old geometry: " << oldGeometry;
if (newGeometry.isValid()) {
if (newGeometry.width() > 0 && newGeometry.height() > 0) {
// TODO: setting margin should not be needed to make axis visible?
const int margin = 30;
if (m_chart->margin() == 0
&& newGeometry.width() > (margin * 2)
&& newGeometry.height() > (margin * 2)) {
m_chart->setMargin(margin);
m_chart->resize(newGeometry.width(), newGeometry.height());
} else {
m_chart->resize(newGeometry.width(), newGeometry.height());
}
}
}
Jani Honkonen
First draft of project structure
r1 }
Tero Ahola
Proof-of-concept for QML api...
r120 #include "moc_declarativechart.cpp"
QTCOMMERCIALCHART_END_NAMESPACE