2017-04-27 18:25:32 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-05-28 20:17:09 +00:00
|
|
|
#ifndef WEIGHTMODEL_H
|
|
|
|
#define WEIGHTMODEL_H
|
|
|
|
|
|
|
|
#include "cleanertablemodel.h"
|
2020-05-15 14:01:32 +00:00
|
|
|
#include "core/equipment.h"
|
2015-05-28 20:17:09 +00: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 20:13:44 +00: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 19:20:32 +00:00
|
|
|
void setTempWS(int row, weightsystem_t ws);
|
|
|
|
void clearTempWS();
|
|
|
|
void commitTempWS();
|
2015-05-28 20:17:09 +00:00
|
|
|
|
|
|
|
void clear();
|
2019-11-02 17:47:56 +00:00
|
|
|
void updateDive(dive *d);
|
2019-11-03 14:32:59 +00:00
|
|
|
weightsystem_t weightSystemAt(const QModelIndex &index) const;
|
2015-05-28 20:17:09 +00:00
|
|
|
|
2020-03-27 20:49:19 +00:00
|
|
|
signals:
|
|
|
|
void divesEdited(int num);
|
|
|
|
|
2015-05-28 20:17:09 +00:00
|
|
|
public
|
|
|
|
slots:
|
2019-06-23 07:22:26 +00:00
|
|
|
void weightsystemsReset(const QVector<dive *> &dives);
|
2019-11-02 20:19:29 +00:00
|
|
|
void weightAdded(dive *d, int pos);
|
|
|
|
void weightRemoved(dive *d, int pos);
|
2019-11-08 21:47:38 +00:00
|
|
|
void weightEdited(dive *d, int pos);
|
2015-05-28 20:17:09 +00:00
|
|
|
|
|
|
|
private:
|
2019-11-02 17:47:56 +00:00
|
|
|
dive *d;
|
2019-11-04 19:20:32 +00:00
|
|
|
// If we temporarily change a line because the user is selecting a weight type
|
|
|
|
int tempRow;
|
|
|
|
weightsystem_t tempWS;
|
2015-05-28 20:17:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|