1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/GUI/waypointitem.cpp

172 lines
3.9 KiB
C++
Raw Normal View History

#include <QApplication>
2015-10-05 01:43:48 +02:00
#include <QPainter>
#include <QGraphicsSceneMouseEvent>
#include <QLabel>
#include "font.h"
2016-08-02 00:28:56 +02:00
#include "tooltip.h"
#include "popup.h"
2016-02-19 21:34:55 +01:00
#include "waypointitem.h"
2015-10-05 01:43:48 +02:00
#define HS(size) \
((int)((qreal)size * 1.2))
#define FS(size) \
((int)((qreal)size * 1.41))
2015-10-05 01:43:48 +02:00
QString WaypointItem::info() const
{
2016-08-02 00:28:56 +02:00
ToolTip tt;
if (!_waypoint.name().isEmpty())
2016-08-09 01:16:19 +02:00
tt.insert(qApp->translate("WaypointItem", "Name"), _waypoint.name());
tt.insert(qApp->translate("WaypointItem", "Coordinates"),
Format::coordinates(_waypoint.coordinates(), _format));
2019-03-14 18:52:15 +01:00
if (_waypoint.hasElevation())
tt.insert(qApp->translate("WaypointItem", "Elevation"),
Format::elevation(_waypoint.elevation(), _units));
2019-03-14 18:52:15 +01:00
if (_waypoint.timestamp().isValid())
tt.insert(qApp->translate("WaypointItem", "Date"),
_waypoint.timestamp().toString(Qt::SystemLocaleShortDate));
2019-03-14 18:52:15 +01:00
if (!_waypoint.description().isEmpty())
tt.insert(qApp->translate("WaypointItem", "Description"),
_waypoint.description());
2019-10-14 20:07:05 +02:00
for (int i = 0; i < _waypoint.links().size(); i++) {
const Link &link = _waypoint.links().at(i);
if (!link.URL().isEmpty()) {
tt.insert(qApp->translate("WaypointItem", "Link"),
QString("<a href=\"%0\">%1</a>").arg(link.URL(),
link.text().isEmpty() ? link.URL() : link.text()));
}
}
tt.setImage(_waypoint.image());
2016-08-02 00:28:56 +02:00
return tt.toString();
}
WaypointItem::WaypointItem(const Waypoint &waypoint, Map *map,
QGraphicsItem *parent) : GraphicsItem(parent)
2015-10-05 01:43:48 +02:00
{
_waypoint = waypoint;
2016-08-09 01:16:19 +02:00
_showLabel = true;
_size = 8;
_color = Qt::black;
2016-08-02 00:28:56 +02:00
2018-05-19 20:30:29 +02:00
_font.setPixelSize(FS(_size));
_font.setFamily(FONT_FAMILY);
_units = Metric;
_format = DecimalDegrees;
2018-05-19 20:30:29 +02:00
updateCache();
2016-07-25 19:32:36 +02:00
setPos(map->ll2xy(waypoint.coordinates()));
setCursor(Qt::ArrowCursor);
2016-09-10 13:11:46 +02:00
setAcceptHoverEvents(true);
2015-10-05 01:43:48 +02:00
}
2018-05-19 20:30:29 +02:00
void WaypointItem::updateCache()
2015-10-05 01:43:48 +02:00
{
QPainterPath p;
2018-05-19 20:30:29 +02:00
qreal pointSize = _font.bold() ? HS(_size) : _size;
2016-09-10 13:11:46 +02:00
2016-08-09 01:16:19 +02:00
if (_showLabel) {
2018-05-19 20:30:29 +02:00
QFontMetrics fm(_font);
_labelBB = fm.tightBoundingRect(_waypoint.name());
2016-08-09 01:16:19 +02:00
p.addRect(-pointSize/2, -pointSize/2, pointSize, pointSize);
2018-05-19 20:30:29 +02:00
p.addRect(pointSize/2, pointSize/2, _labelBB.width(), _labelBB.height()
+ fm.descent());
2016-08-09 01:16:19 +02:00
} else
p.addRect(-pointSize/2, -pointSize/2, pointSize, pointSize);
_shape = p;
2015-10-05 01:43:48 +02:00
}
2016-07-25 19:32:36 +02:00
void WaypointItem::paint(QPainter *painter,
const QStyleOptionGraphicsItem *option, QWidget *widget)
2015-10-05 01:43:48 +02:00
{
Q_UNUSED(option);
Q_UNUSED(widget);
2018-05-19 20:30:29 +02:00
qreal pointSize = _font.bold() ? HS(_size) : _size;
painter->setPen(_color);
2016-09-10 13:11:46 +02:00
2016-08-09 01:16:19 +02:00
if (_showLabel) {
2018-05-19 20:30:29 +02:00
painter->setFont(_font);
painter->drawText(pointSize/2 - qMax(_labelBB.x(), 0), pointSize/2
+ _labelBB.height(), _waypoint.name());
2016-08-09 01:16:19 +02:00
}
painter->setBrush(QBrush(_color, Qt::SolidPattern));
2016-09-10 13:11:46 +02:00
painter->drawEllipse(-pointSize/2, -pointSize/2, pointSize, pointSize);
2015-10-05 01:43:48 +02:00
/*
painter->setPen(Qt::red);
painter->setBrush(Qt::NoBrush);
painter->drawPath(_shape);
2015-10-05 01:43:48 +02:00
*/
}
2016-08-02 00:28:56 +02:00
void WaypointItem::setSize(int size)
{
if (_size == size)
return;
prepareGeometryChange();
_size = size;
2018-05-19 20:30:29 +02:00
_font.setPixelSize(FS(_size));
updateCache();
}
void WaypointItem::setColor(const QColor &color)
{
if (_color == color)
return;
_color = color;
update();
}
2018-02-11 20:49:26 +01:00
void WaypointItem::setToolTipFormat(Units units, CoordinatesFormat format)
2016-08-02 00:28:56 +02:00
{
_units = units;
_format = format;
2016-08-02 00:28:56 +02:00
}
2016-08-09 01:16:19 +02:00
void WaypointItem::showLabel(bool show)
{
if (_showLabel == show)
return;
2016-08-09 01:16:19 +02:00
prepareGeometryChange();
_showLabel = show;
2018-05-19 20:30:29 +02:00
updateCache();
2016-08-09 01:16:19 +02:00
}
2016-09-10 13:11:46 +02:00
void WaypointItem::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
{
Q_UNUSED(event);
prepareGeometryChange();
2018-05-19 20:30:29 +02:00
_font.setBold(true);
updateCache();
2016-09-19 01:45:28 +02:00
setZValue(zValue() + 1.0);
2016-09-10 13:11:46 +02:00
}
void WaypointItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
{
Q_UNUSED(event);
prepareGeometryChange();
2018-05-19 20:30:29 +02:00
_font.setBold(false);
updateCache();
2016-09-19 01:45:28 +02:00
setZValue(zValue() - 1.0);
2016-09-10 13:11:46 +02:00
}
void WaypointItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
Popup::show(event->screenPos(), info(), event->widget());
2019-10-14 20:07:05 +02:00
/* Do not propagate the event any further as lower stacked items (path
items) would replace the popup with their own popup */
}