Merge lastest commit from homescreen-2017
[apps/homescreen.git] / homescreen / src / statusbarmodel.h
1 /*
2  * Copyright (C) 2016 The Qt Company Ltd.
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 STATUSBARMODEL_H
18 #define STATUSBARMODEL_H
19
20 #include <QtCore/QAbstractListModel>
21 #include <QtQml/QQmlContext>
22
23 class StatusBarModel : public QAbstractListModel
24 {
25     Q_OBJECT
26 public:
27     explicit StatusBarModel(QObject *parent = NULL);
28     ~StatusBarModel();
29
30     void init(QUrl &url, QQmlContext *context);
31     int rowCount(const QModelIndex &parent = QModelIndex()) const override;
32
33     QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
34     QHash<int, QByteArray> roleNames() const override;
35
36     // slots
37     void onWifiConnectedChanged(bool connected);
38     void onWifiEnabledChanged(bool enabled);
39     void onWifiStrengthChanged(int strength);
40
41 private:
42     class Private;
43     Private *d;
44     void setWifiStatus(bool connected, bool enabled, int strength);
45 };
46
47 #endif // STATUSBARMODEL_H