Using the Tizen application manager to receive information about installed apps and...
[staging/HomeScreen.git] / WindowManager / src / windowmanager.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 WINDOWMANAGER_HPP
18 #define WINDOWMANAGER_HPP
19
20 #include <QObject>
21
22
23 #ifdef __arm__
24 extern "C" {
25 #include "ilm/ilm_control.h"
26 }
27 #endif
28
29
30 class WindowManager : public QObject
31 {
32     Q_OBJECT
33 public:
34     explicit WindowManager(QObject *parent = 0);
35     ~WindowManager();
36 private:
37
38
39 public:
40
41 #ifdef __arm__
42     void notificationFunc_non_static(ilmObjectType object,
43                                         t_ilm_uint id,
44                                         t_ilm_bool created);
45     static void notificationFunc_static(ilmObjectType object,
46                                         t_ilm_uint id,
47                                         t_ilm_bool created,
48                                         void* user_data);
49 #endif
50 public slots:
51
52 };
53
54 #endif // WINDOWMANAGER_HPP