Index: sources/view/VEventSpy.h =================================================================== diff -u -r56e378f7504701b9e9a9dccaf205aef2fd52c58e -r12e7b6dda53cf8db7707c7fa55dcf6137e7d6997 --- sources/view/VEventSpy.h (.../VEventSpy.h) (revision 56e378f7504701b9e9a9dccaf205aef2fd52c58e) +++ sources/view/VEventSpy.h (.../VEventSpy.h) (revision 12e7b6dda53cf8db7707c7fa55dcf6137e7d6997) @@ -20,14 +20,19 @@ #include // Project -#include "main.h" +#include "main.h" // Doxygen : don't remove // define #define _VEventSpy View::VEventSpy::I() // namespace namespace View { +/*! + * \brief The VEventSpy class + * \details event filter for all the events goes to / comes from UI. + * currently is only used for debugging and HW support. + */ class VEventSpy : public QObject { Q_OBJECT @@ -36,12 +41,13 @@ // 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 , touchCount , 0 ) + PROPERTY( quint64 , touchPoints , 0 ) - PROPERTY(quint64, mouseCount, 0) - PROPERTY(QPoint , mousePoint, QPoint()) + PROPERTY( quint64 , mouseCount , 0 ) + PROPERTY( QPoint , mousePoint , QPoint() ) // coco end + private: void initConnections(); void mouseEventSpy(QEvent *vEvent, const QString &vTypeName);