2e67f95017
The rationale is explained in https://planet.kde.org/friedrich-kossebau-2023-06-28-include-also-moc-files-of-headers/ In case of KDEConnect, it impressively speeds up compilation. Before it took 390 seconds on a clean build and with this change it took 330 seconds. This is due to the mocs_compilation having to include the header files and thus all their headers. Due to the lots of small plugins we have, this means that the same headers must be compiled plenty of times. When we include the moc files directly in the C++ file, they are already available.
91 lines
2.6 KiB
C++
91 lines
2.6 KiB
C++
/**
|
|
* SPDX-FileCopyrightText: 2018 Friedrich W. H. Kossebau <kossebau@kde.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#include "findthisdevice_config.h"
|
|
#include "findthisdeviceplugin.h"
|
|
|
|
#include "ui_findthisdevice_config.h"
|
|
// KF
|
|
#include <KLocalizedString>
|
|
#include <KPluginFactory>
|
|
// Qt
|
|
#include <QMediaPlayer>
|
|
#include <QStandardPaths>
|
|
|
|
#if QT_VERSION_MAJOR == 6
|
|
#include <QAudioOutput>
|
|
#endif
|
|
|
|
K_PLUGIN_CLASS(FindThisDeviceConfig)
|
|
|
|
FindThisDeviceConfig::FindThisDeviceConfig(QObject *parent, const KPluginMetaData &data, const QVariantList &args)
|
|
: KdeConnectPluginKcm(parent, data, args)
|
|
, m_ui(new Ui::FindThisDeviceConfigUi())
|
|
{
|
|
m_ui->setupUi(widget());
|
|
|
|
const QStringList soundDirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("sounds"), QStandardPaths::LocateDirectory);
|
|
if (!soundDirs.isEmpty()) {
|
|
m_ui->soundFileRequester->setStartDir(QUrl::fromLocalFile(soundDirs.last()));
|
|
}
|
|
|
|
connect(m_ui->playSoundButton, &QToolButton::clicked, this, [this]() {
|
|
if (const QUrl soundUrl = m_ui->soundFileRequester->url(); soundUrl.isValid()) {
|
|
playSound(soundUrl);
|
|
}
|
|
});
|
|
connect(m_ui->soundFileRequester, &KUrlRequester::textChanged, this, &FindThisDeviceConfig::markAsChanged);
|
|
}
|
|
|
|
FindThisDeviceConfig::~FindThisDeviceConfig()
|
|
{
|
|
delete m_ui;
|
|
}
|
|
|
|
void FindThisDeviceConfig::defaults()
|
|
{
|
|
KCModule::defaults();
|
|
|
|
m_ui->soundFileRequester->setText(defaultSound());
|
|
markAsChanged();
|
|
}
|
|
|
|
void FindThisDeviceConfig::load()
|
|
{
|
|
KCModule::load();
|
|
|
|
const QString ringTone = config()->getString(QStringLiteral("ringtone"), defaultSound());
|
|
m_ui->soundFileRequester->setText(ringTone);
|
|
}
|
|
|
|
void FindThisDeviceConfig::save()
|
|
{
|
|
config()->set(QStringLiteral("ringtone"), m_ui->soundFileRequester->text());
|
|
|
|
KCModule::save();
|
|
}
|
|
|
|
void FindThisDeviceConfig::playSound(const QUrl &soundUrl)
|
|
{
|
|
QMediaPlayer *player = new QMediaPlayer;
|
|
#if QT_VERSION_MAJOR < 6
|
|
player->setAudioRole(QAudio::Role(QAudio::NotificationRole));
|
|
player->setMedia(soundUrl);
|
|
player->setVolume(100);
|
|
player->play();
|
|
connect(player, &QMediaPlayer::stateChanged, player, &QObject::deleteLater);
|
|
#else
|
|
auto audioOutput = new QAudioOutput();
|
|
audioOutput->setVolume(100);
|
|
player->setSource(soundUrl);
|
|
player->setAudioOutput(audioOutput);
|
|
player->play();
|
|
connect(player, &QMediaPlayer::playingChanged, player, &QObject::deleteLater);
|
|
#endif
|
|
}
|
|
|
|
#include "findthisdevice_config.moc"
|
|
#include "moc_findthisdevice_config.cpp"
|