From 903cee065bef99ba6504ef414f0a503f85fc4634 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 24 Feb 2023 15:38:06 -0600 Subject: [PATCH] removing junk --- src/cpp/songsqlmodel.cpp | 74 ---------------------------------------- 1 file changed, 74 deletions(-) diff --git a/src/cpp/songsqlmodel.cpp b/src/cpp/songsqlmodel.cpp index c729b89..b8284d2 100644 --- a/src/cpp/songsqlmodel.cpp +++ b/src/cpp/songsqlmodel.cpp @@ -728,32 +728,6 @@ SongSqlModel *SongProxyModel::songModel() { return m_songModel; } -// QVariant SongProxyModel::data(const QModelIndex &index, int role) const { -// if (role == Qt::UserRole + 13) -// return selected(index.row()); -// return m_songModel->data(index, role); -// } - -// QHash SongProxyModel::roleNames() const -// { -// QHash names; -// names[Qt::UserRole] = "id"; -// names[Qt::UserRole + 1] = "title"; -// names[Qt::UserRole + 2] = "lyrics"; -// names[Qt::UserRole + 3] = "author"; -// names[Qt::UserRole + 4] = "ccli"; -// names[Qt::UserRole + 5] = "audio"; -// names[Qt::UserRole + 6] = "vorder"; -// names[Qt::UserRole + 7] = "background"; -// names[Qt::UserRole + 8] = "backgroundType"; -// names[Qt::UserRole + 9] = "horizontalTextAlignment"; -// names[Qt::UserRole + 10] = "verticalTextAlignment"; -// names[Qt::UserRole + 11] = "font"; -// names[Qt::UserRole + 12] = "fontSize"; -// names[Qt::UserRole + 13] = "selected"; -// return names; -// } - QModelIndex SongProxyModel::idx(int row) { QModelIndex idx = index(row, 0); // qDebug() << idx; @@ -776,51 +750,3 @@ void SongProxyModel::deleteSong(const int &row) { auto model = qobject_cast(sourceModel()); model->deleteSong(row); } - -// bool SongProxyModel::selected(const int &row) { -// QModelIndex idx = index(row, 0); -// return m_selectionModel->isSelected(idx); -// } - -// bool SongProxyModel::setSelected(const int &row, const bool &select) { -// if (selected(row) == select) -// return false; -// QModelIndex idx = index(row, 0); -// if (select) -// m_selectionModel->select(idx, QItemSelectionModel::SelectCurrent); -// else -// m_selectionModel->select(idx, QItemSelectionModel::Deselect); -// emit selectedChanged(select); -// return true; -// } - -// void SongProxyModel::select(int id) { -// QModelIndex idx = index(id, 0); -// //check to make sure this item isn't already selected -// if (m_selectionModel->isSelected(idx)) -// return; - -// // deselect all items -// QModelIndex first = index(0, 0); -// QModelIndex last = index(rowCount() - 1, 0); -// QItemSelection all(first, last); -// m_selectionModel->select(all, QItemSelectionModel::Deselect); - -// m_selectionModel->select(idx, QItemSelectionModel::SelectCurrent); -// emit selectedChanged(true); -// } - -// void SongProxyModel::selectSongs(int row) { -// auto model = qobject_cast(m_selectionModel); -// // deselect all items -// QModelIndex first = index(0, 0); -// QModelIndex last = index(rowCount() - 1, 0); -// QItemSelection all(first, last); -// m_selectionModel->select(all, QItemSelectionModel::Deselect); - -// emit selectedChanged(true); -// } - -// bool SongProxyModel::hasSelection() { -// return m_selectionModel->hasSelection(); -// }