get_alphabet


Description:

[ CCode ( array_length = false , array_null_terminated = true ) ]
public unowned string[] get_alphabet (out int n_labels, out int underflow, out int inflow, out int overflow)

Fetches the array of displayable labels for the active alphabet.

The active alphabet is based on the current locale configuration of the addressbook, and can be a different alphabet for locales requiring non-Latin language scripts. These UTF-8 labels are appropriate to display in a user interface to represent the alphabetic position of the cursor in the user's native alphabet.

The underflow, inflow and overflow parameters allow one to observe which indexes Evolution Data Server is using to store words which sort outside of the alphabet, for instance words from foreign language scripts and words which start with numeric characters, or other types of character.

While the underflow and overflow are for words which sort below or above the active alphabets, the inflow index is for words which sort in between multiple concurrently active alphabets. The active alphabet array might contain more than one alphabet for locales where it is very common or expected to have names in Latin script as well as names in another script.

Parameters:

this

an BookClientCursor

n_labels

The number of labels in the active alphabet

underflow

The underflow index, for any words which sort below the active alphabet

inflow

The inflow index, for any words which sort between the active alphabets (if there is more than one)

overflow

The overflow index, for any words which sort above the active alphabet

Returns:

The array of displayable labels for each index in the active alphabet.