Lines Matching refs:event

59      * @brief Process the event of install system bundles.
60 * @param event Indicates the event to be processed.
62 virtual void ProcessEvent(const AppExecFwk::InnerEvent::Pointer &event) override;
77 * @param event the touch event received.
78 * @return true if the event is consumed, else false
80 virtual bool OnDoubleTap(MMI::PointerEvent &event);
83 * @brief The callback function when recognized an event stream as a gesture.
84 * @return true if the event is consumed, else false
89 * @brief The callback function when recognized an event stream as a multi finger gesture.
95 * @brief The callback function when decided the event stream is a gesture.
97 * @return true if the event is consumed, else false
102 * @brief The callback function when decided the event stream is a multi finger gesture.
108 * @brief The callback function when decided an event stream doesn't match any known gesture.
109 * @param event the touch event received.
110 * @return true if the event is consumed, else false
112 virtual bool OnCancelled(MMI::PointerEvent &event);
115 * @brief The callback function when decided an event stream doesn't match any known multi finger gesture.
176 * @brief Handle a touch event. If an action is completed, the appropriate callback is called.
178 * @param event the touch event to be handled.
179 * @param rawEvent The raw touch event.
182 bool OnPointerEvent(MMI::PointerEvent &event);
191 * @param event the touch event from touchguide
193 void MaybeRecognizeLongPress(MMI::PointerEvent &event);
228 * @param event the touch event from touchguide
231 bool StandardGestureRecognizer(MMI::PointerEvent &event);
235 * @param event the touch event from touchguide
238 bool DoubleTapRecognized(MMI::PointerEvent &event);
242 * @param event the touch event from touchguide
245 bool recognizeDirectionGesture(MMI::PointerEvent &event);
248 * @brief Handle the down event from touchguide.
249 * @param event the touch event from touchguide
251 void HandleTouchDownEvent(MMI::PointerEvent &event);
254 * @brief Handle the move event from touchguide.
255 * @param event the touch event from touchguide
257 bool HandleTouchMoveEvent(MMI::PointerEvent &event);
260 * @brief Handle the up event from touchguide.
261 * @param event the touch event from touchguide
263 bool HandleTouchUpEvent(MMI::PointerEvent &event);
267 * @param event the touch event from touchguide
270 bool isDoubleTap(MMI::PointerEvent &event);