2 * Copyright (C) 2016 The Qt Company Ltd.
3 * Copyright (c) 2018 TOYOTA MOTOR CORPORATION
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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 #ifndef SERVERAPPMODEL_H
19 #define SERVERAPPMODEL_H
21 #include <QtCore/QAbstractListModel>
25 class ServerAppModel : public QAbstractListModel {
30 IconRole = Qt::DisplayRole,
31 NameRole = Qt::DecorationRole,
32 IdRole = Qt::UserRole,
45 explicit ServerAppModel(QObject* parent = nullptr);
48 int rowCount(const QModelIndex& parent = QModelIndex()) const override;
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);
59 Q_INVOKABLE void getPrevPage(int pageIndex);
60 Q_INVOKABLE void getNextPage(int pageIndex);
62 Q_INVOKABLE void setNativeApplist(const QList<AppInfo>& applist);
64 void getAppPage(int pageIndex, int pageSize, bool isPrev = false);
66 void appChanged(const QString& info);
69 void requestCompleted(int appsize, int pagesize);
74 QList<AppInfo> applist;
75 QList<AppInfo> nativeApplist;
78 #endif // SERVERAPPMODEL_H