mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 19:55:53 +01:00
37 lines
812 B
C++
37 lines
812 B
C++
#ifndef PATHTICKITEM_H
|
|
#define PATHTICKITEM_H
|
|
|
|
#include <QFont>
|
|
#include <QGraphicsItem>
|
|
#include "graphicsscene.h"
|
|
|
|
class PathTickItem : public GraphicsItem
|
|
{
|
|
public:
|
|
PathTickItem(const QRectF &tickRect, int value, QGraphicsItem *parent = 0);
|
|
|
|
QRectF boundingRect() const;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
|
|
QWidget *widget);
|
|
|
|
void setPos(const QPointF &pos);
|
|
void setColor(const QColor &color) {_brush = QBrush(color);}
|
|
|
|
int type() const {return parentItem()->type();}
|
|
QString info() const {return static_cast<GraphicsItem*>(parentItem())->info();}
|
|
|
|
static QRect tickRect(int value);
|
|
|
|
protected:
|
|
void mousePressEvent(QGraphicsSceneMouseEvent *event);
|
|
|
|
private:
|
|
QRectF _tickRect;
|
|
QString _text;
|
|
QBrush _brush;
|
|
|
|
static QFont _font;
|
|
};
|
|
|
|
#endif // PATHTICKITEM_H
|