You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
731 B
33 lines
731 B
/* |
|
SPDX-FileCopyrightText: 2008 Alain Boyer <alainboyer@gmail.com> |
|
SPDX-FileCopyrightText: 2009 Matthieu Gallien <matthieu_gallien@yahoo.fr> |
|
|
|
SPDX-License-Identifier: LGPL-2.0-only |
|
*/ |
|
|
|
#pragma once |
|
|
|
// own |
|
#include "statusnotifieritemsource.h" |
|
|
|
// plasma |
|
#include <Plasma/Service> |
|
#include <Plasma/ServiceJob> |
|
|
|
/** |
|
* StatusNotifierItem Service |
|
*/ |
|
class StatusNotifierItemService : public Plasma::Service |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit StatusNotifierItemService(StatusNotifierItemSource *source); |
|
~StatusNotifierItemService() override; |
|
|
|
protected: |
|
Plasma::ServiceJob *createJob(const QString &operation, QMap<QString, QVariant> ¶meters) override; |
|
|
|
private: |
|
StatusNotifierItemSource *m_source; |
|
};
|
|
|