Vuo  2.0.0
VuoInteractionType.h
Go to the documentation of this file.
1 
10 #pragma once
11 
14 #define VuoList_VuoInteractionType_TYPE_DEFINED
15 
30 typedef enum {
31  VuoInteractionType_None, // No change in this event.
32  VuoInteractionType_Move, // The position has moved.
33  VuoInteractionType_Press, // A press has been begun.
34  VuoInteractionType_Release, // A press has been released (note that this may not be called if the event is a click, or the event is canceled).
35  VuoInteractionType_Click, // A click has been detected (this will be called in place of a Release event).
36  VuoInteractionType_DragStart, // Drag has been initiated
37  VuoInteractionType_Drag, // The input is dragging.
38  VuoInteractionType_DragFinish, // Drag has been completed successfully.
39  VuoInteractionType_Canceled // Drag or mouse press has been canceled (usually means mouse went off-screen).
41 
46 
48 
50 
58