From a33381557bd716f21a246f40d6f8c97d8d69bbfa Mon Sep 17 00:00:00 2001 From: Gary Wang Date: Sun, 16 Feb 2025 00:50:14 +0800 Subject: [PATCH] chore: sync playlistmanager changes from other project --- app/playlistmanager.cpp | 16 +++++++--------- app/playlistmanager.h | 4 ++-- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/app/playlistmanager.cpp b/app/playlistmanager.cpp index c9aa1e6..42cbf3e 100644 --- a/app/playlistmanager.cpp +++ b/app/playlistmanager.cpp @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2024 Gary Wang +// SPDX-FileCopyrightText: 2025 Gary Wang // // SPDX-License-Identifier: MIT @@ -16,9 +16,7 @@ PlaylistModel::PlaylistModel(QObject *parent) } PlaylistModel::~PlaylistModel() -{ - -} += default; void PlaylistModel::setPlaylist(const QList &urls) { @@ -29,7 +27,7 @@ void PlaylistModel::setPlaylist(const QList &urls) QModelIndex PlaylistModel::loadPlaylist(const QList & urls) { - if (urls.isEmpty()) return QModelIndex(); + if (urls.isEmpty()) return {}; if (urls.count() == 1) { return loadPlaylist(urls.constFirst()); } else { @@ -128,7 +126,7 @@ int PlaylistModel::rowCount(const QModelIndex &parent) const QVariant PlaylistModel::data(const QModelIndex &index, int role) const { - if (!index.isValid()) return QVariant(); + if (!index.isValid()) return {}; switch (role) { case Qt::DisplayRole: @@ -137,7 +135,7 @@ QVariant PlaylistModel::data(const QModelIndex &index, int role) const return m_playlist.at(index.row()); } - return QVariant(); + return {}; } PlaylistManager::PlaylistManager(QObject *parent) @@ -196,7 +194,7 @@ int PlaylistManager::totalCount() const QModelIndex PlaylistManager::previousIndex() const { int count = totalCount(); - if (count == 0) return QModelIndex(); + if (count == 0) return {}; return m_model.index(m_currentIndex - 1 < 0 ? count - 1 : m_currentIndex - 1); } @@ -204,7 +202,7 @@ QModelIndex PlaylistManager::previousIndex() const QModelIndex PlaylistManager::nextIndex() const { int count = totalCount(); - if (count == 0) return QModelIndex(); + if (count == 0) return {}; return m_model.index(m_currentIndex + 1 == count ? 0 : m_currentIndex + 1); } diff --git a/app/playlistmanager.h b/app/playlistmanager.h index 73c7549..ae4640a 100644 --- a/app/playlistmanager.h +++ b/app/playlistmanager.h @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2024 Gary Wang +// SPDX-FileCopyrightText: 2025 Gary Wang // // SPDX-License-Identifier: MIT @@ -18,7 +18,7 @@ public: Q_PROPERTY(QStringList autoLoadFilterSuffixes MEMBER m_autoLoadSuffixes NOTIFY autoLoadFilterSuffixesChanged) explicit PlaylistModel(QObject *parent = nullptr); - ~PlaylistModel(); + ~PlaylistModel() override; void setPlaylist(const QList & urls); QModelIndex loadPlaylist(const QList & urls);