fix typo
[staging/HomeScreen.git] / HomeScreenAppFrameworkBinderTizen / src / homescreenappframeworkbindertizen.h
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 HOMESCREENAPPFRAMEWORKBINDERTIZEN_H
18 #define HOMESCREENAPPFRAMEWORKBINDERTIZEN_H
19
20 #include <QObject>
21 #include <include/appframework.hpp>
22 #include "appframework_adaptor.h"
23
24 #ifdef __arm__
25 extern "C" {
26 #include "aul/aul.h"
27 #include "pkgmgr-info.h"
28 }
29 #endif
30
31 class HomeScreenAppFrameworkBinderTizen : public QObject
32 {
33     Q_OBJECT
34 public:
35     explicit HomeScreenAppFrameworkBinderTizen(QObject *parent = 0);
36     ~HomeScreenAppFrameworkBinderTizen();
37 private:
38     AppframeworkAdaptor *mp_appframeworkAdaptor;
39     QList<AppInfo> m_apps;
40
41     //from appframework_adaptor.h
42 public Q_SLOTS: // METHODS
43     QStringList getAvailableAppNames();
44     int launchApp(const QString &name);
45
46 public:
47     void clearAppList();
48     void appendAppName(const char* name);
49
50 #ifdef __arm__
51     void pkg_list_cb_non_static(pkgmgrinfo_pkginfo_h handle);
52     static int pkg_list_cb_static(pkgmgrinfo_pkginfo_h handle, void *user_data);
53 #endif
54
55 public slots:
56
57 };
58
59 #endif // HOMESCREENAPPFRAMEWORKBINDERTIZEN_H