2013-11-23 00:39:10 +00:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-11-23 00:39:10 +00:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2013-11-23 00:39:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "share_config.h"
|
2015-03-14 04:19:39 +00:00
|
|
|
#include "ui_share_config.h"
|
2013-11-23 00:39:10 +00:00
|
|
|
|
2014-09-22 00:33:59 +01:00
|
|
|
#include <QStandardPaths>
|
|
|
|
|
2013-11-23 00:39:10 +00:00
|
|
|
#include <KUrlRequester>
|
2015-03-14 04:19:39 +00:00
|
|
|
#include <KPluginFactory>
|
2013-11-23 00:39:10 +00:00
|
|
|
|
|
|
|
K_PLUGIN_FACTORY(ShareConfigFactory, registerPlugin<ShareConfig>();)
|
|
|
|
|
2017-09-03 20:39:44 +01:00
|
|
|
ShareConfig::ShareConfig(QWidget* parent, const QVariantList& args)
|
2016-11-26 14:38:08 +00:00
|
|
|
: KdeConnectPluginKcm(parent, args, QStringLiteral("kdeconnect_share_config"))
|
2013-11-23 00:39:10 +00:00
|
|
|
, m_ui(new Ui::ShareConfigUi())
|
|
|
|
{
|
|
|
|
m_ui->setupUi(this);
|
2015-04-15 16:45:16 +01:00
|
|
|
// xgettext:no-c-format
|
2015-09-07 17:12:24 +01:00
|
|
|
m_ui->commentLabel->setTextFormat(Qt::RichText);
|
|
|
|
m_ui->commentLabel->setText(i18n("%1 in the path will be replaced with the specific device name."));
|
2013-11-23 00:39:10 +00:00
|
|
|
|
|
|
|
connect(m_ui->kurlrequester, SIGNAL(textChanged(QString)), this, SLOT(changed()));
|
|
|
|
}
|
|
|
|
|
|
|
|
ShareConfig::~ShareConfig()
|
|
|
|
{
|
|
|
|
delete m_ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShareConfig::defaults()
|
|
|
|
{
|
|
|
|
KCModule::defaults();
|
|
|
|
|
2017-10-03 20:47:28 +01:00
|
|
|
m_ui->kurlrequester->setText(QStandardPaths::writableLocation(QStandardPaths::DownloadLocation));
|
2013-11-23 00:39:10 +00:00
|
|
|
|
|
|
|
Q_EMIT changed(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShareConfig::load()
|
|
|
|
{
|
|
|
|
KCModule::load();
|
|
|
|
|
2017-10-03 20:47:28 +01:00
|
|
|
const auto standardPath = QStandardPaths::writableLocation(QStandardPaths::DownloadLocation);
|
2019-10-27 17:08:51 +00:00
|
|
|
m_ui->kurlrequester->setText(config()->getString(QStringLiteral("incoming_path"), standardPath));
|
2013-11-23 00:39:10 +00:00
|
|
|
|
|
|
|
Q_EMIT changed(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShareConfig::save()
|
|
|
|
{
|
2016-11-26 14:38:08 +00:00
|
|
|
config()->set(QStringLiteral("incoming_path"), m_ui->kurlrequester->text());
|
2013-11-23 00:39:10 +00:00
|
|
|
|
|
|
|
KCModule::save();
|
|
|
|
|
|
|
|
Q_EMIT changed(false);
|
|
|
|
}
|
|
|
|
|
2014-06-16 19:02:07 +01:00
|
|
|
#include "share_config.moc"
|