Merge 'eel' into 'master'
[apps/mixer.git] / app / mixer.h
1 /*
2  * Copyright (C) 2016 The Qt Company Ltd.
3  * Copyright (C) 2016,2017 Konsulko Group
4  * Copyright (C) 2018 IoT.bzh
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18 #pragma once
19
20 #include <QObject>
21 #include <QString>
22 #include <QSharedPointer>
23 #include <QStringList>
24 #include "qafbwebsocketclient.h"
25 //#include "volumeslider.h"
26
27 class Mixer
28     : public QObject
29 {
30     Q_OBJECT
31     Q_PROPERTY(QStringList roles READ roles NOTIFY rolesChanged)
32
33 private:
34
35 public:
36     explicit Mixer(QObject* parent = nullptr);
37     Mixer(const Mixer&) = delete;
38
39     Q_INVOKABLE void open(const QUrl& url);
40     Q_INVOKABLE QStringList roles() const;
41     Q_INVOKABLE void setVolume(const QString& name, int value);
42     Q_INVOKABLE void getVolume(const QString& name);
43
44 signals:
45     void rolesChanged();
46     void volumeChanged(const QString& name, int value);
47
48 private slots:
49     void onClientConnected();
50
51 private:
52     QStringList m_roles;
53     QAfbWebsocketClient m_client;
54 };