Index: sources/view/VEventSpy.h =================================================================== diff -u -r12e7b6dda53cf8db7707c7fa55dcf6137e7d6997 -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/view/VEventSpy.h (.../VEventSpy.h) (revision 12e7b6dda53cf8db7707c7fa55dcf6137e7d6997) +++ sources/view/VEventSpy.h (.../VEventSpy.h) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) @@ -1,15 +1,15 @@ /*! * - * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. + * Copyright (c) 2020-2024 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * - * \file VEventSpy.h - * \author (last) Behrouz NematiPour - * \date (last) 25-Aug-2020 - * \author (original) Behrouz NematiPour - * \date (original) 23-Aug-2020 + * \file VEventSpy.h + * \author (last) Behrouz NematiPour + * \date (last) 18-Apr-2022 + * \author (original) Behrouz NematiPour + * \date (original) 23-Aug-2020 * */ #pragma once @@ -20,7 +20,7 @@ #include // Project -#include "main.h" // Doxygen : don't remove +#include "main.h" // Doxygen : do not remove // define #define _VEventSpy View::VEventSpy::I() @@ -39,19 +39,20 @@ // singleton SINGLETON(VEventSpy) - // coco begin validated: this code has been manually tested. + // disabled coco begin validated: this code has been manually tested. // the only intention of this code is to be used for EMC testing and has been tested and is working fine. PROPERTY( quint64 , touchCount , 0 ) PROPERTY( quint64 , touchPoints , 0 ) PROPERTY( quint64 , mouseCount , 0 ) PROPERTY( QPoint , mousePoint , QPoint() ) - // coco end + // disabled coco end private: void initConnections(); void mouseEventSpy(QEvent *vEvent, const QString &vTypeName); void touchEventSpy(QEvent *vEvent, const QString &vTypeName); + void keybdEventSpy(QEvent *vEvent ); signals : void countChanged(int vCount);