Index: sources/view/VEventSpy.cpp =================================================================== diff -u -r56e378f7504701b9e9a9dccaf205aef2fd52c58e -r12e7b6dda53cf8db7707c7fa55dcf6137e7d6997 --- sources/view/VEventSpy.cpp (.../VEventSpy.cpp) (revision 56e378f7504701b9e9a9dccaf205aef2fd52c58e) +++ sources/view/VEventSpy.cpp (.../VEventSpy.cpp) (revision 12e7b6dda53cf8db7707c7fa55dcf6137e7d6997) @@ -19,8 +19,8 @@ #include // Project -#include "guiglobals.h" -#include "logger.h" +#include "GuiGlobals.h" +#include "Logger.h" using namespace View; @@ -41,6 +41,12 @@ } } +/*! + * \brief VEventSpy::onEventSpy + * \details the event handler slot which receives all the events of the UI from Gui::_viewer + * depending on type of the event calls corresponding method. + * \param vEvent - the event + */ void VEventSpy::onEventSpy(QEvent *vEvent) { QEvent::Type mType = vEvent->type(); switch (mType) { @@ -69,8 +75,9 @@ /*! * \brief VEventSpy::mouseEventSpy - * \param vEvent - * \param typeName + * \details Mouse event spy + * \param vEvent - mouse event + * \param typeName - mouse button type name */ // 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. @@ -112,13 +119,17 @@ // 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. +/*! + * \brief VEventSpy::doMouseReset + * \details mouse event count reset + */ void VEventSpy::doMouseReset() { mouseCount(0); } // coco end /*! * \brief VEventSpy::touchEventSpy - * \param vEvent - * \param typeName + * \param vEvent - touch event + * \param typeName - The type of the QEvent which has been shortened e.g. tB: TouchBegin */ // 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. @@ -151,5 +162,9 @@ // 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. +/*! + * \brief VEventSpy::doTouchReset + * \details touch event counter reset + */ void VEventSpy::doTouchReset() { touchCount(0); } // coco end