Vuo  1.1.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Typedefs | Functions
VuoList_VuoMouseButton

Description

A list of VuoMouseButton elements.

Classes

struct  VuoList_VuoMouseButton_struct
 A list of VuoMouseButton elements. More...
 

Typedefs

typedef struct
VuoList_VuoMouseButton_struct
VuoList_VuoMouseButton
 A list of VuoMouseButton elements.
 

Functions

VuoList_VuoMouseButton VuoListCreate_VuoMouseButton (void)
 Creates a new list of VuoMouseButton elements.
 
VuoList_VuoMouseButton VuoListCopy_VuoMouseButton (const VuoList_VuoMouseButton list)
 Makes a shallow copy of list — its items are retained (not copied) by the new list.
 
VuoMouseButton VuoListGetValue_VuoMouseButton (const VuoList_VuoMouseButton list, const unsigned long index)
 Returns the VuoMouseButton at index.
 
void VuoListSetValue_VuoMouseButton (const VuoList_VuoMouseButton list, const VuoMouseButton value, const unsigned long index)
 Changes the VuoMouseButton at index.
 
void VuoListInsertValue_VuoMouseButton (const VuoList_VuoMouseButton list, const VuoMouseButton value, const unsigned long index)
 Inserts the VuoMouseButton immediately before index.
 
void VuoListPrependValue_VuoMouseButton (VuoList_VuoMouseButton list, const VuoMouseButton value)
 Prepends value to list.
 
void VuoListAppendValue_VuoMouseButton (VuoList_VuoMouseButton list, const VuoMouseButton value)
 Appends value to list.
 
void VuoListExchangeValues_VuoMouseButton (VuoList_VuoMouseButton list, const unsigned long indexA, const unsigned long indexB)
 Swaps the value at indexA with the value at indexB.
 
void VuoListShuffle_VuoMouseButton (VuoList_VuoMouseButton list, const double chaos)
 Generates a random permutation of list.
 
void VuoListReverse_VuoMouseButton (VuoList_VuoMouseButton list)
 Reverses the order of the items in list.
 
void VuoListCut_VuoMouseButton (VuoList_VuoMouseButton list, const signed long startIndex, const unsigned long itemCount)
 Removes items from the list except those in the range specified by startIndex and itemCount.
 
void VuoListRemoveFirstValue_VuoMouseButton (VuoList_VuoMouseButton list)
 Removes the first value from list.
 
void VuoListRemoveLastValue_VuoMouseButton (VuoList_VuoMouseButton list)
 Removes the last value from list.
 
void VuoListRemoveAll_VuoMouseButton (VuoList_VuoMouseButton list)
 Removes all values from list.
 
void VuoListRemoveValue_VuoMouseButton (VuoList_VuoMouseButton list, const unsigned long index)
 Removes the VuoMouseButton at index.
 
unsigned long VuoListGetCount_VuoMouseButton (const VuoList_VuoMouseButton list)
 Returns the number of elements in list.
 
VuoList_VuoMouseButton VuoList_VuoMouseButton_makeFromJson (struct json_object *js)
 Decodes the JSON object js to create a new value.
 
struct json_objectVuoList_VuoMouseButton_getJson (const VuoList_VuoMouseButton value)
 Encodes value as a JSON object.
 
char * VuoList_VuoMouseButton_getSummary (const VuoList_VuoMouseButton value)
 Produces a brief human-readable summary of value.
 
VuoList_VuoMouseButton VuoList_VuoMouseButton_makeFromString (const char *str)
 Automatically generated function.
 
char * VuoList_VuoMouseButton_getString (const VuoList_VuoMouseButton value)
 Automatically generated function.
 

Class Documentation

struct VuoList_VuoMouseButton_struct
Class Members
void * l

Typedef Documentation

A list of VuoMouseButton elements.

Function Documentation

struct json_object* VuoList_VuoMouseButton_getJson ( const VuoList_VuoMouseButton  value)
read

Encodes value as a JSON object.

char* VuoList_VuoMouseButton_getString ( const VuoList_VuoMouseButton  value)

Automatically generated function.

char* VuoList_VuoMouseButton_getSummary ( const VuoList_VuoMouseButton  value)

Produces a brief human-readable summary of value.

VuoList_VuoMouseButton VuoList_VuoMouseButton_makeFromJson ( struct json_object js)

Decodes the JSON object js to create a new value.

Example:
["uno", "dos", "tres", "catorce"]
VuoList_VuoMouseButton VuoList_VuoMouseButton_makeFromString ( const char *  str)

Automatically generated function.

void VuoListAppendValue_VuoMouseButton ( VuoList_VuoMouseButton  list,
const VuoMouseButton  value 
)

Appends value to list.

VuoList_VuoMouseButton VuoListCopy_VuoMouseButton ( const VuoList_VuoMouseButton  list)

Makes a shallow copy of list — its items are retained (not copied) by the new list.

VuoList_VuoMouseButton VuoListCreate_VuoMouseButton ( void  )

Creates a new list of VuoMouseButton elements.

void VuoListCut_VuoMouseButton ( VuoList_VuoMouseButton  list,
const signed long  startIndex,
const unsigned long  itemCount 
)

Removes items from the list except those in the range specified by startIndex and itemCount.

void VuoListExchangeValues_VuoMouseButton ( VuoList_VuoMouseButton  list,
const unsigned long  indexA,
const unsigned long  indexB 
)

Swaps the value at indexA with the value at indexB.

unsigned long VuoListGetCount_VuoMouseButton ( const VuoList_VuoMouseButton  list)

Returns the number of elements in list.

VuoMouseButton VuoListGetValue_VuoMouseButton ( const VuoList_VuoMouseButton  list,
const unsigned long  index 
)

Returns the VuoMouseButton at index.

Index values start at 1. If the list has no items, returns a default value. Attempting to access an out-of-bounds index returns the first item in the list (if the index is 0), or last item in the list (if the index is greater than the list size).

void VuoListInsertValue_VuoMouseButton ( const VuoList_VuoMouseButton  list,
const VuoMouseButton  value,
const unsigned long  index 
)

Inserts the VuoMouseButton immediately before index.

Index values start at 1. Inserting at index 0 prepends the value to the list. Inserting at an index beyond the last value in the list appends the value to the list.

void VuoListPrependValue_VuoMouseButton ( VuoList_VuoMouseButton  list,
const VuoMouseButton  value 
)

Prepends value to list.

void VuoListRemoveAll_VuoMouseButton ( VuoList_VuoMouseButton  list)

Removes all values from list.

void VuoListRemoveFirstValue_VuoMouseButton ( VuoList_VuoMouseButton  list)

Removes the first value from list.

void VuoListRemoveLastValue_VuoMouseButton ( VuoList_VuoMouseButton  list)

Removes the last value from list.

void VuoListRemoveValue_VuoMouseButton ( VuoList_VuoMouseButton  list,
const unsigned long  index 
)

Removes the VuoMouseButton at index.

Index values start at 1. Attempting to remove index 0 or an index beyond the last value in the list has no effect.

void VuoListReverse_VuoMouseButton ( VuoList_VuoMouseButton  list)

Reverses the order of the items in list.

void VuoListSetValue_VuoMouseButton ( const VuoList_VuoMouseButton  list,
const VuoMouseButton  value,
const unsigned long  index 
)

Changes the VuoMouseButton at index.

Index values start at 1. If the list has no items, nothing is changed. Attempting to change an out-of-bounds index changes the first item in the list (if the index is 0), or last item in the list (if the index is greater than the list size).

void VuoListShuffle_VuoMouseButton ( VuoList_VuoMouseButton  list,
const double  chaos 
)

Generates a random permutation of list.

chaos ranges from 0 to 1. When chaos is 1, a full Fisher–Yates shuffle is performed. When less than 1, fewer iterations are performed.