2013-11-22 21:49:40 +00:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-11-22 21:49:40 +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-22 21:49:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PAUSEMUSIC_CONFIG_H
|
|
|
|
#define PAUSEMUSIC_CONFIG_H
|
|
|
|
|
2015-03-14 04:19:39 +00:00
|
|
|
#include "kcmplugin/kdeconnectpluginkcm.h"
|
2013-11-22 21:49:40 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class PauseMusicConfigUi;
|
|
|
|
}
|
|
|
|
|
|
|
|
class PauseMusicConfig
|
2015-03-14 04:19:39 +00:00
|
|
|
: public KdeConnectPluginKcm
|
2013-11-22 21:49:40 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2017-09-03 20:39:44 +01:00
|
|
|
PauseMusicConfig(QWidget* parent, const QVariantList&);
|
2016-06-20 08:05:02 +01:00
|
|
|
~PauseMusicConfig() override;
|
2013-11-22 21:49:40 +00:00
|
|
|
|
|
|
|
public Q_SLOTS:
|
2016-06-20 08:05:02 +01:00
|
|
|
void save() override;
|
|
|
|
void load() override;
|
|
|
|
void defaults() override;
|
2013-11-22 21:49:40 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::PauseMusicConfigUi* m_ui;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|