b54e739753
By having it as a simple member variable, we do not need to take care of deleting it manually
28 lines
689 B
C++
28 lines
689 B
C++
/**
|
|
* SPDX-FileCopyrightText: 2015 Holger Kaelberer <holger.k@elberer.de>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "kcmplugin/kdeconnectpluginkcm.h"
|
|
#include "ui_sendnotifications_config.h"
|
|
|
|
class NotifyingApplicationModel;
|
|
|
|
class SendNotificationsConfig : public KdeConnectPluginKcm
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SendNotificationsConfig(QObject *parent, const KPluginMetaData &data, const QVariantList &);
|
|
|
|
void save() override;
|
|
void load() override;
|
|
void defaults() override;
|
|
|
|
private:
|
|
void loadApplications();
|
|
Ui::SendNotificationsConfigUi m_ui;
|
|
NotifyingApplicationModel *appModel;
|
|
};
|