summaryrefslogtreecommitdiffstats
path: root/qt-models/models.h
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2015-05-29 13:59:16 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-05-29 14:13:32 -0700
commit33918e686765ac97da006c751c8919ef59cfa65a (patch)
tree2066dda5dbf86a8dff8989be3ca52e0db941e71c /qt-models/models.h
parent60dc9f4ab36acf83ed599a7909ca164af3c9c227 (diff)
downloadsubsurface-33918e686765ac97da006c751c8919ef59cfa65a.tar.gz
Move ProfilePrintModel to qt-models
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models/models.h')
-rw-r--r--qt-models/models.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/qt-models/models.h b/qt-models/models.h
index 94fcc5129..df5906a18 100644
--- a/qt-models/models.h
+++ b/qt-models/models.h
@@ -22,26 +22,6 @@
#include "cleanertablemodel.h"
#include "treemodel.h"
-/* ProfilePrintModel:
- * this model is used when printing a data table under a profile. it requires
- * some exact usage of setSpan(..) on the target QTableView widget.
- */
-class ProfilePrintModel : public QAbstractTableModel {
- Q_OBJECT
-
-private:
- int diveId;
- double fontSize;
-
-public:
- ProfilePrintModel(QObject *parent = 0);
- int rowCount(const QModelIndex &parent = QModelIndex()) const;
- int columnCount(const QModelIndex &parent = QModelIndex()) const;
- QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
- void setDive(struct dive *divePtr);
- void setFontsize(double size);
-};
-
class GasSelectionModel : public QStringListModel {
Q_OBJECT
public: