2017-04-27 20:25:32 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-05-28 17:17:09 -03:00
|
|
|
#ifndef WEIGHTMODEL_H
|
|
|
|
#define WEIGHTMODEL_H
|
|
|
|
|
|
|
|
#include "cleanertablemodel.h"
|
2020-05-15 16:01:32 +02:00
|
|
|
#include "core/equipment.h"
|
2015-05-28 17:17:09 -03:00
|
|
|
|
|
|
|
/* Encapsulation of the Weight Model, that represents
|
|
|
|
* the current weights on a dive. */
|
|
|
|
class WeightModel : public CleanerTableModel {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
enum Column {
|
|
|
|
REMOVE,
|
|
|
|
TYPE,
|
|
|
|
WEIGHT
|
|
|
|
};
|
|
|
|
|
|
|
|
explicit WeightModel(QObject *parent = 0);
|
2018-09-29 22:13:44 +02:00
|
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
Qt::ItemFlags flags(const QModelIndex &index) const override;
|
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;
|
2019-11-04 20:20:32 +01:00
|
|
|
void setTempWS(int row, weightsystem_t ws);
|
|
|
|
void clearTempWS();
|
|
|
|
void commitTempWS();
|
2015-05-28 17:17:09 -03:00
|
|
|
|
|
|
|
void clear();
|
2019-11-02 18:47:56 +01:00
|
|
|
void updateDive(dive *d);
|
2019-11-03 15:32:59 +01:00
|
|
|
weightsystem_t weightSystemAt(const QModelIndex &index) const;
|
2015-05-28 17:17:09 -03:00
|
|
|
|
2020-03-27 21:49:19 +01:00
|
|
|
signals:
|
|
|
|
void divesEdited(int num);
|
|
|
|
|
2015-05-28 17:17:09 -03:00
|
|
|
public
|
|
|
|
slots:
|
2019-06-23 09:22:26 +02:00
|
|
|
void weightsystemsReset(const QVector<dive *> &dives);
|
2019-11-02 21:19:29 +01:00
|
|
|
void weightAdded(dive *d, int pos);
|
|
|
|
void weightRemoved(dive *d, int pos);
|
2019-11-08 22:47:38 +01:00
|
|
|
void weightEdited(dive *d, int pos);
|
2015-05-28 17:17:09 -03:00
|
|
|
|
|
|
|
private:
|
2019-11-02 18:47:56 +01:00
|
|
|
dive *d;
|
2019-11-04 20:20:32 +01:00
|
|
|
// If we temporarily change a line because the user is selecting a weight type
|
|
|
|
int tempRow;
|
|
|
|
weightsystem_t tempWS;
|
2015-05-28 17:17:09 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|