summaryrefslogtreecommitdiffstats
path: root/qt-models/models.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt-models/models.cpp')
-rw-r--r--qt-models/models.cpp66
1 files changed, 0 insertions, 66 deletions
diff --git a/qt-models/models.cpp b/qt-models/models.cpp
index cd62dfc67..15e5d9a00 100644
--- a/qt-models/models.cpp
+++ b/qt-models/models.cpp
@@ -1378,69 +1378,3 @@ int LanguageModel::rowCount(const QModelIndex &parent) const
{
return languages.count();
}
-
-ExtraDataModel::ExtraDataModel(QObject *parent) : CleanerTableModel(parent),
- rows(0)
-{
- //enum Column {KEY, VALUE};
- setHeaderDataStrings(QStringList() << tr("Key") << tr("Value"));
-}
-
-void ExtraDataModel::clear()
-{
- if (rows > 0) {
- beginRemoveRows(QModelIndex(), 0, rows - 1);
- endRemoveRows();
- }
-}
-
-QVariant ExtraDataModel::data(const QModelIndex &index, int role) const
-{
- QVariant ret;
- struct extra_data *ed = get_dive_dc(&displayed_dive, dc_number)->extra_data;
- int i = -1;
- while (ed && ++i < index.row())
- ed = ed->next;
- if (!ed)
- return ret;
-
- switch (role) {
- case Qt::FontRole:
- ret = defaultModelFont();
- break;
- case Qt::TextAlignmentRole:
- ret = int(Qt::AlignLeft | Qt::AlignVCenter);
- break;
- case Qt::DisplayRole:
- switch (index.column()) {
- case KEY:
- ret = QString(ed->key);
- break;
- case VALUE:
- ret = QString(ed->value);
- break;
- }
- break;
- }
- return ret;
-}
-
-int ExtraDataModel::rowCount(const QModelIndex &parent) const
-{
- return rows;
-}
-
-void ExtraDataModel::updateDive()
-{
- clear();
- rows = 0;
- struct extra_data *ed = get_dive_dc(&displayed_dive, dc_number)->extra_data;
- while (ed) {
- rows++;
- ed = ed->next;
- }
- if (rows > 0) {
- beginInsertRows(QModelIndex(), 0, rows - 1);
- endInsertRows();
- }
-}