Modify graphic role
[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 <QMap>
25 #include "qafbwebsocketclient.h"
26 //#include "volumeslider.h"
27
28 class Mixer
29     : public QObject
30 {
31     Q_OBJECT
32     Q_PROPERTY(QStringList roles READ roles NOTIFY rolesChanged)
33
34 private:
35     QMap<QString, int> volumes_;
36
37 public:
38     explicit Mixer(QObject* parent = nullptr);
39     Mixer(const Mixer&) = delete;
40
41     Q_INVOKABLE void open(const QUrl& url);
42     Q_INVOKABLE QStringList roles() const;
43     Q_INVOKABLE void setVolume(const QString& name, int value);
44     Q_INVOKABLE void getVolume(const QString& name);
45
46 signals:
47     void rolesChanged();
48     void volumeChanged(const QString& name, int value);
49
50 private slots:
51     void onClientConnected();
52
53 private:
54     QStringList m_roles;
55     QAfbWebsocketClient m_client;
56 };