##// END OF EJS Templates
Integrated scatter again. Missing functionality....
Integrated scatter again. Missing functionality. Fixed compilation issue in declarative part.

File last commit:

r155:c19659d852a4
r158:dd283485728c
Show More
qchart.h
90 lines | 2.2 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:
Michal Klocek
Adds missing ids to theme classes
r153 enum ChartTheme {
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,
Michal Klocek
Refactor themes...
r143 //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;
Michal Klocek
Adds missing ids to theme classes
r153 void setChartTheme(QChart::ChartTheme theme);
QChart::ChartTheme chartTheme() const;
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
Add public function for axis hadnling to qchart
r155 QChartAxis* axisX();
QChartAxis* axisY();
QChartAxis* addAxisX();
QChartAxis* addAxisY();
void removeAxis(QChartAxis* axis);
Michal Klocek
Adds qchartaxis stub
r72
Michal Klocek
Adds layout support for charts....
r115 protected:
void resizeEvent(QGraphicsSceneResizeEvent *event);
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;
Michal Klocek
Adds layout support for charts....
r115 QRectF m_rect;
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