Detach launcher application from HomeScreen
[apps/launcher.git] / launcher / src / appinfo.h
1 /*
2  * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
3  * Copyright (C) 2016 The Qt Company Ltd.
4  * Copyright (c) 2018 TOYOTA MOTOR CORPORATION
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
19 #ifndef APPINFO_H
20 #define APPINFO_H
21
22 #include <QtCore/QSharedDataPointer>
23 #include <QtDBus/QDBusArgument>
24
25 class AppInfo
26 {
27     Q_GADGET
28     Q_PROPERTY(QString id READ id)
29     Q_PROPERTY(QString version READ version)
30     Q_PROPERTY(int width READ width)
31     Q_PROPERTY(int height READ height)
32     Q_PROPERTY(QString name READ name)
33     Q_PROPERTY(QString description READ description)
34     Q_PROPERTY(QString shortname READ shortname)
35     Q_PROPERTY(QString author READ author)
36     Q_PROPERTY(QString iconPath READ iconPath)
37 public:
38     AppInfo();
39     AppInfo(const QString &icon, const QString &name, const QString &id);
40     AppInfo(const AppInfo &other);
41     virtual ~AppInfo();
42     AppInfo &operator =(const AppInfo &other);
43     void swap(AppInfo &other) { qSwap(d, other.d); }
44
45     QString id() const;
46     QString version() const;
47     int width() const;
48     int height() const;
49     QString name() const;
50     QString description() const;
51     QString shortname() const;
52     QString author() const;
53     QString iconPath() const;
54
55     void read(const QJsonObject &json);
56
57     friend QDBusArgument &operator <<(QDBusArgument &argument, const AppInfo &appInfo);
58     friend const QDBusArgument &operator >>(const QDBusArgument &argument, AppInfo &appInfo);
59
60 private:
61     class Private;
62     QSharedDataPointer<Private> d;
63 };
64
65 Q_DECLARE_SHARED(AppInfo)
66 Q_DECLARE_METATYPE(AppInfo)
67 Q_DECLARE_METATYPE(QList<AppInfo>)
68
69 #endif // APPINFO_H