4#include "soundspickermodel.h"
9#include <QStandardPaths>
11class SoundsPickerModel::Private
14 QStringList defaultAudio;
15 std::vector<QString> soundsVec;
16 bool notification =
false;
17 QString theme = QStringLiteral(
"plasma-mobile");
20SoundsPickerModel::SoundsPickerModel(
QObject *parent)
22 , d(std::make_unique<Private>())
27void SoundsPickerModel::loadFiles()
31 const QString
path = QStringLiteral(
"/sounds/") + d->theme + QStringLiteral(
"/stereo/");
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");
43 while (it.hasNext()) {
44 const QString fileName = it.next();
45 if (fileName.
endsWith(QLatin1String(
".license"))) {
48 d->soundsVec.push_back(fileName);
54SoundsPickerModel::~SoundsPickerModel() =
default;
59 {Roles::NameRole, QByteArrayLiteral(
"ringtoneName")},
60 {Roles::UrlRole, QByteArrayLiteral(
"sourceUrl")}
64bool SoundsPickerModel::notification()
const
66 return d->notification;
69void SoundsPickerModel::setNotification(
bool notification)
71 if (d->notification == notification) {
74 d->notification = notification;
76 bool needReset =
false;
78 if (!d->notification && QDir(path + QStringLiteral(
"ringtone")).exists()) {
80 }
else if (d->notification && QDir(path + QStringLiteral(
"notification")).exists()) {
88 rearrangeRingtoneOrder();
92QString SoundsPickerModel::initialSourceUrl(
int index)
94 if (
index >= 0 &&
index < (
int)d->soundsVec.size()) {
95 return d->soundsVec.at(
index);
102 if (!
index.isValid() ||
index.row() < 0 ||
index.row() >= (
int)d->soundsVec.size()) {
106 if (role == NameRole) {
107 auto ret = d->soundsVec.at(
index.row());
108 int suffixPos = ret.lastIndexOf(QLatin1Char(
'.'));
110 ret.truncate(suffixPos);
112 int pathPos = ret.lastIndexOf(QLatin1Char(
'/'));
114 ret.remove(0, pathPos + 1);
118 return d->soundsVec.at(
index.row());
120int SoundsPickerModel::rowCount(
const QModelIndex& parent)
const {
122 return d->soundsVec.size();
125const QStringList &SoundsPickerModel::defaultAudio()
const
127 return d->defaultAudio;
130void SoundsPickerModel::setDefaultAudio(
const QStringList &audio)
132 d->defaultAudio = audio;
133 rearrangeRingtoneOrder();
136const QString &SoundsPickerModel::theme()
const
141void SoundsPickerModel::setTheme(
const QString &theme)
143 if (d->theme == theme) {
151 rearrangeRingtoneOrder();
154void SoundsPickerModel::rearrangeRingtoneOrder()
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]);
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
QStringList standardLocations(StandardLocation type)
QString writableLocation(StandardLocation type)
bool endsWith(QChar c, Qt::CaseSensitivity cs) const const