##// END OF EJS Templates
Update class diagram
Update class diagram

File last commit:

r452:47a9fc437f2c
r475:f734035238d4
Show More
axisitem_p.h
88 lines | 2.2 KiB | text/x-c | CLexer
Michal Klocek
Add zoom support...
r67 #ifndef AXISITEM_H_
#define AXISITEM_H_
Michal Klocek
Adds refactored axis to presenter
r140 #include "domain_p.h"
Tero Ahola
Refactoring continued: restored ChartItem class
r104 #include "chartitem_p.h"
Michal Klocek
Add zoom support...
r67 #include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
Michal Klocek
Adds refactored axis to presenter
r140 class QChartAxis;
class AxisItem : public QObject, public ChartItem
Michal Klocek
Add zoom support...
r67 {
Michal Klocek
Adds refactored axis to presenter
r140 Q_OBJECT
Michal Klocek
Add zoom support...
r67 public:
enum AxisType{X_AXIS,Y_AXIS};
Michal Klocek
Refactor domain model...
r439 AxisItem(QChartAxis* axis,AxisType type = X_AXIS,QGraphicsItem* parent = 0);
Michal Klocek
Add zoom support...
r67 ~AxisItem();
//from QGraphicsItem
QRectF boundingRect() const;
Michal Klocek
Adds more axis handling...
r176 void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
Michal Klocek
Add zoom support...
r67
Michal Klocek
Adds more axis handling...
r176 AxisType axisType() const {return m_type;};
Michal Klocek
Adds refactored axis to presenter
r140
Michal Klocek
Fixes wrong shades zvalues
r184 void setAxisOpacity(qreal opacity);
qreal axisOpacity() const;
Michal Klocek
Adds more axis handling...
r176 void setGridOpacity(qreal opacity);
qreal gridOpacity() const;
Michal Klocek
Adds refactored axis to presenter
r140
Michal Klocek
Adds more axis handling...
r176 void setLabelsOpacity(qreal opacity);
qreal labelsOpacity() const;
Michal Klocek
Adds refactored axis to presenter
r140
Michal Klocek
Adds more axis handling...
r176 void setShadesOpacity(qreal opacity);
qreal shadesOpacity() const;
Michal Klocek
Add zoom support...
r67
Michal Klocek
Adds more axis handling...
r176 void setLabelsAngle(int angle);
int labelsAngle()const { return m_labelsAngle; }
void setShadesBrush(const QBrush& brush);
void setShadesPen(const QPen& pen);
Michal Klocek
Adds refactored axis to presenter
r140
Michal Klocek
Fixes wrong shades zvalues
r184 void setAxisPen(const QPen& pen);
Michal Klocek
Adds more axis handling...
r176 void setGridPen(const QPen& pen);
void setLabelsPen(const QPen& pen);
void setLabelsBrush(const QBrush& brush);
void setLabelsFont(const QFont& font);
public slots:
Michal Klocek
Refactor domain model...
r439 void handleAxisUpdated();//qchartaxis update calls
void handleRangeChanged(qreal min , qreal max); //domain update calls
Michal Klocek
Refacotr axisitem to handle ticks changes
r452 void handleTicksCountChanged(int ticks); //ticks changed
Michal Klocek
Refactor domain model...
r439 void handleGeometryChanged(const QRectF& size); //geometry update calls
Michal Klocek
Refactors axis layout managment...
r291 public:
Michal Klocek
Refacotr axisitem to handle ticks changes
r452 virtual void updateItem();
Michal Klocek
Clean up axis animation code
r393 QVector<qreal> calculateLayout() const;
Michal Klocek
Refacotr axisitem to handle ticks changes
r452 void setLayout(const QVector<qreal>& points);
QVector<qreal> layout() { return m_layoutVector;};
Michal Klocek
Clean up axis animation code
r393
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85 private:
Michal Klocek
Refacotr axisitem to handle ticks changes
r452 inline bool isEmpty();
Michal Klocek
Refactors axis layout managment...
r291 void clear(int count);
Michal Klocek
Refactors axis handling...
r223 void createItems(int count);
Michal Klocek
Refactor domain model...
r439 QStringList createLabels(int ticks, qreal min, qreal max);
Michal Klocek
Add zoom support...
r67 private:
Michal Klocek
Refactor domain model...
r439 QChartAxis* m_chartAxis;
Michal Klocek
Adds refactored axis to presenter
r140 AxisType m_type;
QRectF m_rect;
Michal Klocek
Adds more axis handling...
r176 int m_labelsAngle;
QGraphicsItemGroup m_grid;
QGraphicsItemGroup m_shades;
QGraphicsItemGroup m_labels;
Michal Klocek
Fix zorder of axis, and ticks
r272 QGraphicsItemGroup m_axis;
Michal Klocek
Refactors axis handling...
r223 QStringList m_thicksList;
Michal Klocek
Refactors axis layout managment...
r291 QVector<qreal> m_layoutVector;
Michal Klocek
Refacotr axisitem to handle ticks changes
r452 qreal m_min;
qreal m_max;
int m_ticks;
Michal Klocek
Adds refactored axis to presenter
r140
Michal Klocek
Add zoom support...
r67 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* AXISITEM_H_ */