400c800deb
Include a page that allows (de)selecting and configuring plugins This is one of the last missing pieces for feature parity with the KCM.
90 lines
2.4 KiB
C++
90 lines
2.4 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 <QStandardPaths>
|
|
#include <QMediaPlayer>
|
|
|
|
|
|
K_PLUGIN_FACTORY(FindThisDeviceConfigFactory, registerPlugin<FindThisDeviceConfig>();)
|
|
|
|
|
|
FindThisDeviceConfig::FindThisDeviceConfig(QWidget* parent, const QVariantList& args)
|
|
: KdeConnectPluginKcm(parent, args, QStringLiteral("kdeconnect_findthisdevice_config"))
|
|
, m_ui(new Ui::FindThisDeviceConfigUi())
|
|
{
|
|
m_ui->setupUi(this);
|
|
|
|
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, &FindThisDeviceConfig::playSound);
|
|
connect(m_ui->soundFileRequester, &KUrlRequester::textChanged,
|
|
this, &FindThisDeviceConfig::markAsChanged);
|
|
}
|
|
|
|
FindThisDeviceConfig::~FindThisDeviceConfig()
|
|
{
|
|
delete m_ui;
|
|
}
|
|
|
|
|
|
void FindThisDeviceConfig::defaults()
|
|
{
|
|
KCModule::defaults();
|
|
|
|
m_ui->soundFileRequester->setText(defaultSound());
|
|
|
|
Q_EMIT changed(true);
|
|
}
|
|
|
|
void FindThisDeviceConfig::load()
|
|
{
|
|
KCModule::load();
|
|
|
|
const QString ringTone = config()->getString(QStringLiteral("ringtone"), defaultSound());
|
|
m_ui->soundFileRequester->setText(ringTone);
|
|
|
|
Q_EMIT changed(false);
|
|
}
|
|
|
|
void FindThisDeviceConfig::save()
|
|
{
|
|
config()->set(QStringLiteral("ringtone"), m_ui->soundFileRequester->text());
|
|
|
|
KCModule::save();
|
|
|
|
Q_EMIT changed(false);
|
|
}
|
|
|
|
void FindThisDeviceConfig::playSound()
|
|
{
|
|
const QString soundFile = m_ui->soundFileRequester->text();
|
|
|
|
QUrl soundURL = QUrl(soundFile);
|
|
QMediaPlayer* player = new QMediaPlayer;
|
|
player->setAudioRole(QAudio::Role(QAudio::NotificationRole));
|
|
player->setMedia(soundURL);
|
|
player->setVolume(100);
|
|
player->play();
|
|
connect(player, &QMediaPlayer::stateChanged, player, &QObject::deleteLater);
|
|
|
|
}
|
|
|
|
|
|
#include "findthisdevice_config.moc"
|