Allocate and initialize the swipe gesture structure.
#include "gestures/types.h"
gesture_swipe_t* swipe_gesture_alloc(swipe_params_t *params, gesture_callback_f callback, struct gestures_set *set)
This function allocates a new swipe gesture data structure and initializes it with the specified parameters and callback function, and adds it to the specified gesture set.
An initialized swipe gesture.