warehouse for ces2019
[apps/onscreenapp.git] / app / src / serverappmodel.h
1 /*
2  * Copyright (C) 2016 The Qt Company Ltd.
3  * Copyright (c) 2018 TOYOTA MOTOR CORPORATION
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #ifndef SERVERAPPMODEL_H
19 #define SERVERAPPMODEL_H
20
21 #include <QtCore/QAbstractListModel>
22 #include "appinfo.h"
23 #include "config.h"
24
25 class ServerAppModel : public QAbstractListModel {
26   Q_OBJECT
27
28  public:
29   enum ModelRole {
30     IconRole = Qt::DisplayRole,
31     NameRole = Qt::DecorationRole,
32     IdRole = Qt::UserRole,
33     VersionRole,
34     DescriptionRole,
35     AuthorRole,
36     ServerIdRole,
37     CategoryNameRole,
38     CreatedTimeRole,
39     StateRole,
40     StateTextRole,
41     ProgressRole
42   };
43   Q_ENUM(ModelRole)
44
45   explicit ServerAppModel(QObject* parent = nullptr);
46   ~ServerAppModel();
47
48   int rowCount(const QModelIndex& parent = QModelIndex()) const override;
49
50   QVariant data(const QModelIndex& index,
51                 int role = Qt::DisplayRole) const override;
52   QHash<int, QByteArray> roleNames() const override;
53   Q_INVOKABLE QString id(int index) const;
54   Q_INVOKABLE QString name(int index) const;
55   Q_INVOKABLE QString stateText(int index) const;
56   Q_INVOKABLE void install(int index);
57   Q_INVOKABLE int launch(const QString& application);
58
59   Q_INVOKABLE void getPrevPage(int pageIndex);
60   Q_INVOKABLE void getNextPage(int pageIndex);
61
62   Q_INVOKABLE void setNativeApplist(const QList<AppInfo>& applist);
63
64   void getAppPage(int pageIndex, int pageSize, bool isPrev = false);
65
66   void appChanged(const QString& info);
67
68  signals:
69   void requestCompleted(int appsize, int pagesize);
70
71  private:
72   void checkAppState();
73
74   QList<AppInfo> applist;
75   QList<AppInfo> nativeApplist;
76 };
77
78 #endif  // SERVERAPPMODEL_H