From 7ad0e7194aa924524a893448a337730e501ea4b9 2012-02-20 15:08:52 From: Marek Rosa Date: 2012-02-20 15:08:52 Subject: [PATCH] Merge branch 'master' of https://git.it.local/repos/QtCommercialDevel-13049/charts --- diff --git a/src/chartobjectinterface_p.h b/src/chartobjectinterface_p.h deleted file mode 100644 index 1946162..0000000 --- a/src/chartobjectinterface_p.h +++ /dev/null @@ -1,31 +0,0 @@ -#ifndef CHART_OBJECT_INTERFACE_H -#define CHART_OBJECT_INTERFACE_H - -#include "plotdomain_p.h" -#include -#include - -class QGraphicsItem; - -QTCOMMERCIALCHART_BEGIN_NAMESPACE - -class ChartTheme; -class PlotDomain; - -/*! - * Internal abstract interface for passing updates on chart related properties. - */ -class ChartObjectInterface -{ -public: -// TODO: move setSize and setPlotDomain back to ChartItem. This interface should be only about handling themes. - virtual void setSize(const QSize &size) = 0; - virtual void setTheme(ChartTheme *theme) = 0; - virtual void setPlotDomain(const PlotDomain& data) = 0; - // TODO: this is a hack; integration ongoing: - virtual QGraphicsItem *graphicsItem() { return 0; } -}; - -QTCOMMERCIALCHART_END_NAMESPACE - -#endif // CHART_OBJECT_INTERFACE_H