Table of Contents

Description

Pointer event type. Represents which kind of event this is.

Since 1.19

Fields

Signature

enum Efl.Pointer.Action {
    none: 0,
    move,
    down,
    up,
    cancel,
    in,
    out,
    wheel,
    axis
}

C signature

typedef enum {
    EFL_POINTER_ACTION_NONE = 0,
    EFL_POINTER_ACTION_MOVE,
    EFL_POINTER_ACTION_DOWN,
    EFL_POINTER_ACTION_UP,
    EFL_POINTER_ACTION_CANCEL,
    EFL_POINTER_ACTION_IN,
    EFL_POINTER_ACTION_OUT,
    EFL_POINTER_ACTION_WHEEL,
    EFL_POINTER_ACTION_AXIS
} Efl_Pointer_Action;