qwaylandinput.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2015 The Qt Company Ltd.
  4. ** Contact: http://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtWaylandCompositor module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL3$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see http://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at http://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPLv3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or later as published by the Free
  28. ** Software Foundation and appearing in the file LICENSE.GPL included in
  29. ** the packaging of this file. Please review the following information to
  30. ** ensure the GNU General Public License version 2.0 requirements will be
  31. ** met: http://www.gnu.org/licenses/gpl-2.0.html.
  32. **
  33. ** $QT_END_LICENSE$
  34. **
  35. ****************************************************************************/
  36. #ifndef QWAYLANDINPUT_H
  37. #define QWAYLANDINPUT_H
  38. #include <QtCore/qnamespace.h>
  39. #include <QtCore/QPoint>
  40. #include <QtCore/QString>
  41. #include <QtWaylandCompositor/qwaylandexport.h>
  42. #include <QtWaylandCompositor/qwaylandcompositorextension.h>
  43. #include <QtWaylandCompositor/qwaylandkeyboard.h>
  44. QT_BEGIN_NAMESPACE
  45. class QWaylandCompositor;
  46. class QWaylandSurface;
  47. class QKeyEvent;
  48. class QTouchEvent;
  49. class QWaylandView;
  50. class QInputEvent;
  51. class QWaylandInputDevicePrivate;
  52. class QWaylandDrag;
  53. class QWaylandKeyboard;
  54. class QWaylandPointer;
  55. class QWaylandTouch;
  56. namespace QtWayland {
  57. class InputDevice;
  58. }
  59. class Q_WAYLAND_COMPOSITOR_EXPORT QWaylandInputDevice : public QWaylandObject
  60. {
  61. Q_OBJECT
  62. Q_DECLARE_PRIVATE(QWaylandInputDevice)
  63. public:
  64. enum CapabilityFlag {
  65. // The order should match the enum WL_SEAT_CAPABILITY_*
  66. Pointer = 0x01,
  67. Keyboard = 0x02,
  68. Touch = 0x04,
  69. DefaultCapabilities = Pointer | Keyboard | Touch
  70. };
  71. Q_DECLARE_FLAGS(CapabilityFlags, CapabilityFlag)
  72. Q_ENUM(CapabilityFlags)
  73. QWaylandInputDevice(QWaylandCompositor *compositor, CapabilityFlags capabilityFlags = DefaultCapabilities);
  74. virtual ~QWaylandInputDevice();
  75. void sendMousePressEvent(Qt::MouseButton button);
  76. void sendMouseReleaseEvent(Qt::MouseButton button);
  77. void sendMouseMoveEvent(QWaylandView *surface , const QPointF &localPos, const QPointF &outputSpacePos = QPointF());
  78. void sendMouseWheelEvent(Qt::Orientation orientation, int delta);
  79. void sendKeyPressEvent(uint code);
  80. void sendKeyReleaseEvent(uint code);
  81. void sendFullKeyEvent(QKeyEvent *event);
  82. void sendFullKeyEvent(QWaylandSurface *surface, QKeyEvent *event);
  83. void sendTouchPointEvent(int id, const QPointF &point, Qt::TouchPointState state);
  84. void sendTouchFrameEvent();
  85. void sendTouchCancelEvent();
  86. void sendFullTouchEvent(QTouchEvent *event);
  87. QWaylandPointer *pointer() const;
  88. //Normally set by the mouse device,
  89. //But can be set manually for use with touch or can reset unset the current mouse focus;
  90. QWaylandView *mouseFocus() const;
  91. void setMouseFocus(QWaylandView *view);
  92. QWaylandKeyboard *keyboard() const;
  93. QWaylandSurface *keyboardFocus() const;
  94. bool setKeyboardFocus(QWaylandSurface *surface);
  95. void setKeymap(const QWaylandKeymap &keymap);
  96. QWaylandTouch *touch() const;
  97. QWaylandCompositor *compositor() const;
  98. QWaylandDrag *drag() const;
  99. QWaylandInputDevice::CapabilityFlags capabilities() const;
  100. virtual bool isOwner(QInputEvent *inputEvent) const;
  101. static QWaylandInputDevice *fromSeatResource(struct ::wl_resource *resource);
  102. Q_SIGNALS:
  103. void mouseFocusChanged(QWaylandView *newFocus, QWaylandView *oldFocus);
  104. void keyboardFocusChanged(QWaylandSurface *newFocus, QWaylandSurface *oldFocus);
  105. void cursorSurfaceRequest(QWaylandSurface *surface, int hotspotX, int hotspotY);
  106. };
  107. Q_DECLARE_OPERATORS_FOR_FLAGS(QWaylandInputDevice::CapabilityFlags)
  108. QT_END_NAMESPACE
  109. #endif // QWAYLANDINPUT_H