Function

Clutterkeyval_get_aliases

Declaration [src]

const unsigned int*
clutter_keyval_get_aliases (
  unsigned int keyval,
  unsigned int* n_aliases
)

Description [src]

Gets keyvals that are ‘aliases’ for keyval.

Aliases are meant to be functionally equivalent and should be treated the same with respect to keyboard shortcuts, etc. An example are keypad keys that are aliases for their normal counterpart, such as CLUTTER_KEY_KP_Left and CLUTTER_KEY_Left.

Parameters

keyval

Type: unsigned int

The keyval to get aliases for.

n_aliases

Type: unsigned int*

Return location for the number of aliases.

The argument will be set by the function.

Return value

Type: An array of unsigned int

an array of keyvals.
The length of the array is in the n_aliases argument.
The data is owned by the called function.
The return value can be NULL.