2014-02-27 16:28:58 +00:00
|
|
|
#include "ruleritem.h"
|
2014-02-28 01:52:03 +00:00
|
|
|
#include "divetextitem.h"
|
|
|
|
|
2014-02-27 16:28:58 +00:00
|
|
|
#include <QFont>
|
|
|
|
#include <QFontMetrics>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QGraphicsScene>
|
2014-02-28 01:52:03 +00:00
|
|
|
#include <QGraphicsView>
|
2014-02-27 19:42:00 +00:00
|
|
|
#include <QDebug>
|
2014-02-27 16:28:58 +00:00
|
|
|
|
2014-02-27 17:59:41 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2014-02-27 16:28:58 +00:00
|
|
|
#include "profile.h"
|
|
|
|
#include "display.h"
|
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
RulerNodeItem2::RulerNodeItem2(struct plot_info &info) : pInfo(info), entry(NULL), ruler(NULL)
|
2014-02-27 16:28:58 +00:00
|
|
|
{
|
2014-02-28 04:09:57 +00:00
|
|
|
setRect(QRect(QPoint(-8, 8), QPoint(8, -8)));
|
2014-02-27 16:28:58 +00:00
|
|
|
setBrush(QColor(0xff, 0, 0, 127));
|
|
|
|
setPen(QColor("#FF0000"));
|
|
|
|
setFlag(QGraphicsItem::ItemIsMovable);
|
|
|
|
setFlag(ItemSendsGeometryChanges);
|
|
|
|
setFlag(ItemIgnoresTransformations);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RulerNodeItem2::setRuler(RulerItem2 *r)
|
|
|
|
{
|
|
|
|
ruler = r;
|
|
|
|
}
|
|
|
|
|
|
|
|
void RulerNodeItem2::recalculate()
|
|
|
|
{
|
2014-02-28 04:09:57 +00:00
|
|
|
struct plot_data *data = pInfo.entry + (pInfo.nr - 1);
|
2014-02-27 17:59:41 +00:00
|
|
|
uint16_t count = 0;
|
|
|
|
if (x() < 0) {
|
|
|
|
setPos(0, y());
|
|
|
|
} else if (x() > timeAxis->posAtValue(data->sec)) {
|
|
|
|
setPos(timeAxis->posAtValue(data->sec), y());
|
|
|
|
} else {
|
2014-02-27 19:28:19 +00:00
|
|
|
data = pInfo.entry;
|
2014-02-28 04:09:57 +00:00
|
|
|
count = 0;
|
2014-02-27 19:28:19 +00:00
|
|
|
while (timeAxis->posAtValue(data->sec) < x() && count < pInfo.nr) {
|
2014-02-28 04:09:57 +00:00
|
|
|
data = pInfo.entry + count;
|
2014-02-27 17:59:41 +00:00
|
|
|
count++;
|
|
|
|
}
|
|
|
|
setPos(timeAxis->posAtValue(data->sec), depthAxis->posAtValue(data->depth));
|
2014-02-28 04:09:57 +00:00
|
|
|
entry = data;
|
2014-02-27 17:59:41 +00:00
|
|
|
}
|
2014-02-27 16:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QVariant RulerNodeItem2::itemChange(GraphicsItemChange change, const QVariant &value)
|
|
|
|
{
|
|
|
|
if (change == ItemPositionHasChanged) {
|
|
|
|
recalculate();
|
|
|
|
if (ruler != NULL)
|
|
|
|
ruler->recalculate();
|
|
|
|
if (scene()) {
|
|
|
|
scene()->update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QGraphicsEllipseItem::itemChange(change, value);
|
|
|
|
}
|
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
RulerItem2::RulerItem2() : timeAxis(NULL),
|
2014-02-27 17:59:41 +00:00
|
|
|
depthAxis(NULL),
|
2014-02-27 19:28:19 +00:00
|
|
|
source(new RulerNodeItem2(pInfo)),
|
2014-02-28 01:52:03 +00:00
|
|
|
dest(new RulerNodeItem2(pInfo)),
|
|
|
|
textItem(new QGraphicsSimpleTextItem(this))
|
2014-02-27 16:28:58 +00:00
|
|
|
{
|
2014-02-27 19:28:19 +00:00
|
|
|
memset(&pInfo, 0, sizeof(pInfo));
|
2014-02-27 17:59:41 +00:00
|
|
|
source->setRuler(this);
|
|
|
|
dest->setRuler(this);
|
2014-02-28 01:52:03 +00:00
|
|
|
textItem->setFlag(QGraphicsItem::ItemIgnoresTransformations);
|
2014-02-27 16:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RulerItem2::recalculate()
|
|
|
|
{
|
|
|
|
char buffer[500];
|
|
|
|
QPointF tmp;
|
|
|
|
QFont font;
|
|
|
|
QFontMetrics fm(font);
|
|
|
|
|
2014-02-27 19:28:19 +00:00
|
|
|
if (timeAxis == NULL || depthAxis == NULL || pInfo.nr == 0)
|
2014-02-27 16:28:58 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
prepareGeometryChange();
|
|
|
|
startPoint = mapFromItem(source, 0, 0);
|
|
|
|
endPoint = mapFromItem(dest, 0, 0);
|
2014-02-28 01:52:03 +00:00
|
|
|
|
2014-02-27 16:28:58 +00:00
|
|
|
if (startPoint.x() > endPoint.x()) {
|
|
|
|
tmp = endPoint;
|
|
|
|
endPoint = startPoint;
|
|
|
|
startPoint = tmp;
|
|
|
|
}
|
|
|
|
QLineF line(startPoint, endPoint);
|
|
|
|
|
|
|
|
compare_samples(source->entry, dest->entry, buffer, 500, 1);
|
|
|
|
text = QString(buffer);
|
|
|
|
|
2014-02-28 01:52:03 +00:00
|
|
|
//Draw Text
|
|
|
|
// This text item ignores transformations, so we cant use
|
|
|
|
// the line.angle(), we need to calculate the angle based
|
|
|
|
// on the view.
|
|
|
|
|
|
|
|
QGraphicsView *view = scene()->views().first();
|
|
|
|
QPoint begin = view->mapFromScene(mapToScene(startPoint));
|
|
|
|
QPoint end = view->mapFromScene(mapToScene(endPoint));
|
|
|
|
QLineF globalLine(begin, end);
|
|
|
|
textItem->setText(text);
|
|
|
|
textItem->resetMatrix();
|
|
|
|
textItem->resetTransform();
|
|
|
|
textItem->setPos(startPoint);
|
|
|
|
textItem->rotate(globalLine.angle() * -1);
|
2014-02-27 16:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
RulerNodeItem2 *RulerItem2::sourceNode() const
|
|
|
|
{
|
|
|
|
return source;
|
|
|
|
}
|
|
|
|
|
|
|
|
RulerNodeItem2 *RulerItem2::destNode() const
|
|
|
|
{
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
void RulerItem2::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
|
|
|
|
{
|
|
|
|
Q_UNUSED(option);
|
|
|
|
Q_UNUSED(widget);
|
|
|
|
QLineF line(startPoint, endPoint);
|
|
|
|
painter->setPen(QColor(Qt::black));
|
|
|
|
painter->setBrush(Qt::NoBrush);
|
|
|
|
painter->drawLine(line);
|
|
|
|
}
|
|
|
|
|
|
|
|
QRectF RulerItem2::boundingRect() const
|
|
|
|
{
|
|
|
|
return shape().controlPointRect();
|
|
|
|
}
|
|
|
|
|
|
|
|
QPainterPath RulerItem2::shape() const
|
|
|
|
{
|
|
|
|
QPainterPath path;
|
|
|
|
QLineF line(startPoint, endPoint);
|
|
|
|
QLineF line_n = line.normalVector();
|
|
|
|
line_n.setLength(height);
|
|
|
|
if (paint_direction == 1)
|
2014-02-28 04:09:57 +00:00
|
|
|
line_n.setAngle(line_n.angle() + 180);
|
2014-02-27 16:28:58 +00:00
|
|
|
path.moveTo(startPoint);
|
|
|
|
path.lineTo(line_n.p2());
|
|
|
|
path.lineTo(line_n.p2() + QPointF(line.dx(), line.dy()));
|
|
|
|
path.lineTo(endPoint);
|
|
|
|
path.lineTo(startPoint);
|
|
|
|
return path;
|
|
|
|
}
|
2014-02-27 17:59:41 +00:00
|
|
|
|
2014-02-27 19:28:19 +00:00
|
|
|
void RulerItem2::setPlotInfo(plot_info info)
|
2014-02-27 17:59:41 +00:00
|
|
|
{
|
|
|
|
pInfo = info;
|
2014-02-27 19:28:19 +00:00
|
|
|
recalculate();
|
2014-02-27 19:42:00 +00:00
|
|
|
dest->recalculate();
|
|
|
|
source->recalculate();
|
2014-02-27 19:28:19 +00:00
|
|
|
}
|
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
void RulerItem2::setAxis(DiveCartesianAxis *time, DiveCartesianAxis *depth)
|
2014-02-27 19:28:19 +00:00
|
|
|
{
|
|
|
|
timeAxis = time;
|
|
|
|
depthAxis = depth;
|
|
|
|
dest->depthAxis = depth;
|
|
|
|
dest->timeAxis = time;
|
|
|
|
source->depthAxis = depth;
|
|
|
|
source->timeAxis = time;
|
2014-02-27 17:59:41 +00:00
|
|
|
recalculate();
|
|
|
|
}
|