Dive d/l selection UI: allow clicking anywhere in a row

It seemed silly to only be allowed to click the tiny checkbox.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-01-08 11:39:34 -08:00
parent d16bff13bb
commit e6b5a00e35
2 changed files with 12 additions and 0 deletions

View file

@ -61,6 +61,7 @@ DownloadFromDCWidget::DownloadFromDCWidget(QWidget *parent, Qt::WindowFlags f) :
ui.downloadedView->setColumnWidth(0, startingWidth * 20);
ui.downloadedView->setColumnWidth(1, startingWidth * 15);
ui.downloadedView->setColumnWidth(2, startingWidth * 10);
connect(ui.downloadedView, SIGNAL(clicked(QModelIndex)), diveImportedModel, SLOT(changeSelected(QModelIndex)));
QRect mainGeometry = parent->geometry();
int width = mainGeometry.width() * 0.8;
int height = mainGeometry.height() * 0.8;
@ -591,6 +592,12 @@ bool DiveImportedModel::setData(const QModelIndex &index, const QVariant &value,
return true;
}
void DiveImportedModel::changeSelected(QModelIndex index)
{
checkStates[index.row()] = !checkStates[index.row()];
dataChanged(index, index, QVector<int>() << Qt::CheckStateRole);
}
Qt::ItemFlags DiveImportedModel::flags(const QModelIndex &index) const
{
if (index.column() != 0)

View file

@ -38,6 +38,11 @@ public:
void setImportedDivesIndexes(int first, int last);
Qt::ItemFlags flags(const QModelIndex &index) const;
void removeUnused();
public
slots:
void changeSelected(QModelIndex index);
private:
int firstIndex;
int lastIndex;