##// END OF EJS Templates
Removes obsolete functions...
Removes obsolete functions * removes old interface from chartitem

File last commit:

r141:c4fe96eff980
r141:c4fe96eff980
Show More
qchart.h
99 lines | 2.5 KiB | text/x-c | CLexer
Michal Klocek
adds missing files form previous commit
r12 #ifndef CHART_H
#define CHART_H
Tero Ahola
Renamed to QtCommercialChart
r30 #include <qchartglobal.h>
Tero Ahola
Integrated scatter type series...
r42 #include <qchartseries.h>
Michal Klocek
Adds layout support for charts....
r115 #include <QGraphicsWidget>
Michal Klocek
Add background to chart...
r69 #include <QLinearGradient>
Michal Klocek
Adds title support
r87 #include <QFont>
Michal Klocek
adds missing files form previous commit
r12
Michal Klocek
Adds layout support for charts....
r115 class QGraphicsSceneResizeEvent;
Tero Ahola
Renamed to QtCommercialChart
r30 QTCOMMERCIALCHART_BEGIN_NAMESPACE
Michal Klocek
adds missing files form previous commit
r12
Michal Klocek
Add zoom support...
r67 class AxisItem;
Michal Klocek
Refactor current draft to fit int current design specs...
r21 class QChartSeries;
Michal Klocek
Add zoom support...
r67 class PlotDomain;
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 class BarGroup;
Michal Klocek
Adds qchartaxis stub
r72 class QChartAxis;
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 class ChartTheme;
Tero Ahola
One more alternative for changing themes
r108 class ChartItem;
Michal Klocek
Refactors qchart , adds line animation...
r131 class ChartDataSet;
class ChartPresenter;
Michal Klocek
Refactor current draft to fit int current design specs...
r21
Tero Ahola
Integrated scatter type series...
r42 // TODO: We don't need to have QChart tied to QGraphicsItem:
//class QTCOMMERCIALCHART_EXPORT QChart
//class QTCOMMERCIALCHART_EXPORT QChartGraphicsItem : public QGraphicsItem {
// public: QChartGraphicsItem(QChart &chart);
/*!
* TODO: define the responsibilities
*/
Michal Klocek
Adds layout support for charts....
r115 class QTCOMMERCIALCHART_EXPORT QChart : public QGraphicsWidget
Tero Ahola
Integrated scatter series...
r38 {
Tero Ahola
Resizing of QGraphicItems now possible by resize signal from QChart
r48 Q_OBJECT
Tero Ahola
Draft implementation for setting color themes for a chart
r64 public:
Tero Ahola
Color themes now enabled for scatter, pie and line series.
r75 enum ChartThemeId {
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 ChartThemeInvalid = -1,
Tero Ahola
Added theme named 'default'
r81 /*! The default theme follows the GUI style of the Operating System */
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 ChartThemeDefault,
Tero Ahola
Added theme named 'default'
r81 ChartThemeVanilla,
Tero Ahola
Draft implementation for setting color themes for a chart
r64 ChartThemeIcy,
Tero Ahola
Theme now affects background, enabled zoom by default in QChartWidget
r77 ChartThemeGrayscale,
Tero Ahola
tuning theme colors
r125 ChartThemeScientific,
Tero Ahola
Theme now affects background, enabled zoom by default in QChartWidget
r77 ChartThemeUnnamed1
Tero Ahola
Draft implementation for setting color themes for a chart
r64 };
Michal Klocek
adds missing files form previous commit
r12 public:
Michal Klocek
Adds layout support for charts....
r115 QChart(QGraphicsItem *parent = 0, Qt::WindowFlags wFlags = 0);
Tero Ahola
Resizing of QGraphicItems now possible by resize signal from QChart
r48 ~QChart();
Michal Klocek
adds missing files form previous commit
r12
Michal Klocek
Refactor current draft to fit int current design specs...
r21 void addSeries(QChartSeries* series);
Michal Klocek
Refactors qchart , adds line animation...
r131
Tero Ahola
Integrated scatter type series...
r42 //TODO: QChartSeries* createSeries(QSeriesData *data, QChartSeries::QChartSeriesType type);
// TODO: who owns the series now? maybe owned by chart and returned a reference instead...
Tero Ahola
Refactored series creation with QChart
r61 QChartSeries* createSeries(QChartSeries::QChartSeriesType type);
Michal Klocek
adds missing files form previous commit
r12
void setMargin(int margin);
Michal Klocek
Adds pimpl to qchart class
r28 int margin() const;
Tero Ahola
Color themes now enabled for scatter, pie and line series.
r75 void setTheme(QChart::ChartThemeId theme);
Tero Ahola
Proof-of-concept for QML api...
r120 QChart::ChartThemeId theme();
Michal Klocek
Adds pimpl to qchart class
r28
Michal Klocek
Adds title support
r87 void setTitle(const QString& title,const QFont& font = QFont());
Michal Klocek
Change background gradient to use ObjectBoundingMode...
r122 void setChartBackgroundBrush(const QBrush& brush);
void setChartBackgroundPen(const QPen& pen);
Michal Klocek
Adds layout support for charts....
r115 void zoomInToRect(const QRectF& rectangle);
Michal Klocek
Add zoom support...
r67 void zoomIn();
void zoomOut();
Tero Ahola
QChartWidget now zooms only x axis and zoom is reset with right click
r93 void zoomReset();
Michal Klocek
Add zoom support...
r67
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85 void setAxisX(const QChartAxis& axis);
void setAxisY(const QChartAxis& axis);
void setAxisY(const QList<QChartAxis>& axis);
Michal Klocek
Adds qchartaxis stub
r72
Michal Klocek
Adds layout support for charts....
r115 protected:
void resizeEvent(QGraphicsSceneResizeEvent *event);
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85 private:
void setAxis(AxisItem *item, const QChartAxis& axis);
Michal Klocek
Adds qchartaxis stub
r72
Michal Klocek
adds missing files form previous commit
r12 private:
Michal Klocek
Adds pimpl to qchart class
r28 Q_DISABLE_COPY(QChart)
Michal Klocek
Adds title support
r87 QGraphicsRectItem* m_backgroundItem;
QGraphicsTextItem* m_titleItem;
AxisItem* m_axisXItem;
QList<AxisItem*> m_axisYItem;
Michal Klocek
Adds layout support for charts....
r115 QRectF m_rect;
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 QList<QChartSeries *> m_chartSeries;
Tero Ahola
One more alternative for changing themes
r108 QList<ChartItem *> m_chartItems;
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 ChartTheme *m_chartTheme;
Michal Klocek
Refactors qchart , adds line animation...
r131
ChartDataSet *m_dataset;
ChartPresenter *m_presenter;
Michal Klocek
adds missing files form previous commit
r12 };
Tero Ahola
Renamed to QtCommercialChart
r30 QTCOMMERCIALCHART_END_NAMESPACE
Michal Klocek
adds missing files form previous commit
r12
#endif