Tizen Native API  7.0

Functions

void elm_atspi_bridge_utils_say (const char *text, Eina_Bool discardable, const Elm_Atspi_Say_Signal_Cb func, const void *data)
 Reads given text by screen reader.
void elm_atspi_bridge_highlighted_object_read (void)
 Reads highlighted object text.

Typedefs

typedef void(* Elm_Atspi_Say_Signal_Cb )(void *data, const char *say_signal)
typedef struct
_Elm_Event_Atspi_Bridge_State_Changed 
Elm_Event_Atspi_Bridge_State_Changed

Typedef Documentation

typedef void(* Elm_Atspi_Say_Signal_Cb)(void *data, const char *say_signal)

This callback type is used to provide reading status information.

Parameters:
dataThe data specified as the last param when setting this callback
say_signalThe signal describes reading status information
See also:
elm_atspi_bridge_utils_say
Since :
4.0

Data on event when atspi bridge state is changed

Since (EFL) :
1.26

Enumeration Type Documentation

Possible values for the atspi bridge state.

Since (EFL) :
1.26
Enumerator:
ELM_ATSPI_BRIDGE_CONNECTED 

when atspi bridge is ready

ELM_ATSPI_BRIDGE_DISCONNECTED 

when atspi bridge is shutdown


Function Documentation

Reads highlighted object text.

Reads the highlighted object text based on reading information set on object, this API can be called when information of a highlighted object needs to be read again

Since :
5.5
void elm_atspi_bridge_utils_say ( const char *  text,
Eina_Bool  discardable,
const Elm_Atspi_Say_Signal_Cb  func,
const void *  data 
)

Reads given text by screen reader.

Parameters:
textThe text to read
discardableIf TRUE, reading can be discarded by subsequent reading requests, if FALSE the reading must finish before next reading request can be started
functhe callback function that is called on reading signals emitted during processing of this reading request. Elm_Atspi_Say_Signal_Cb callback type specifies two parameters (void *data, const char *signal), where data is a user data and signal can be one of the following signals: “ReadingCancelled” “ReadingStopped” “ReadingSkipped” “ReadingPaused” “ReadingResumed”
dataThe user data to be passed to the callback function
Since :
4.0