d95cd9deaeecfa39fb63edd006a25e6bb9153f31
[staging/HomeScreen.git] / interfaces / include / appframework.hpp
1 /*
2  * Copyright (C) 2016 Mentor Graphics Development (Deutschland) GmbH
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 APPFRAMEWORK_HPP
18 #define APPFRAMEWORK_HPP
19
20 #include <QObject>
21 #include <QtDBus>
22 #include <QString>
23
24 class AppInfo : public QObject
25 {
26     Q_OBJECT
27 public:
28     explicit AppInfo(QObject *parent = 0);
29     AppInfo(const AppInfo &other);
30     AppInfo& operator=(const AppInfo &other);
31     ~AppInfo();
32
33     //register Message with the Qt type system
34     static void registerMetaType();
35
36     friend QDBusArgument &operator<<(QDBusArgument &argument, const AppInfo &appInfo);
37     friend const QDBusArgument &operator>>(const QDBusArgument &argument, AppInfo &appInfo);
38
39     void setName(const QString name) {this->name = name;}
40     QString getName() const {return name;}
41     void setIconPath(const QString iconPath) {this->iconPath = iconPath;}
42     QString getIconPath() const {return iconPath;}
43     void setDescription(const QString description) {this->description = description;}
44     QString getDescription() const {return description;}
45
46 private:
47     QString name;
48     QString iconPath;
49     QString description;
50 };
51
52 Q_DECLARE_METATYPE(AppInfo)
53
54 #endif // APPFRAMEWORK_HPP