ClutterSwipeAction

ClutterSwipeAction — Action for swipe gestures

Functions

Types and Values

Description

ClutterSwipeAction is a sub-class of ClutterGestureAction that implements the logic for recognizing swipe gestures.

Functions

clutter_swipe_action_new ()

ClutterAction *
clutter_swipe_action_new (void);

Creates a new ClutterSwipeAction instance

Returns

the newly created ClutterSwipeAction

Since: 1.8

Types and Values

struct ClutterSwipeAction

struct ClutterSwipeAction {
};

The ClutterSwipeAction structure contains only private data and should be accessed using the provided API

Since: 1.8


struct ClutterSwipeActionClass

struct ClutterSwipeActionClass {
  void (* swept)  (ClutterSwipeAction    *action,
                   ClutterActor          *actor,
                   ClutterSwipeDirection  direction);

  gboolean (* swipe) (ClutterSwipeAction    *action,
                      ClutterActor          *actor,
                      ClutterSwipeDirection  direction);
};

The ClutterSwipeActionClass structure contains only private data.

Members

swept ()

class handler for the “swept” signal; deprecated since 1.14

 

swipe ()

class handler for the “swipe” signal

 

Since: 1.8


enum ClutterSwipeDirection

The main direction of the swipe gesture

Members

CLUTTER_SWIPE_DIRECTION_UP

Upwards swipe gesture

 

CLUTTER_SWIPE_DIRECTION_DOWN

Downwards swipe gesture

 

CLUTTER_SWIPE_DIRECTION_LEFT

Leftwards swipe gesture

 

CLUTTER_SWIPE_DIRECTION_RIGHT

Rightwards swipe gesture

 

Since: 1.8