2020-11-25 17:30:49 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include "divehandler.h"
|
|
|
|
#include "profilewidget2.h"
|
2021-01-09 20:18:37 +00:00
|
|
|
#include "core/dive.h"
|
2020-11-25 17:30:49 +00:00
|
|
|
#include "core/gettextfromc.h"
|
2021-01-09 20:18:37 +00:00
|
|
|
#include "core/qthelper.h"
|
2020-11-25 17:30:49 +00:00
|
|
|
#include "qt-models/diveplannermodel.h"
|
|
|
|
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QGraphicsSceneMouseEvent>
|
|
|
|
#include <QSettings>
|
|
|
|
|
2021-01-09 20:18:37 +00:00
|
|
|
DiveHandler::DiveHandler(const struct dive *d) : dive(d)
|
2020-11-25 17:30:49 +00:00
|
|
|
{
|
|
|
|
setRect(-5, -5, 10, 10);
|
|
|
|
setFlags(ItemIgnoresTransformations | ItemIsSelectable | ItemIsMovable | ItemSendsGeometryChanges);
|
|
|
|
setBrush(Qt::white);
|
|
|
|
setZValue(2);
|
|
|
|
t.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
int DiveHandler::parentIndex()
|
|
|
|
{
|
|
|
|
ProfileWidget2 *view = qobject_cast<ProfileWidget2 *>(scene()->views().first());
|
2021-01-24 08:13:56 +00:00
|
|
|
return view->handleIndex(this);
|
2020-11-25 17:30:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DiveHandler::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
|
|
|
QMenu m;
|
|
|
|
// Don't have a gas selection for the last point
|
|
|
|
emit released();
|
|
|
|
DivePlannerPointsModel *plannerModel = DivePlannerPointsModel::instance();
|
|
|
|
QModelIndex index = plannerModel->index(parentIndex(), DivePlannerPointsModel::GAS);
|
|
|
|
if (index.sibling(index.row() + 1, index.column()).isValid()) {
|
2021-01-09 20:18:37 +00:00
|
|
|
QStringList gases = get_dive_gas_list(dive);
|
|
|
|
for (int i = 0; i < gases.size(); i++) {
|
2020-11-25 17:30:49 +00:00
|
|
|
QAction *action = new QAction(&m);
|
2021-01-09 20:18:37 +00:00
|
|
|
action->setText(gases[i]);
|
2020-11-25 17:30:49 +00:00
|
|
|
action->setData(i);
|
|
|
|
connect(action, &QAction::triggered, this, &DiveHandler::changeGas);
|
|
|
|
m.addAction(action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// don't allow removing the last point
|
|
|
|
if (plannerModel->rowCount() > 1) {
|
|
|
|
m.addSeparator();
|
|
|
|
m.addAction(gettextFromC::tr("Remove this point"), this, &DiveHandler::selfRemove);
|
|
|
|
m.exec(event->screenPos());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiveHandler::selfRemove()
|
|
|
|
{
|
|
|
|
#ifndef SUBSURFACE_MOBILE
|
|
|
|
setSelected(true);
|
|
|
|
ProfileWidget2 *view = qobject_cast<ProfileWidget2 *>(scene()->views().first());
|
|
|
|
view->keyDeleteAction();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiveHandler::changeGas()
|
|
|
|
{
|
|
|
|
QAction *action = qobject_cast<QAction *>(sender());
|
|
|
|
DivePlannerPointsModel *plannerModel = DivePlannerPointsModel::instance();
|
|
|
|
QModelIndex index = plannerModel->index(parentIndex(), DivePlannerPointsModel::GAS);
|
|
|
|
plannerModel->gasChange(index.sibling(index.row() + 1, index.column()), action->data().toInt());
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiveHandler::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (t.elapsed() < 40)
|
|
|
|
return;
|
|
|
|
t.start();
|
|
|
|
|
|
|
|
ProfileWidget2 *view = qobject_cast<ProfileWidget2*>(scene()->views().first());
|
|
|
|
if(view->isPointOutOfBoundaries(event->scenePos()))
|
|
|
|
return;
|
|
|
|
|
|
|
|
QGraphicsEllipseItem::mouseMoveEvent(event);
|
|
|
|
emit moved();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiveHandler::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
QGraphicsItem::mousePressEvent(event);
|
|
|
|
emit clicked();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DiveHandler::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
QGraphicsItem::mouseReleaseEvent(event);
|
|
|
|
emit released();
|
|
|
|
}
|