mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Started the work of Editable Model for the Planner
This commit is the start of the Editable Model work for the planner, it creates a new delegate and shares the code for the model that creates the gas types, so we only need to change in one place to add new gases. The table is already edition-enabled, but the outcome is still undone, next commit - put all together. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
This commit is contained in:
parent
6c56f07959
commit
69903903d2
4 changed files with 47 additions and 4 deletions
|
@ -17,6 +17,9 @@ class QListView;
|
|||
class QStringListModel;
|
||||
class QModelIndex;
|
||||
|
||||
// Return a Model containing the air types.
|
||||
QStringListModel *airTypes();
|
||||
|
||||
class DivePlannerPointsModel : public QAbstractTableModel{
|
||||
Q_OBJECT
|
||||
public:
|
||||
|
@ -26,6 +29,8 @@ public:
|
|||
virtual QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const;
|
||||
virtual int rowCount(const QModelIndex& parent = QModelIndex()) const;
|
||||
virtual QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
|
||||
virtual bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole);
|
||||
virtual Qt::ItemFlags flags(const QModelIndex& index) const;
|
||||
|
||||
/**
|
||||
* @return the row number.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue