1d1953d78dd8c2512d2be6d7d2ec92bc1abac81e
[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 <QObject>
23 #include <QtCore/QSharedDataPointer>
24
25 class AppInfo
26 {
27     Q_GADGET
28     Q_PROPERTY(QString id READ id)
29     Q_PROPERTY(QString name READ name)
30     Q_PROPERTY(QString iconPath READ iconPath)
31 public:
32     AppInfo();
33     AppInfo(const QString &icon, const QString &name, const QString &id);
34     AppInfo(const AppInfo &other);
35     virtual ~AppInfo();
36     AppInfo &operator =(const AppInfo &other);
37     void swap(AppInfo &other) { qSwap(d, other.d); }
38
39     QString id() const;
40     QString name() const;
41     QString iconPath() const;
42
43     void read(const QJsonObject &json);
44
45 private:
46     class Private;
47     QSharedDataPointer<Private> d;
48 };
49
50 Q_DECLARE_SHARED(AppInfo)
51 Q_DECLARE_METATYPE(AppInfo)
52 Q_DECLARE_METATYPE(QList<AppInfo>)
53
54 #endif // APPINFO_H