mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
29b242c703
This data structure was quite fragile and made 'undo' when editing rather hard to implement. So instead I decided to turn this into a QMultiMap which seemed like the ideal data structure for it. This map holds all the dive computer related data indexed by the model. As QMultiMap it allows multiple entries per key (model string) and disambiguates between them with the deviceId. This commit turned out much larger than I wanted. But I didn't manage to find a clean way to break it up and make the pieces make sense. So this brings back the Ok / Cancel button for the dive computer edit dialog. And it makes those two buttons actually do the right thing (which is what started this whole process). For this to work we simply copy the map to a working copy and do all edits on that one - and then copy that over the 'real' map when we accept the changes. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
199 lines
6.3 KiB
C++
199 lines
6.3 KiB
C++
/*
|
|
* models.h
|
|
*
|
|
* header file for the equipment models of Subsurface
|
|
*
|
|
*/
|
|
#ifndef MODELS_H
|
|
#define MODELS_H
|
|
|
|
#include <QAbstractTableModel>
|
|
#include <QCoreApplication>
|
|
#include <QStringList>
|
|
|
|
#include "../dive.h"
|
|
#include "../divelist.h"
|
|
#include "../qthelper.h"
|
|
|
|
QFont defaultModelFont();
|
|
|
|
/* Encapsulates the tank_info global variable
|
|
* to show on Qt's Model View System.*/
|
|
class TankInfoModel : public QAbstractTableModel {
|
|
Q_OBJECT
|
|
public:
|
|
static TankInfoModel* instance();
|
|
|
|
enum Column {DESCRIPTION, ML, BAR};
|
|
TankInfoModel();
|
|
|
|
/*reimp*/ QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
|
|
/*reimp*/ int columnCount(const QModelIndex& parent = QModelIndex()) const;
|
|
/*reimp*/ QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const;
|
|
/*reimp*/ int rowCount(const QModelIndex& parent = QModelIndex()) const;
|
|
/*reimp*/ bool insertRows(int row, int count, const QModelIndex& parent = QModelIndex());
|
|
/*reimp*/ bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole);
|
|
const QString& biggerString() const;
|
|
void clear();
|
|
void update();
|
|
private:
|
|
int rows;
|
|
QString biggerEntry;
|
|
};
|
|
|
|
/* Encapsulate ws_info */
|
|
class WSInfoModel : public QAbstractTableModel {
|
|
Q_OBJECT
|
|
public:
|
|
static WSInfoModel* instance();
|
|
|
|
enum Column {DESCRIPTION, GR};
|
|
WSInfoModel();
|
|
|
|
/*reimp*/ QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
|
|
/*reimp*/ int columnCount(const QModelIndex& parent = QModelIndex()) const;
|
|
/*reimp*/ QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const;
|
|
/*reimp*/ int rowCount(const QModelIndex& parent = QModelIndex()) const;
|
|
/*reimp*/ bool insertRows(int row, int count, const QModelIndex& parent = QModelIndex());
|
|
/*reimp*/ bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole);
|
|
const QString& biggerString() const;
|
|
void clear();
|
|
void update();
|
|
private:
|
|
int rows;
|
|
QString biggerEntry;
|
|
};
|
|
|
|
/* Encapsulation of the Cylinder Model, that presents the
|
|
* Current cylinders that are used on a dive. */
|
|
class CylindersModel : public QAbstractTableModel {
|
|
Q_OBJECT
|
|
public:
|
|
enum Column {REMOVE, TYPE, SIZE, WORKINGPRESS, START, END, O2, HE, COLUMNS};
|
|
|
|
explicit CylindersModel(QObject* parent = 0);
|
|
/*reimp*/ QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
|
|
/*reimp*/ int columnCount(const QModelIndex& parent = QModelIndex()) const;
|
|
/*reimp*/ QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const;
|
|
/*reimp*/ int rowCount(const QModelIndex& parent = QModelIndex()) const;
|
|
/*reimp*/ Qt::ItemFlags flags(const QModelIndex& index) const;
|
|
/*reimp*/ bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole);
|
|
|
|
void passInData(const QModelIndex& index, const QVariant& value);
|
|
void add();
|
|
void clear();
|
|
void update();
|
|
void setDive(struct dive *d);
|
|
public slots:
|
|
void remove(const QModelIndex& index);
|
|
|
|
private:
|
|
struct dive *current;
|
|
int rows;
|
|
};
|
|
|
|
/* Encapsulation of the Weight Model, that represents
|
|
* the current weights on a dive. */
|
|
class WeightModel : public QAbstractTableModel {
|
|
Q_OBJECT
|
|
public:
|
|
enum Column {REMOVE, TYPE, WEIGHT, COLUMNS};
|
|
|
|
explicit WeightModel(QObject *parent = 0);
|
|
/*reimp*/ QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
|
|
/*reimp*/ int columnCount(const QModelIndex& parent = QModelIndex()) const;
|
|
/*reimp*/ QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const;
|
|
/*reimp*/ int rowCount(const QModelIndex& parent = QModelIndex()) const;
|
|
/*reimp*/ Qt::ItemFlags flags(const QModelIndex& index) const;
|
|
/*reimp*/ bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole);
|
|
|
|
void passInData(const QModelIndex& index, const QVariant& value);
|
|
void add();
|
|
void clear();
|
|
void update();
|
|
void setDive(struct dive *d);
|
|
public slots:
|
|
void remove(const QModelIndex& index);
|
|
|
|
private:
|
|
struct dive *current;
|
|
int rows;
|
|
};
|
|
|
|
/*! An AbstractItemModel for recording dive trip information such as a list of dives.
|
|
*
|
|
*/
|
|
|
|
struct TreeItemDT {
|
|
Q_DECLARE_TR_FUNCTIONS (TreeItemDT);
|
|
public:
|
|
enum Column {NR, DATE, RATING, DEPTH, DURATION, TEMPERATURE, TOTALWEIGHT,
|
|
SUIT, CYLINDER, NITROX, SAC, OTU, MAXCNS, LOCATION, COLUMNS };
|
|
|
|
enum ExtraRoles{STAR_ROLE = Qt::UserRole + 1, DIVE_ROLE, SORT_ROLE};
|
|
|
|
virtual ~TreeItemDT();
|
|
int columnCount() const {
|
|
return COLUMNS;
|
|
};
|
|
|
|
virtual QVariant data (int column, int role) const;
|
|
int row() const;
|
|
QList<TreeItemDT *> children;
|
|
TreeItemDT *parent;
|
|
};
|
|
|
|
struct TripItem;
|
|
|
|
class DiveTripModel : public QAbstractItemModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum Layout{TREE, LIST, CURRENT};
|
|
|
|
DiveTripModel(QObject *parent = 0);
|
|
~DiveTripModel();
|
|
|
|
/*reimp*/ Qt::ItemFlags flags(const QModelIndex &index) const;
|
|
/*reimp*/ QVariant data(const QModelIndex &index, int role) const;
|
|
/*reimp*/ QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
|
|
/*reimp*/ int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
/*reimp*/ int columnCount(const QModelIndex &parent = QModelIndex()) const;
|
|
/*reimp*/ QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
|
|
/*reimp*/ QModelIndex parent(const QModelIndex &child) const;
|
|
|
|
Layout layout() const;
|
|
void setLayout(Layout layout);
|
|
private:
|
|
void setupModelData();
|
|
|
|
TreeItemDT *rootItem;
|
|
QMap<dive_trip_t*, TripItem*> trips;
|
|
Layout currentLayout;
|
|
};
|
|
|
|
class DiveComputerModel : public QAbstractTableModel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum {REMOVE, MODEL, ID, NICKNAME, COLUMNS};
|
|
DiveComputerModel(QMultiMap<QString, DiveComputerNode> &dcMap, QObject *parent = 0);
|
|
virtual QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
|
|
virtual int columnCount(const QModelIndex& parent = QModelIndex()) const;
|
|
virtual QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const;
|
|
virtual int rowCount(const QModelIndex& parent = QModelIndex()) const;
|
|
virtual Qt::ItemFlags flags(const QModelIndex& index) const;
|
|
virtual bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole);
|
|
void update();
|
|
void keepWorkingList();
|
|
void dropWorkingList();
|
|
|
|
public slots:
|
|
void remove(const QModelIndex& index);
|
|
private:
|
|
int numRows;
|
|
QMultiMap<QString, DiveComputerNode> dcWorkingMap;
|
|
};
|
|
|
|
#endif
|