##// END OF EJS Templates
Initial commit for gdpBarChart example.
Initial commit for gdpBarChart example.

File last commit:

r184:2e4df5890251
r205:a2592bf5395a
Show More
axisitem_p.h
80 lines | 1.8 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
Adds more axis handling...
r176 AxisItem(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 setTicks(int count);
int ticks() const { return m_ticks;}
Michal Klocek
Adds refactored axis to presenter
r140
Michal Klocek
Adds more axis handling...
r176 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:
void handleAxisChanged(const QChartAxis& axis);
void handleDomainChanged(const Domain& domain);
void handleGeometryChanged(const QRectF& size);
protected:
void updateDomain();
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85 private:
Michal Klocek
Adds more axis handling...
r176 void clear();
Michal Klocek
Refactora axis and line chart to use graphics items insted of painter.
r85 void createItems();
Michal Klocek
Add zoom support...
r67 private:
Michal Klocek
Adds refactored axis to presenter
r140 AxisType m_type;
Michal Klocek
Add zoom support...
r67 int m_ticks;
Michal Klocek
Adds refactored axis to presenter
r140 Domain m_domain;
QRectF m_rect;
Michal Klocek
Adds more axis handling...
r176 int m_labelsAngle;
bool m_shadesEnabled;
QGraphicsItemGroup m_grid;
QGraphicsItemGroup m_shades;
QGraphicsItemGroup m_labels;
Michal Klocek
Fixes wrong shades zvalues
r184 QGraphicsLineItem m_axis;
Michal Klocek
Adds refactored axis to presenter
r140
Michal Klocek
Add zoom support...
r67 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* AXISITEM_H_ */