diff options
author | Amitesh Singh <amitesh.sh@samsung.com> | 2017-11-02 17:26:12 +0900 |
---|---|---|
committer | Amitesh Singh <amitesh.sh@samsung.com> | 2017-11-02 17:28:48 +0900 |
commit | 225b70465158e4886d0150ece63190823c6a92d4 (patch) | |
tree | 1e1b9d8ec67a50dd1f6b3158ee265cbfb4b54948 /src/lib/elementary/elm_radio_legacy.h | |
parent | 83493bba73aa44b91467408c3e7789c4a05733e8 (diff) |
Efl.Ui.Radio: remove value{} api
Efl.Ui.Nstate already implements value{}.
@fix
Diffstat (limited to '')
-rw-r--r-- | src/lib/elementary/elm_radio_legacy.h | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/src/lib/elementary/elm_radio_legacy.h b/src/lib/elementary/elm_radio_legacy.h index 67aa0184b2..b9a58db7df 100644 --- a/src/lib/elementary/elm_radio_legacy.h +++ b/src/lib/elementary/elm_radio_legacy.h | |||
@@ -8,4 +8,25 @@ | |||
8 | */ | 8 | */ |
9 | EAPI Evas_Object *elm_radio_add(Evas_Object *parent); | 9 | EAPI Evas_Object *elm_radio_add(Evas_Object *parent); |
10 | 10 | ||
11 | #include "efl_ui_radio.eo.legacy.h" \ No newline at end of file | 11 | /** |
12 | * @brief Set the value of the radio group. | ||
13 | * | ||
14 | * This sets the value of the radio group and will also set the value if | ||
15 | * pointed to, to the value supplied, but will not call any callbacks. | ||
16 | * | ||
17 | * @param[in] value The value to use for the group | ||
18 | * | ||
19 | * @ingroup Elm_Radio | ||
20 | */ | ||
21 | EAPI void elm_radio_value_set(Evas_Object *obj, int value); | ||
22 | |||
23 | /** | ||
24 | * @brief Get the value of the radio group | ||
25 | * | ||
26 | * @return The value to use for the group | ||
27 | * | ||
28 | * @ingroup Elm_Radio | ||
29 | */ | ||
30 | EAPI int elm_radio_value_get(const Efl_Ui_Radio *obj); | ||
31 | |||
32 | #include "efl_ui_radio.eo.legacy.h" | ||