Kirigami-addons

soundspickermodel.cpp
1// SPDX-FileCopyrightText: 2021 Han Young <hanyoung@protonmail.com>
2// SPDX-License-Identifier: LGPL-2.0-or-later
3
4#include "soundspickermodel.h"
5
6#include <vector>
7
8#include <QDirIterator>
9#include <QStandardPaths>
10
11class SoundsPickerModel::Private
12{
13public:
14 QStringList defaultAudio;
15 std::vector<QString> soundsVec;
16 bool notification = false;
17 QString theme = QStringLiteral("plasma-mobile");
18};
19
20SoundsPickerModel::SoundsPickerModel(QObject *parent)
21 : QAbstractListModel(parent)
22 , d(std::make_unique<Private>())
23{
24 loadFiles();
25}
26
27void SoundsPickerModel::loadFiles()
28{
29 d->soundsVec.clear();
31 const QString path = QStringLiteral("/sounds/") + d->theme + QStringLiteral("/stereo/");
32
33 for (const auto &directory : locations) {
34 if (QDir(directory + path).exists()) {
35 QString subPath = directory + path;
36 if (!d->notification && QDir(subPath + QStringLiteral("ringtone")).exists()) {
37 subPath += QStringLiteral("ringtone");
38 } else if (d->notification && QDir(subPath + QStringLiteral("notification")).exists()) {
39 subPath += QStringLiteral("notification");
40 }
41
42 QDirIterator it(subPath, QDir::Files, QDirIterator::Subdirectories);
43 while (it.hasNext()) {
44 const QString fileName = it.next();
45 if (fileName.endsWith(QLatin1String(".license"))) {
46 continue;
47 }
48 d->soundsVec.push_back(fileName);
49 }
50 }
51 }
52}
53
54SoundsPickerModel::~SoundsPickerModel() = default;
55
56QHash<int, QByteArray> SoundsPickerModel::roleNames() const
57{
58 return {
59 {Roles::NameRole, QByteArrayLiteral("ringtoneName")},
60 {Roles::UrlRole, QByteArrayLiteral("sourceUrl")}
61 };
62}
63
64bool SoundsPickerModel::notification() const
65{
66 return d->notification;
67}
68
69void SoundsPickerModel::setNotification(bool notification)
70{
71 if (d->notification == notification) {
72 return;
73 }
74 d->notification = notification;
75
76 bool needReset = false;
77 QString path = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QStringLiteral("/") + d->theme + QStringLiteral("/stereo/");
78 if (!d->notification && QDir(path + QStringLiteral("ringtone")).exists()) {
79 needReset = true;
80 } else if (d->notification && QDir(path + QStringLiteral("notification")).exists()) {
81 needReset = true;
82 }
83
84 if (needReset) {
86 loadFiles();
88 rearrangeRingtoneOrder();
89 }
90}
91
92QString SoundsPickerModel::initialSourceUrl(int index)
93{
94 if (index >= 0 && index < (int)d->soundsVec.size()) {
95 return d->soundsVec.at(index);
96 }
97 return {};
98}
99
100QVariant SoundsPickerModel::data(const QModelIndex &index, int role) const
101{
102 if (!index.isValid() || index.row() < 0 || index.row() >= (int)d->soundsVec.size()) {
103 return {};
104 }
105
106 if (role == NameRole) {
107 auto ret = d->soundsVec.at(index.row());
108 int suffixPos = ret.lastIndexOf(QLatin1Char('.'));
109 if (suffixPos > 0) {
110 ret.truncate(suffixPos);
111 }
112 int pathPos = ret.lastIndexOf(QLatin1Char('/'));
113 if (pathPos >= 0) {
114 ret.remove(0, pathPos + 1);
115 }
116 return ret;
117 }
118 return d->soundsVec.at(index.row());
119}
120int SoundsPickerModel::rowCount(const QModelIndex& parent) const {
121 Q_UNUSED(parent)
122 return d->soundsVec.size();
123}
124
125const QStringList &SoundsPickerModel::defaultAudio() const
126{
127 return d->defaultAudio;
128}
129
130void SoundsPickerModel::setDefaultAudio(const QStringList &audio)
131{
132 d->defaultAudio = audio;
133 rearrangeRingtoneOrder();
134}
135
136const QString &SoundsPickerModel::theme() const
137{
138 return d->theme;
139}
140
141void SoundsPickerModel::setTheme(const QString &theme)
142{
143 if (d->theme == theme) {
144 return;
145 }
146 d->theme = theme;
147
149 loadFiles();
151 rearrangeRingtoneOrder();
152}
153
154void SoundsPickerModel::rearrangeRingtoneOrder()
155{
156 auto i {0};
157 for (int j = 0; j < (int)d->soundsVec.size(); j++) {
158 if (d->defaultAudio.contains(data(index(j), NameRole).toString())) {
159 std::swap(d->soundsVec[j], d->soundsVec[i]);
162 i++;
163 }
164 }
165}
166
167#include "moc_soundspickermodel.cpp"
char * toString(const EngineQuery &query)
QString path(const QString &relativePath)
void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight, const QList< int > &roles)
virtual QModelIndex index(int row, int column, const QModelIndex &parent) const const=0
virtual QModelIndex parent(const QModelIndex &index) const const=0
virtual QModelIndex index(int row, int column, const QModelIndex &parent) const const override
Q_EMITQ_EMIT
QStringList standardLocations(StandardLocation type)
QString writableLocation(StandardLocation type)
bool endsWith(QChar c, Qt::CaseSensitivity cs) const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 4 2025 11:54:25 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.