4c04837b35545882d60c4c87689618228a02f1bc
[profile/ivi/qtwayland.git] / src / compositor / compositor_api / waylandinput.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the Qt Compositor.
7 **
8 ** $QT_BEGIN_LICENSE:BSD$
9 ** You may use this file under the terms of the BSD license as follows:
10 **
11 ** "Redistribution and use in source and binary forms, with or without
12 ** modification, are permitted provided that the following conditions are
13 ** met:
14 **   * Redistributions of source code must retain the above copyright
15 **     notice, this list of conditions and the following disclaimer.
16 **   * Redistributions in binary form must reproduce the above copyright
17 **     notice, this list of conditions and the following disclaimer in
18 **     the documentation and/or other materials provided with the
19 **     distribution.
20 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
21 **     the names of its contributors may be used to endorse or promote
22 **     products derived from this software without specific prior written
23 **     permission.
24 **
25 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
36 **
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 #ifndef WAYLANDINPUT_H
42 #define WAYLANDINPUT_H
43
44 #include <QtCore/qnamespace.h>
45 #include <QtCore/QPoint>
46
47 #include "waylandexport.h"
48
49 class WaylandCompositor;
50 class WaylandSurface;
51 class QKeyEvent;
52 class QTouchEvent;
53
54 namespace Wayland {
55 class InputDevice;
56 }
57
58 class Q_COMPOSITOR_EXPORT WaylandInputDevice
59 {
60 public:
61     WaylandInputDevice(WaylandCompositor *compositor);
62     ~WaylandInputDevice();
63
64     void sendMousePressEvent(Qt::MouseButton button, const QPoint &localPos, const QPoint &globalPos = QPoint());
65     void sendMouseReleaseEvent(Qt::MouseButton button, const QPoint &localPos, const QPoint &globalPos = QPoint());
66     void sendMouseMoveEvent(const QPoint &localPos, const QPoint &globalPos = QPoint());
67     void sendMouseMoveEvent(WaylandSurface *surface , const QPoint &localPos, const QPoint &globalPos = QPoint());
68
69     void sendKeyPressEvent(uint code);
70     void sendKeyReleaseEvent(uint code);
71
72     void sendFullKeyEvent(QKeyEvent *event);
73
74     void sendTouchPointEvent(int id, int x, int y, Qt::TouchPointState state);
75     void sendTouchFrameEvent();
76     void sendTouchCancelEvent();
77
78     void sendFullTouchEvent(QTouchEvent *event);
79
80     WaylandSurface *keyboardFocus() const;
81     void setKeyboardFocus(WaylandSurface *surface);
82
83     WaylandSurface *mouseFocus() const;
84     void setMouseFocus(WaylandSurface *surface, const QPoint &local_pos, const QPoint &global_pos = QPoint());
85
86     WaylandCompositor *compositor() const;
87     Wayland::InputDevice *handle() const;
88 private:
89     Wayland::InputDevice *d;
90     Q_DISABLE_COPY(WaylandInputDevice)
91 };
92
93 #endif // WAYLANDINPUT_H