add visa, start websocket implementation
[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 #include <QList>
22 #include <QMap>
23
24 #include "windowmanager_adaptor.h"
25
26
27 #ifdef HAVE_IVI_LAYERMANAGEMENT_API
28 #include <ilm/ilm_control.h>
29 #endif
30
31 class WindowManager : public QObject
32 {
33     Q_OBJECT
34
35 public:
36     explicit WindowManager(QObject *parent = 0);
37     ~WindowManager();
38
39     void start();
40 private:
41     WindowmanagerAdaptor *mp_windowManagerAdaptor;
42     QList<Layout> m_layouts;
43     QList<int> m_appSurfaces;
44     QMap<int, unsigned int> *mp_layoutAreaToSurfaceIdAssignment;
45
46     int m_currentLayout;
47
48     int m_screenId;
49     unsigned int m_screenWidth;
50     unsigned int m_screenHeight;
51
52     int* m_showLayers;
53 #ifndef COMPIL_MAITAI
54     int getLayerRenderOrder(t_ilm_layer id_array[]);
55 #endif
56
57     void dumpScene();
58
59 #ifdef HAVE_IVI_LAYERMANAGEMENT_API
60     void createNewLayer(int layerId);
61     void addSurfaceToLayer(int surfaceId, int layerId);
62 #endif
63     void updateScreen();
64
65
66 public:
67     static void* myThis;
68
69 #ifdef HAVE_IVI_LAYERMANAGEMENT_API
70     // for general notifications
71     void notificationFunc_non_static(ilmObjectType object,
72                                         t_ilm_uint id,
73                                         t_ilm_bool created);
74     static void notificationFunc_static(ilmObjectType object,
75                                         t_ilm_uint id,
76                                         t_ilm_bool created,
77                                         void* user_data);
78
79
80     // for surface notifications
81     void surfaceCallbackFunction_non_static(t_ilm_surface surface,
82                                         struct ilmSurfaceProperties* surfaceProperties,
83                                         t_ilm_notification_mask mask);
84     static void surfaceCallbackFunction_static(t_ilm_surface surface,
85                                         struct ilmSurfaceProperties* surfaceProperties,
86                                         t_ilm_notification_mask mask);
87
88 #endif
89 public slots:
90
91
92 // from windowmanager_adaptor.h
93 public: // PROPERTIES
94     Q_PROPERTY(int layoutId READ layoutId)
95     int layoutId() const;
96
97     Q_PROPERTY(QString layoutName READ layoutName)
98     QString layoutName() const;
99
100 public Q_SLOTS: // METHODS
101     int addLayout(int layoutId, const QString &layoutName, const QList<LayoutArea> &surfaceAreas);
102     int deleteLayoutById(int layoutId);
103     QList<Layout> getAllLayouts();
104     QList<int> getAllSurfacesOfProcess(int pid);
105     QList<int> getAvailableLayouts(int numberOfAppSurfaces);
106     QList<int> getAvailableSurfaces();
107     QString getLayoutName(int layoutId);
108     void hideLayer(int layer);
109     int setLayoutById(int layoutId);
110     int setLayoutByName(const QString &layoutName);
111     int setSurfaceToLayoutArea(int surfaceId, int layoutAreaId);
112     void showLayer(int layer);
113
114 Q_SIGNALS: // SIGNALS
115     void surfaceVisibilityChanged(int surfaceId, bool visible);
116 };
117
118
119 #endif // WINDOWMANAGER_HPP