diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-09-21 15:04:52 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-09-23 14:15:19 -0700 |
commit | 8c9a4ecd4b06d62b8b2b6b5a36e025aa84521ec7 (patch) | |
tree | a9b796be9d05b15130243591c6aba56f24a007df /qt-ui/locationinformation.cpp | |
parent | be6e190bd2b0480d76fc29bed95d46ad1aa7f414 (diff) | |
download | subsurface-8c9a4ecd4b06d62b8b2b6b5a36e025aa84521ec7.tar.gz |
Stabilize the location model/proxy model
Since I removed the old location edit from the UI, I also need to
remove a bit of code from the UI that was calling it.
fix a few crashes regarding the old location edit.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/locationinformation.cpp')
-rw-r--r-- | qt-ui/locationinformation.cpp | 34 |
1 files changed, 25 insertions, 9 deletions
diff --git a/qt-ui/locationinformation.cpp b/qt-ui/locationinformation.cpp index 3a213e679..b8d66d56e 100644 --- a/qt-ui/locationinformation.cpp +++ b/qt-ui/locationinformation.cpp @@ -7,6 +7,7 @@ #include "filtermodels.h" #include "divelocationmodel.h" #include "divesitehelpers.h" +#include "modeldelegates.h" #include <QDebug> #include <QShowEvent> @@ -327,13 +328,19 @@ DiveLocationLineEdit *location_line_edit = 0; bool DiveLocationFilterProxyModel::filterAcceptsRow(int source_row, const QModelIndex& source_parent) const { - if(source_row == 0 || source_row == 1) + if(source_row == 0) return true; QString sourceString = sourceModel()->index(source_row, DiveLocationModel::NAME).data(Qt::DisplayRole).toString(); return sourceString.toLower().startsWith(location_line_edit->text().toLower()); } +bool DiveLocationFilterProxyModel::lessThan(const QModelIndex& source_left, const QModelIndex& source_right) const +{ + return source_left.data().toString() <= source_right.data().toString(); +} + + DiveLocationModel::DiveLocationModel(QObject *o) { resetModel(); @@ -342,7 +349,6 @@ DiveLocationModel::DiveLocationModel(QObject *o) void DiveLocationModel::resetModel() { beginResetModel(); - qDebug() << "Dive site table size" <<dive_site_table.nr; endResetModel(); } @@ -403,18 +409,20 @@ bool DiveLocationModel::setData(const QModelIndex& index, const QVariant& value, DiveLocationLineEdit::DiveLocationLineEdit(QWidget *parent) { + location_line_edit = this; proxy = new DiveLocationFilterProxyModel(); model = new DiveLocationModel(); view = new DiveLocationListView(); proxy->setSourceModel(model); - view->setModel(model); - + proxy->setFilterKeyColumn(DiveLocationModel::NAME); + view->setModel(proxy); + view->setModelColumn(DiveLocationModel::NAME); + view->setItemDelegate(new LocationFilterDelegate()); connect(this, &QLineEdit::textEdited, this, &DiveLocationLineEdit::setTemporaryDiveSiteName); //HACK: /* This is being show currently just to test. */ - qDebug() << "AAAAAAH"; qDebug() << model->rowCount() << model->columnCount(); view->show(); } @@ -429,7 +437,7 @@ static struct dive_site *get_dive_site_name_start_which_str(const QString& str) int i; for_each_dive_site(i,ds) { QString dsName(ds->name); - if (dsName.startsWith(str)) { + if (dsName.toLower().startsWith(str.toLower())) { return ds; } } @@ -439,11 +447,19 @@ static struct dive_site *get_dive_site_name_start_which_str(const QString& str) void DiveLocationLineEdit::setTemporaryDiveSiteName(const QString& s) { QModelIndex i0 = model->index(0, DiveLocationModel::NAME); + QModelIndex i1 = model->index(1, DiveLocationModel::NAME); model->setData(i0, text()); - struct dive_site *ds = get_dive_site_name_start_which_str(text()); - QModelIndex i1 = model->index(1, DiveLocationModel::NAME); - model->setData(i1, ds ? ds->name : INVALID_DIVE_SITE_NAME); + QString i1_name = INVALID_DIVE_SITE_NAME; + if (struct dive_site *ds = get_dive_site_name_start_which_str(text())) { + const QString orig_name = QString(ds->name).toLower(); + const QString new_name = text().toLower(); + if (new_name != orig_name) + i1_name = QString(ds->name); + } + + model->setData(i1, i1_name ); + proxy->invalidate(); } DiveLocationListView::DiveLocationListView(QWidget *parent) |