summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_atspi_bridge_eo.h
blob: 76cd68c69094d8713fb48720a9bd244083d44cea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef _ELM_ATSPI_BRIDGE_EO_H_
#define _ELM_ATSPI_BRIDGE_EO_H_

#ifndef _ELM_ATSPI_BRIDGE_EO_CLASS_TYPE
#define _ELM_ATSPI_BRIDGE_EO_CLASS_TYPE

typedef Eo Elm_Atspi_Bridge;

#endif

#ifndef _ELM_ATSPI_BRIDGE_EO_TYPES
#define _ELM_ATSPI_BRIDGE_EO_TYPES


#endif
/** AT-SPI bridge class
 *
 * @ingroup Elm_Atspi_Bridge
 */
#define ELM_ATSPI_BRIDGE_CLASS elm_atspi_bridge_class_get()

EWAPI const Efl_Class *elm_atspi_bridge_class_get(void) EINA_CONST;

/**
 * @brief Indicate if connection with AT-SPI2 bus has been established.
 *
 * @param[in] obj The object.
 *
 * @return @c true if connection has been established, @c false otherwise
 *
 * @ingroup Elm_Atspi_Bridge
 */
EOAPI Eina_Bool elm_obj_atspi_bridge_connected_get(const Eo *obj);

EWAPI extern const Efl_Event_Description _ELM_ATSPI_BRIDGE_EVENT_CONNECTED;

/** Connected with AT-SPI2 bus
 *
 * @ingroup Elm_Atspi_Bridge
 */
#define ELM_ATSPI_BRIDGE_EVENT_CONNECTED (&(_ELM_ATSPI_BRIDGE_EVENT_CONNECTED))

EWAPI extern const Efl_Event_Description _ELM_ATSPI_BRIDGE_EVENT_DISCONNECTED;

/** Disconnected from AT-SPI2 bus
 *
 * @ingroup Elm_Atspi_Bridge
 */
#define ELM_ATSPI_BRIDGE_EVENT_DISCONNECTED (&(_ELM_ATSPI_BRIDGE_EVENT_DISCONNECTED))

#endif