Enable automcatic startup of Homescreen app
[staging/HomeScreen.git] / InputEventManager / src / inputeventmanager.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 INPUTEVENTMANAGER_H
18 #define INPUTEVENTMANAGER_H
19
20 #include "inputevent_adaptor.h"
21 #include <include/homescreen.hpp>
22 #include "homescreen_proxy.h"
23
24 /*
25 #ifdef __arm__
26 extern "C" {
27 #include "aul/aul.h"
28 #include "pkgmgr-info.h"
29 }
30 #endif
31 */
32
33 class InputEventManager : public QObject
34 {
35     Q_OBJECT
36 public:
37     explicit InputEventManager(QObject *parent = 0);
38     ~InputEventManager();
39 private:
40     InputeventAdaptor *mp_inputEventAdaptor;
41     org::agl::homescreen *mp_dBusHomeScreenProxy;
42
43     //from inputevent_adapter.h
44 public Q_SLOTS: // METHODS
45     void hardKeyPressed(int key);
46
47 public:
48
49
50 public slots:
51
52 };
53
54 #endif // INPUTEVENTMANAGER_H