diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-06-17 11:12:10 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-06-17 11:12:10 -0700 |
commit | f465230263c4d1827feafedfce1b648cc035e49a (patch) | |
tree | 246e08c2f3cb0cf5e264c1788ff50005f6a80970 /qt-ui/models.h | |
parent | 6fd1e32452a9d3d1fb7116764442bbd26d36673e (diff) | |
parent | 7681895fe09aa81c83143c6a58459e354a4234b1 (diff) | |
download | subsurface-f465230263c4d1827feafedfce1b648cc035e49a.tar.gz |
Merge branch '119_divecomputerManagement' of github.com:tcanabrava/subsurface
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/models.h')
-rw-r--r-- | qt-ui/models.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/qt-ui/models.h b/qt-ui/models.h index 79af13bed..b61c79cd6 100644 --- a/qt-ui/models.h +++ b/qt-ui/models.h @@ -172,4 +172,25 @@ private: Layout currentLayout; }; +class DiveComputerModel : public QAbstractTableModel +{ + Q_OBJECT +public: + enum {REMOVE, MODEL, ID, NICKNAME, COLUMNS}; + explicit DiveComputerModel(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(); + +public slots: + void remove(const QModelIndex& index); +private: + int numRows; + +}; + #endif |