mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 19:55:53 +01:00
44 lines
1012 B
C++
44 lines
1012 B
C++
#ifndef COORDINATESITEM_H
|
|
#define COORDINATESITEM_H
|
|
|
|
#include <QGraphicsItem>
|
|
#include <QFont>
|
|
#include "common/coordinates.h"
|
|
#include "format.h"
|
|
|
|
class CoordinatesItem : public QGraphicsItem
|
|
{
|
|
public:
|
|
CoordinatesItem(QGraphicsItem *parent = 0);
|
|
|
|
QRectF boundingRect() const {return _boundingRect;}
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
|
|
QWidget *widget);
|
|
|
|
CoordinatesFormat format() const {return _format;}
|
|
|
|
void setCoordinates(const Coordinates &c, qreal elevation = NAN);
|
|
void setFormat(CoordinatesFormat format);
|
|
void setUnits(Units units);
|
|
void setDigitalZoom(qreal zoom);
|
|
void setColor(const QColor &color);
|
|
void setBackgroundColor(const QColor &color);
|
|
void drawBackground(bool draw);
|
|
|
|
private:
|
|
void updateBoundingRect();
|
|
QString text() const;
|
|
|
|
Coordinates _c;
|
|
qreal _ele;
|
|
CoordinatesFormat _format;
|
|
Units _units;
|
|
QRectF _boundingRect;
|
|
QFont _font;
|
|
qreal _digitalZoom;
|
|
QColor _color, _bgColor;
|
|
bool _drawBackground;
|
|
};
|
|
|
|
#endif // COORDINATESITEM_H
|