summaryrefslogtreecommitdiffstats
path: root/qt-ui/mainwindow.cpp
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2013-05-16 16:00:33 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-05-16 12:23:38 -0700
commitd39b1aedcd9dedecfca54c91661a81406b80c6ec (patch)
tree722d67b585e200cd298058308563aeca78c85a29 /qt-ui/mainwindow.cpp
parente3cb36498d97750a9a961be21f5adb9073fa6863 (diff)
downloadsubsurface-d39b1aedcd9dedecfca54c91661a81406b80c6ec.tar.gz
Fix loading a second dive, after the first file was loaded.
This patch fixes loading a second dive-file after the first one had been loaded. it simply clears some information and makes sure that the current selected dive is invalid when the file closes. I also did a bit of code cleanup on this one to make things simpler in the future. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.cpp')
-rw-r--r--qt-ui/mainwindow.cpp33
1 files changed, 7 insertions, 26 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp
index d676549d1..e555473ca 100644
--- a/qt-ui/mainwindow.cpp
+++ b/qt-ui/mainwindow.cpp
@@ -11,7 +11,6 @@
#include <QMessageBox>
#include <QtDebug>
#include <QDateTime>
-#include <QSortFilterProxyModel>
#include <QSettings>
#include <QCloseEvent>
#include <QApplication>
@@ -27,24 +26,14 @@
#include "modeldelegates.h"
#include "models.h"
-MainWindow::MainWindow() : ui(new Ui::MainWindow()),
- model(new DiveTripModel(this)),
- sortModel(new QSortFilterProxyModel())
+MainWindow::MainWindow() : ui(new Ui::MainWindow())
{
ui->setupUi(this);
readSettings();
- sortModel->setSourceModel(model);
- ui->ListWidget->setModel(sortModel);
setWindowIcon(QIcon(":subsurface-icon"));
connect(ui->ListWidget, SIGNAL(currentDiveChanged(int)), this, SLOT(current_dive_changed(int)));
ui->ProfileWidget->setFocusProxy(ui->ListWidget);
-
- QModelIndex firstDiveOrTrip = sortModel->index(0,0);
- if (sortModel->index(0,0, firstDiveOrTrip).isValid())
- ui->ListWidget->setCurrentIndex(sortModel->index(0,0, firstDiveOrTrip));
- else
- ui->ListWidget->setCurrentIndex(firstDiveOrTrip);
-
+ ui->ListWidget->reload();
ui->ListWidget->setFocus();
}
@@ -89,16 +78,7 @@ void MainWindow::on_actionOpen_triggered()
ui->InfoWidget->reload();
- model->deleteLater();
- model = new DiveTripModel(this);
- sortModel->setSourceModel(model);
- ui->ListWidget->sortByColumn(0, Qt::DescendingOrder);
-
- QModelIndex firstDiveOrTrip = sortModel->index(0,0);
- if (sortModel->index(0,0, firstDiveOrTrip).isValid())
- ui->ListWidget->setCurrentIndex(sortModel->index(0,0, firstDiveOrTrip));
- else
- ui->ListWidget->setCurrentIndex(firstDiveOrTrip);
+ ui->ListWidget->reload();
ui->ListWidget->setFocus();
}
@@ -120,8 +100,6 @@ void MainWindow::on_actionClose_triggered()
while (dive_table.nr)
delete_single_dive(0);
- mark_divelist_changed(FALSE);
-
/* clear the selection and the statistics */
selected_dive = -1;
@@ -131,6 +109,8 @@ void MainWindow::on_actionClose_triggered()
ui->InfoWidget->clearStats();
ui->InfoWidget->clearInfo();
ui->InfoWidget->clearEquipment();
+ ui->ProfileWidget->clear();
+ ui->ListWidget->reload();
clear_events();
#if USE_GTK_UI
@@ -349,7 +329,8 @@ void MainWindow::readSettings()
ui->ListWidget->resizeColumnToContents(i);
}
ui->ListWidget->collapseAll();
- ui->ListWidget->scrollTo(sortModel->index(0,0), QAbstractItemView::PositionAtCenter);
+ ui->ListWidget->scrollTo(ui->ListWidget->model()->index(0,0), QAbstractItemView::PositionAtCenter);
+
settings.endGroup();
settings.beginGroup("Units");
GET_UNIT(v, "feet", length, units::METERS, units::FEET);