summaryrefslogtreecommitdiff
path: root/src/lib/elm_need.h
blob: b7bdba2480147f10599a561b67a0484c4ba8710c (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
52
53
54
55
56
57
58
59
60
61
62
/**
 * @internal
 * @brief Requests that your elementary application needs Efreet.
 *
 * @details This initializes the Efreet library when called and if support exists
 *          it returns @c EINA_TRUE, otherwise it returns @c EINA_FALSE. This must be called
 *          before any efreet calls.
 *
 * @since_tizen 2.3
 *
 * @return @c EINA_TRUE if support exists and initialization succeeds,
 *         otherwise @c EINA_FALSE
 *
 * @ingroup Efreet
 */
EAPI Eina_Bool elm_need_efreet(void);

/**
 * @internal
 *
 * @brief Requests that your elementary application needs e_dbus.
 *
 * @details This initializes the E_dbus library when called and if support exists
 *          it returns @c EINA_TRUE, otherwise it returns @c EINA_FALSE. This must be called
 *          before any e_dbus calls.
 *
 * @return @c EINA_TRUE if support exists and initialization succeeds,
 *         otherwise @c EINA_FALSE
 *
 * @ingroup E_dbus
 */
EAPI Eina_Bool elm_need_e_dbus(void);

/**
 * @internal
 * @brief Requests that your elementary application needs ethumb.
 *
 * @details This initializes the Ethumb library when called and if support exists
 *          it returns @c EINA_TRUE, otherwise it returns @c EINA_FALSE.
 *          This must be called before any other function that deals with
 *          elm_thumb objects or ethumb_client instances is called.
 *
 * @since_tizen 2.3
 *
 * @ingroup Thumb
 */
EAPI Eina_Bool elm_need_ethumb(void);

/**
 * @internal
 * @brief Requests that your elementary application needs web support.
 *
 * @details This initializes the Ewebkit library when called and if support exists
 *          it returns @c EINA_TRUE, otherwise it returns @c EINA_FALSE.
 *          This must be called before any other function that deals with
 *          elm_web objects or ewk_view instances is called.
 *
 * @since_tizen 2.3
 *
 * @ingroup Web
 */
EAPI Eina_Bool elm_need_web(void);