2017-04-27 18:25:32 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-05-28 19:23:49 +00:00
|
|
|
#ifndef CYLINDERMODEL_H
|
|
|
|
#define CYLINDERMODEL_H
|
|
|
|
|
2020-01-30 19:12:11 +00:00
|
|
|
#include <QSortFilterProxyModel>
|
|
|
|
|
2015-05-28 19:23:49 +00:00
|
|
|
#include "cleanertablemodel.h"
|
2016-04-05 05:02:03 +00:00
|
|
|
#include "core/dive.h"
|
2015-05-28 19:23:49 +00:00
|
|
|
|
|
|
|
/* Encapsulation of the Cylinder Model, that presents the
|
|
|
|
* Current cylinders that are used on a dive. */
|
|
|
|
class CylindersModel : public CleanerTableModel {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
enum Column {
|
|
|
|
REMOVE,
|
|
|
|
TYPE,
|
|
|
|
SIZE,
|
|
|
|
WORKINGPRESS,
|
|
|
|
START,
|
|
|
|
END,
|
|
|
|
O2,
|
|
|
|
HE,
|
|
|
|
DEPTH,
|
2016-07-06 12:40:32 +00:00
|
|
|
MOD,
|
|
|
|
MND,
|
2015-05-28 19:23:49 +00:00
|
|
|
USE,
|
2020-02-27 18:46:48 +00:00
|
|
|
WORKINGPRESS_INT,
|
|
|
|
SIZE_INT,
|
2015-05-28 19:23:49 +00:00
|
|
|
COLUMNS
|
|
|
|
};
|
|
|
|
|
2020-02-27 18:46:48 +00:00
|
|
|
enum Roles {
|
|
|
|
PASS_IN_ROLE = Qt::UserRole + 1 // For setting data: don't do any conversions
|
|
|
|
};
|
2015-05-28 19:23:49 +00:00
|
|
|
explicit CylindersModel(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;
|
2015-05-28 19:23:49 +00:00
|
|
|
|
|
|
|
void add();
|
|
|
|
void clear();
|
|
|
|
void updateDive();
|
2016-07-06 12:40:30 +00:00
|
|
|
void updateDecoDepths(pressure_t olddecopo2);
|
2017-03-13 07:25:32 +00:00
|
|
|
void updateTrashIcon();
|
2017-10-11 19:29:47 +00:00
|
|
|
void moveAtFirst(int cylid);
|
2015-05-28 19:23:49 +00:00
|
|
|
bool changed;
|
2018-09-29 20:13:44 +00:00
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
2020-02-01 07:49:43 +00:00
|
|
|
bool updateBestMixes();
|
2020-01-30 19:12:11 +00:00
|
|
|
bool cylinderUsed(int i) const;
|
2015-05-28 19:23:49 +00:00
|
|
|
|
|
|
|
public
|
|
|
|
slots:
|
2019-11-26 22:41:56 +00:00
|
|
|
void remove(QModelIndex index);
|
2019-06-23 07:22:26 +00:00
|
|
|
void cylindersReset(const QVector<dive *> &dives);
|
2015-05-28 19:23:49 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int rows;
|
2020-02-27 18:54:31 +00:00
|
|
|
cylinder_t *cylinderAt(const QModelIndex &index);
|
2015-05-28 19:23:49 +00:00
|
|
|
};
|
|
|
|
|
2020-01-30 19:12:11 +00:00
|
|
|
// Cylinder model that hides unused cylinders if the pref.show_unused_cylinders flag is not set
|
|
|
|
class CylindersModelFiltered : public QSortFilterProxyModel {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
CylindersModelFiltered(QObject *parent = 0);
|
|
|
|
CylindersModel *model(); // Access to unfiltered base model
|
|
|
|
|
|
|
|
void clear();
|
|
|
|
void add();
|
|
|
|
void updateDive();
|
|
|
|
public
|
|
|
|
slots:
|
|
|
|
void remove(QModelIndex index);
|
|
|
|
private:
|
|
|
|
CylindersModel source;
|
|
|
|
bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const override;
|
|
|
|
};
|
|
|
|
|
2015-05-28 19:23:49 +00:00
|
|
|
#endif
|