Question
handleGestureEvent in Screen class
I'm trying to use handleGestureEvent in Screen.
But handleClickEvent and handleDragEvent are called correctly, and handleGestureEvent it is never shouted!
Should the "fire" of this event in the Screen class be activated in some way. I could not find anything in the documentation of TouchGFX
class ScreenView : public ScreenViewBase
{
public:
// .... //
auto handleGestureEvent (const GestureEvent & event) -> void override
{
ScreenViewBase::handleGestureEvent (event);
}
auto handleClickEvent (const ClickEvent & event) -> void override
{
ScreenViewBase::handleClickEvent (event);
}
auto handleDragEvent (const DragEvent & event) -> void override
{
ScreenViewBase::handleDragEvent (event);
}
};