dbus: add signal support for removable media
[apps/mediaplayer.git] / app / dbus.h
1 /*
2  * Copyright (C) 2017 Konsulko Group
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef DBUS_H
18 #define DBUS_H
19
20 #include <QtCore/QDebug>
21 #include <QtCore/QObject>
22 #include <QtCore/QString>
23 #include <QtCore/QVariant>
24 #include <QtCore/QVariantList>
25 #include <QtDBus/QDBusPendingCall>
26 #include <QtDBus/QDBusPendingReply>
27 #include <QtDBus/QDBusInterface>
28 #include <QtDBus/QDBusConnection>
29
30 #include "lightmediascanner.h"
31
32 class DbusService : public QObject {
33     Q_OBJECT
34 public:
35     explicit DbusService(QObject *parent = 0);
36     bool enableLMS();
37
38 signals:
39     void processPlaylistUpdate(const QVariantList& mediaFiles);
40     void processPlaylistHide();
41
42 private slots:
43     void lmsUpdate(const QString&, const QVariantMap&, const QStringList&);
44 };
45
46 #endif