From cfd17116ebe24ab547a9d375c6c47a260d6d8294 Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Wed, 28 Aug 2013 07:27:59 -0300 Subject: Added a 'remove' icon on the dive planner table. Added a 'remove' icon on the dive planner table, this makes the ui more consistent between the other tables that also manages addition and removal of data. the delete method is still unimplemented. next - css. Signed-off-by: Tomaz Canabrava --- qt-ui/diveplanner.cpp | 5 +++++ qt-ui/diveplanner.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'qt-ui') diff --git a/qt-ui/diveplanner.cpp b/qt-ui/diveplanner.cpp index 00e522602..b6ddf518f 100644 --- a/qt-ui/diveplanner.cpp +++ b/qt-ui/diveplanner.cpp @@ -886,6 +886,11 @@ QVariant DivePlannerPointsModel::data(const QModelIndex& index, int role) const case DURATION: return p.time / 60; } } + if (role == Qt::DecorationRole){ + switch(index.column()){ + case REMOVE : return QIcon(":trash"); + } + } return QVariant(); } diff --git a/qt-ui/diveplanner.h b/qt-ui/diveplanner.h index 643a6a321..3cb3c7014 100644 --- a/qt-ui/diveplanner.h +++ b/qt-ui/diveplanner.h @@ -21,7 +21,7 @@ class DivePlannerPointsModel : public QAbstractTableModel{ Q_OBJECT public: static DivePlannerPointsModel* instance(); - enum Sections{DEPTH, DURATION, GAS, CCSETPOINT, COLUMNS}; + enum Sections{REMOVE, DEPTH, DURATION, GAS, CCSETPOINT, COLUMNS}; 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; -- cgit v1.2.3-70-g09d2