1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 23:03:22 +02:00
GPXSee/src/GUI/pathitem.cpp

209 lines
4.0 KiB
C++
Raw Normal View History

2016-11-18 18:02:40 +01:00
#include <cmath>
2016-09-26 21:01:58 +02:00
#include <QApplication>
#include <QCursor>
#include <QPainter>
2017-11-26 18:54:03 +01:00
#include "map/map.h"
2016-09-26 21:01:58 +02:00
#include "tooltip.h"
2017-11-26 18:54:03 +01:00
#include "nicenum.h"
2016-09-26 21:01:58 +02:00
#include "pathitem.h"
PathItem::PathItem(const Path &path, Map *map, QGraphicsItem *parent)
: QGraphicsObject(parent)
2016-09-26 21:01:58 +02:00
{
Q_ASSERT(path.count() >= 2);
_path = path;
_map = map;
_digitalZoom = 0;
2016-12-06 01:48:26 +01:00
_width = 3;
2016-09-26 21:01:58 +02:00
QBrush brush(Qt::SolidPattern);
2016-12-06 01:48:26 +01:00
_pen = QPen(brush, _width);
2016-09-26 21:01:58 +02:00
updatePainterPath(map);
updateShape();
2016-09-26 21:01:58 +02:00
_marker = new MarkerItem(this);
_marker->setPos(position(_path.at(0).distance()));
_markerDistance = _path.at(0).distance();
2016-09-26 21:01:58 +02:00
setCursor(Qt::ArrowCursor);
setAcceptHoverEvents(true);
}
void PathItem::updateShape()
{
QPainterPathStroker s;
s.setWidth((_width + 1) * pow(2, -_digitalZoom));
_shape = s.createStroke(_painterPath);
}
void PathItem::updatePainterPath(Map *map)
{
_painterPath = QPainterPath();
_painterPath.moveTo(map->ll2xy(_path.first().coordinates()));
for (int i = 1; i < _path.size(); i++)
_painterPath.lineTo(map->ll2xy(_path.at(i).coordinates()));
}
2016-09-26 21:01:58 +02:00
void PathItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
QWidget *widget)
{
Q_UNUSED(option);
Q_UNUSED(widget);
painter->setPen(_pen);
painter->drawPath(_painterPath);
2016-09-26 21:01:58 +02:00
/*
QPen p = QPen(QBrush(Qt::red), 0);
painter->setPen(p);
painter->drawRect(boundingRect());
*/
}
void PathItem::setMap(Map *map)
2016-09-26 21:01:58 +02:00
{
prepareGeometryChange();
2017-10-04 23:15:39 +02:00
_map = map;
updatePainterPath(map);
2016-09-26 21:01:58 +02:00
updateShape();
_marker->setPos(position(_markerDistance));
2016-09-26 21:01:58 +02:00
}
void PathItem::setColor(const QColor &color)
{
2017-10-04 23:15:39 +02:00
if (_pen.color() == color)
return;
2016-09-26 21:01:58 +02:00
_pen.setColor(color);
update();
}
2017-04-05 22:53:25 +02:00
void PathItem::setWidth(qreal width)
2016-12-06 01:48:26 +01:00
{
2017-10-04 23:15:39 +02:00
if (_width == width)
return;
2016-12-06 01:48:26 +01:00
prepareGeometryChange();
_width = width;
_pen.setWidthF(_width * pow(2, -_digitalZoom));
2016-12-06 01:48:26 +01:00
updateShape();
}
void PathItem::setStyle(Qt::PenStyle style)
{
2017-10-04 23:15:39 +02:00
if (_pen.style() == style)
return;
2016-12-06 01:48:26 +01:00
_pen.setStyle(style);
update();
}
void PathItem::setDigitalZoom(int zoom)
{
2017-10-04 23:15:39 +02:00
if (_digitalZoom == zoom)
return;
prepareGeometryChange();
_digitalZoom = zoom;
_pen.setWidthF(_width * pow(2, -_digitalZoom));
_marker->setScale(pow(2, -_digitalZoom));
updateShape();
}
2016-11-14 22:12:43 +01:00
QPointF PathItem::position(qreal x) const
{
int low = 0;
int high = _path.count() - 1;
2016-11-14 22:12:43 +01:00
int mid = 0;
Q_ASSERT(high > low);
Q_ASSERT(x >= _path.at(low).distance() && x <= _path.at(high).distance());
2016-11-14 22:12:43 +01:00
while (low <= high) {
mid = low + ((high - low) / 2);
qreal val = _path.at(mid).distance();
2016-11-14 22:12:43 +01:00
if (val > x)
high = mid - 1;
else if (val < x)
low = mid + 1;
else
return _map->ll2xy(_path.at(mid).coordinates());
2016-11-14 22:12:43 +01:00
}
QLineF l;
qreal p1, p2;
if (_path.at(mid).distance() < x) {
l = QLineF(_map->ll2xy(_path.at(mid).coordinates()),
_map->ll2xy(_path.at(mid+1).coordinates()));
p1 = _path.at(mid).distance(); p2 = _path.at(mid+1).distance();
2016-11-14 22:12:43 +01:00
} else {
l = QLineF(_map->ll2xy(_path.at(mid-1).coordinates()),
_map->ll2xy(_path.at(mid).coordinates()));
p1 = _path.at(mid-1).distance(); p2 = _path.at(mid).distance();
2016-11-14 22:12:43 +01:00
}
return l.pointAt((x - p1) / (p2 - p1));
}
2016-09-26 21:01:58 +02:00
void PathItem::moveMarker(qreal distance)
{
if (distance >= _path.first().distance()
&& distance <= _path.last().distance()) {
2016-09-26 21:01:58 +02:00
_marker->setVisible(true);
2016-11-14 22:12:43 +01:00
_marker->setPos(position(distance));
_markerDistance = distance;
2016-11-18 18:02:40 +01:00
} else
_marker->setVisible(false);
2016-09-26 21:01:58 +02:00
}
2017-12-03 00:36:52 +01:00
void PathItem::setMarkerColor(const QColor &color)
{
_marker->setColor(color);
}
void PathItem::hover(bool hover)
{
if (hover) {
_pen.setWidth((_width + 1) * pow(2, -_digitalZoom));
setZValue(zValue() + 1.0);
} else {
_pen.setWidth(_width * pow(2, -_digitalZoom));
setZValue(zValue() - 1.0);
}
update();
}
2016-09-26 21:01:58 +02:00
void PathItem::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
{
Q_UNUSED(event);
_pen.setWidthF((_width + 1) * pow(2, -_digitalZoom));
2016-09-26 21:01:58 +02:00
setZValue(zValue() + 1.0);
update();
emit selected(true);
}
void PathItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
{
Q_UNUSED(event);
_pen.setWidthF(_width * pow(2, -_digitalZoom));
2016-09-26 21:01:58 +02:00
setZValue(zValue() - 1.0);
update();
emit selected(false);
}