/* * divelistview.cpp * * classes for the divelist of Subsurface * */ #include "divelistview.h" #include "models.h" #include "modeldelegates.h" #include #include #include #include #include #include #include DiveListView::DiveListView(QWidget *parent) : QTreeView(parent), mouseClickSelection(false) { setUniformRowHeights(true); setItemDelegateForColumn(TreeItemDT::RATING, new StarWidgetsDelegate()); QSortFilterProxyModel *model = new QSortFilterProxyModel(this); model->setSortRole(TreeItemDT::SORT_ROLE); setModel(model); setSortingEnabled(false); header()->setContextMenuPolicy(Qt::ActionsContextMenu); } void DiveListView::headerClicked(int i ) { QModelIndexList oldSelection = selectionModel()->selectedRows(); QList currentSelectedDives; Q_FOREACH(const QModelIndex& index , oldSelection){ struct dive *d = (struct dive *) index.data(TreeItemDT::DIVE_ROLE).value(); if (d){ currentSelectedDives.push_back(d); } } if (i == (int) TreeItemDT::NR){ reload(DiveTripModel::TREE); }else{ reload(DiveTripModel::LIST); } QModelIndexList newSelection; QItemSelection newSelection2; Q_FOREACH(struct dive *d, currentSelectedDives){ QModelIndexList match = model()->match(model()->index(0,0), TreeItemDT::DIVE_ROLE, QVariant::fromValue(d), 1, Qt::MatchRecursive); if (match.count() == 0){ qDebug() << "Well, this shouldn't happen."; }else{ newSelection << match.first(); } } } void DiveListView::reload(DiveTripModel::Layout layout) { header()->setClickable(true); connect(header(), SIGNAL(sectionPressed(int)), this, SLOT(headerClicked(int)), Qt::UniqueConnection); QSortFilterProxyModel *m = qobject_cast(model()); QAbstractItemModel *oldModel = m->sourceModel(); if (oldModel) oldModel->deleteLater(); DiveTripModel *tripModel = new DiveTripModel(this); tripModel->setLayout(layout); m->setSourceModel(tripModel); sortByColumn(0, Qt::DescendingOrder); QModelIndex firstDiveOrTrip = m->index(0,0); if (firstDiveOrTrip.isValid()) { if (m->index(0,0, firstDiveOrTrip).isValid()) setCurrentIndex(m->index(0,0, firstDiveOrTrip)); else setCurrentIndex(firstDiveOrTrip); } } void DiveListView::reloadHeaderActions() { // Populate the context menu of the headers that will show // the menu to show / hide columns. if (!header()->actions().size()) { QAction *visibleAction = new QAction("Visible:", header()); header()->addAction(visibleAction); QSettings s; s.beginGroup("DiveListColumnState"); for(int i = 0; i < model()->columnCount(); i++) { QString title = QString("show %1").arg(model()->headerData(i, Qt::Horizontal).toString()); QString settingName = QString("showColumn%1").arg(i); QAction *a = new QAction(title, header()); bool shown = s.value(settingName, true).toBool(); a->setCheckable(true); a->setChecked(shown); a->setProperty("index", i); a->setProperty("settingName", settingName); connect(a, SIGNAL(triggered(bool)), this, SLOT(toggleColumnVisibilityByIndex())); header()->addAction(a); setColumnHidden(i, !shown); } s.endGroup(); } } void DiveListView::toggleColumnVisibilityByIndex() { QAction *action = qobject_cast(sender()); if (!action) return; QSettings s; s.beginGroup("DiveListColumnState"); s.setValue(action->property("settingName").toString(), action->isChecked()); s.endGroup(); s.sync(); setColumnHidden(action->property("index").toInt(), !action->isChecked()); } void DiveListView::setSelection(const QRect& rect, QItemSelectionModel::SelectionFlags command) { if (mouseClickSelection) QTreeView::setSelection(rect, command); } void DiveListView::mousePressEvent(QMouseEvent* event) { mouseClickSelection = true; QTreeView::mousePressEvent(event); } void DiveListView::mouseReleaseEvent(QMouseEvent* event) { mouseClickSelection = false; QTreeView::mouseReleaseEvent(event); } void DiveListView::keyPressEvent(QKeyEvent* event) { if (event->modifiers()) mouseClickSelection = true; QTreeView::keyPressEvent(event); } void DiveListView::keyReleaseEvent(QKeyEvent* event) { mouseClickSelection = false; QWidget::keyReleaseEvent(event); } void DiveListView::currentChanged(const QModelIndex& current, const QModelIndex& previous) { if (!current.isValid()) return; const QAbstractItemModel *model = current.model(); int selectedDive = 0; struct dive *dive = (struct dive*) model->data(current, TreeItemDT::DIVE_ROLE).value(); if (!dive) { // it's a trip! select first child. dive = (struct dive*) model->data(current.child(0,0), TreeItemDT::DIVE_ROLE).value(); selectedDive = get_divenr(dive); } else { selectedDive = get_divenr(dive); } if (selectedDive == selected_dive) return; Q_EMIT currentDiveChanged(selectedDive); } void DiveListView::selectionChanged(const QItemSelection& selected, const QItemSelection& deselected) { QList parents; Q_FOREACH(const QModelIndex& index, deselected.indexes()) { const QAbstractItemModel *model = index.model(); struct dive *dive = (struct dive*) model->data(index, TreeItemDT::DIVE_ROLE).value(); if (!dive) { // it's a trip! if (model->rowCount(index)) { expand(index); // leave this - even if it looks like it shouldn't be here. looks like I've found a Qt bug. // the subselection is removed, but the painting is not. this cleans the area. } } else if (!parents.contains(index.parent())) { parents.push_back(index.parent()); } } Q_FOREACH(const QModelIndex& index, selected.indexes()) { const QAbstractItemModel *model = index.model(); struct dive *dive = (struct dive*) model->data(index, TreeItemDT::DIVE_ROLE).value(); if (!dive) { // it's a trip! if (model->rowCount(index)) { QItemSelection selection; selection.select(index.child(0,0), index.child(model->rowCount(index) -1 , 0)); selectionModel()->select(selection, QItemSelectionModel::Select | QItemSelectionModel::Rows); selectionModel()->setCurrentIndex(index, QItemSelectionModel::Select | QItemSelectionModel::NoUpdate); if (!isExpanded(index)) { expand(index); } } } else if (!parents.contains(index.parent())) { parents.push_back(index.parent()); } } Q_FOREACH(const QModelIndex& index, parents) expand(index); }