From 88f30250eb15b520415658c6c32f48fda111b6bf Mon Sep 17 00:00:00 2001 From: Kimmo Ollila Date: Mon, 29 May 2017 12:23:08 +0300 Subject: Add USB HID device feature to INTEGRITY This change adds USB mouse handling support for INTEGRITY Change-Id: I8a2a51c8c3578898e90dd5bbb01f6aed6c64e2a4 Reviewed-by: Oswald Buddenhagen Reviewed-by: Timo Aarnipuro Reviewed-by: Nikola Velinov Reviewed-by: Rolland Dudemaine Reviewed-by: Lars Knoll Reviewed-by: Tero Alamaki --- src/plugins/platforms/eglfs/api/qeglfsintegration.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/plugins/platforms/eglfs/api') diff --git a/src/plugins/platforms/eglfs/api/qeglfsintegration.cpp b/src/plugins/platforms/eglfs/api/qeglfsintegration.cpp index 8b751a72bf..9a0be489a8 100644 --- a/src/plugins/platforms/eglfs/api/qeglfsintegration.cpp +++ b/src/plugins/platforms/eglfs/api/qeglfsintegration.cpp @@ -92,6 +92,10 @@ #include #endif +#if QT_CONFIG(integrityhid) +#include +#endif + #include static void initResources() @@ -466,6 +470,10 @@ void QEglFSIntegration::createInputHandlers() #endif new QEvdevTouchManager(QLatin1String("EvdevTouch"), QString() /* spec */, this); #endif + +#if QT_CONFIG(integrityhid) + new QIntegrityHIDManager("HID", "", this); +#endif } EGLNativeDisplayType QEglFSIntegration::nativeDisplay() const -- cgit v1.2.3