[genlist] apply r71140 with local enhancement
[framework/uifw/elementary.git] / src / lib / elm_radio.c
index a2021be..0f6c0f6 100644 (file)
@@ -1,41 +1,6 @@
 #include <Elementary.h>
 #include "elm_priv.h"
 
-/**
- * @defgroup Radio Radio
- * @ingroup Elementary
- *
- * The radio button allows for 1 or more selectors to be created to select 1
- * of a set of options.
- *
- * Signals that you can add callbacks for are:
- *
- * changed - This is called whenever the user changes the state of one of the
- * radio objects within the group of radio objects that work together.
- *
- * A radio object contains an indicator, an optional Label and an optional
- * icon object. They work normally in groups of 2 or more. When you create a
- * radio (if it is not the first member of the group), simply add it to the
- * group by adding it to any other member of the group that already exists
- * (or the first member) with elm_radio_group_add() with the second parameter
- * being the existing group member. The radio object(s) will select from one
- * of a set of integer values, so any value they are configuring needs to be
- * mapped to a set of integers. To configure what value that radio object
- * represents, use  elm_radio_state_value_set() to set the integer it
- * represents. To set the value the whole group is to indicate use
- * elm_radio_value_set() on any group member, and to get the groups value use
- * elm_radio_value_get(). For convenience the radio objects are also able to
- * directly set an integer (int) to the value that is selected. To specify
- * the pointer to this integer to modify, use elm_radio_value_pointer_set().
- * The radio objects will modify this directly. That implies the pointer must
- * point to valid memory for as long as the radio objects exist.
- *
- * Signals that you can add callbacks for are:
- *
- * "changed" - when the radio status is changed
- *
- */
-
 typedef struct _Widget_Data Widget_Data;
 typedef struct _Group Group;
 
@@ -152,7 +117,7 @@ _theme_hook(Evas_Object *obj)
      edje_object_signal_emit(wd->radio, "elm,state,text,visible", "elm");
    else
      edje_object_signal_emit(wd->radio, "elm,state,text,hidden", "elm");
-   edje_object_part_text_set(wd->radio, "elm.text", wd->label);
+   edje_object_part_text_escaped_set(wd->radio, "elm.text", wd->label);
    if (elm_widget_disabled_get(obj))
      {
         edje_object_signal_emit(wd->radio, "elm,state,disabled", "elm");
@@ -256,10 +221,16 @@ _activate(Evas_Object *obj)
    Widget_Data *wd = elm_widget_data_get(obj);
    if (!wd) return;
    if (wd->group->value == wd->value) return;
-   wd->group->value = wd->value;
-   if (wd->group->valuep) *(wd->group->valuep) = wd->group->value;
-   _state_set_all(wd);
-   evas_object_smart_callback_call(obj, SIG_CHANGED, NULL);
+   if ((_elm_config->access_mode == ELM_ACCESS_MODE_OFF) ||
+       (_elm_access_2nd_click_timeout(obj)))
+     {
+        wd->group->value = wd->value;
+        if (wd->group->valuep) *(wd->group->valuep) = wd->group->value;
+        _state_set_all(wd);
+        if (_elm_config->access_mode != ELM_ACCESS_MODE_OFF)
+          _elm_access_say(E_("State: On"));
+        evas_object_smart_callback_call(obj, SIG_CHANGED, NULL);
+     }
 }
 
 static void
@@ -292,7 +263,7 @@ _elm_radio_label_set(Evas_Object *obj, const char *item, const char *label)
         edje_object_signal_emit(wd->radio, "elm,state,text,hidden", "elm");
         edje_object_message_signal_process(wd->radio);
      }
-   edje_object_part_text_set(wd->radio, "elm.text", label);
+   edje_object_part_text_escaped_set(wd->radio, "elm.text", label);
    _sizing_eval(obj);
 }
 
@@ -306,14 +277,83 @@ _elm_radio_label_get(const Evas_Object *obj, const char *item)
    return wd->label;
 }
 
-/**
- * Add a new radio to the parent
- *
- * @param parent The parent object
- * @return The new object or NULL if it cannot be created
- *
- * @ingroup Radio
- */
+static char *
+_access_info_cb(void *data __UNUSED__, Evas_Object *obj, Elm_Widget_Item *item __UNUSED__)
+{
+   const char *txt = elm_widget_access_info_get(obj);
+   if (!txt) txt = _elm_radio_label_get(obj, NULL);
+   if (txt) return strdup(txt);
+   return NULL;
+}
+
+static char *
+_access_state_cb(void *data __UNUSED__, Evas_Object *obj, Elm_Widget_Item *item __UNUSED__)
+{
+   Widget_Data *wd = elm_widget_data_get(obj);
+   if (!wd) return NULL;
+   if (elm_widget_disabled_get(obj))
+     return strdup(E_("State: Disabled"));
+   if (wd->state)
+     return strdup(E_("State: On"));
+   return strdup(E_("State: Off"));
+}
+
+static void
+_content_set_hook(Evas_Object *obj, const char *part, Evas_Object *content)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype);
+   Widget_Data *wd;
+
+   if (part && strcmp(part, "icon")) return;
+   wd = elm_widget_data_get(obj);
+   if (!wd) return;
+   if (wd->icon == content) return;
+   if (wd->icon) evas_object_del(wd->icon);
+   wd->icon = content;
+   if (content)
+     {
+        elm_widget_sub_object_add(obj, content);
+        evas_object_event_callback_add(content,
+                                       EVAS_CALLBACK_CHANGED_SIZE_HINTS,
+                                       _changed_size_hints, obj);
+        edje_object_part_swallow(wd->radio, "elm.swallow.content", content);
+        edje_object_signal_emit(wd->radio, "elm,state,icon,visible", "elm");
+        edje_object_message_signal_process(wd->radio);
+     }
+   _sizing_eval(obj);
+}
+
+static Evas_Object *
+_content_get_hook(const Evas_Object *obj, const char *part)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype) NULL;
+   Widget_Data *wd;
+
+   if (part && strcmp(part, "icon")) return NULL;
+   wd = elm_widget_data_get(obj);
+   if (!wd) return NULL;
+   return wd->icon;
+}
+
+static Evas_Object *
+_content_unset_hook(Evas_Object *obj, const char *part)
+{
+   ELM_CHECK_WIDTYPE(obj, widtype) NULL;
+   Widget_Data *wd;
+   Evas_Object *icon;
+   if (part && strcmp(part, "icon")) return NULL;
+   wd = elm_widget_data_get(obj);
+   if (!wd) return NULL;
+   if (!wd->icon) return NULL;
+   icon = wd->icon;
+   elm_widget_sub_object_del(obj, wd->icon);
+   evas_object_event_callback_del_full(wd->icon, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
+                                       _changed_size_hints, obj);
+   edje_object_part_unswallow(wd->radio, wd->icon);
+   wd->icon = NULL;
+   return icon;
+}
+
 EAPI Evas_Object *
 elm_radio_add(Evas_Object *parent)
 {
@@ -336,6 +376,9 @@ elm_radio_add(Evas_Object *parent)
    elm_widget_event_hook_set(obj, _event_hook);
    elm_widget_text_set_hook_set(obj, _elm_radio_label_set);
    elm_widget_text_get_hook_set(obj, _elm_radio_label_get);
+   elm_widget_content_set_hook_set(obj, _content_set_hook);
+   elm_widget_content_get_hook_set(obj, _content_get_hook);
+   elm_widget_content_unset_hook_set(obj, _content_unset_hook);
 
    wd->radio = edje_object_add(e);
    _elm_theme_object_set(obj, wd->radio, "radio", "base", "default");
@@ -355,126 +398,18 @@ elm_radio_add(Evas_Object *parent)
    // TODO: convert Elementary to subclassing of Evas_Smart_Class
    // TODO: and save some bytes, making descriptions per-class and not instance!
    evas_object_smart_callbacks_descriptions_set(obj, _signals);
-   return obj;
-}
 
-/**
- * Set the text label of the radio object
- *
- * @param obj The radio object
- * @param label The text label string in UTF-8
- *
- * @ingroup Radio
- * @deprecated use elm_object_text_set() instead.
- */
-EAPI void
-elm_radio_label_set(Evas_Object *obj, const char *label)
-{
-   _elm_radio_label_set(obj, NULL, label);
-}
-
-/**
- * Get the text label of the radio object
- *
- * @param obj The radio object
- * @return The text label string in UTF-8
- *
- * @ingroup Radio
- * @deprecated use elm_object_text_set() instead.
- */
-EAPI const char *
-elm_radio_label_get(const Evas_Object *obj)
-{
-   return _elm_radio_label_get(obj, NULL);
-}
-
-/**
- * Set the icon object of the radio object
- *
- * Once the icon object is set, a previously set one will be deleted.
- * If you want to keep that old content object, use the
- * elm_radio_icon_unset() function.
- *
- * @param obj The radio object
- * @param icon The icon object
- *
- * @ingroup Radio
- */
-EAPI void
-elm_radio_icon_set(Evas_Object *obj, Evas_Object *icon)
-{
-   ELM_CHECK_WIDTYPE(obj, widtype);
-   Widget_Data *wd = elm_widget_data_get(obj);
-   if (!wd) return;
-   if (wd->icon == icon) return;
-   if (wd->icon) evas_object_del(wd->icon);
-   wd->icon = icon;
-   if (icon)
-     {
-        elm_widget_sub_object_add(obj, icon);
-        evas_object_event_callback_add(icon, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
-                                       _changed_size_hints, obj);
-        edje_object_part_swallow(wd->radio, "elm.swallow.content", icon);
-        edje_object_signal_emit(wd->radio, "elm,state,icon,visible", "elm");
-        edje_object_message_signal_process(wd->radio);
-     }
-   _sizing_eval(obj);
-}
-
-/**
- * Get the icon object of the radio object
- *
- * @param obj The radio object
- * @return The icon object
- *
- * @ingroup Radio
- */
-EAPI Evas_Object *
-elm_radio_icon_get(const Evas_Object *obj)
-{
-   ELM_CHECK_WIDTYPE(obj, widtype) NULL;
-   Widget_Data *wd = elm_widget_data_get(obj);
-   if (!wd) return NULL;
-   return wd->icon;
-}
+   _elm_access_object_register(obj, wd->radio);
+   _elm_access_text_set(_elm_access_object_get(obj),
+                        ELM_ACCESS_TYPE, E_("Radio"));
+   _elm_access_callback_set(_elm_access_object_get(obj),
+                            ELM_ACCESS_INFO, _access_info_cb, obj);
+   _elm_access_callback_set(_elm_access_object_get(obj),
+                            ELM_ACCESS_STATE, _access_state_cb, obj);
 
-/**
- * Unset the icon used for the radio object
- *
- * Unparent and return the icon object which was set for this widget.
- *
- * @param obj The radio object
- * @return The icon object that was being used
- *
- * @ingroup Radio
- */
-EAPI Evas_Object *
-elm_radio_icon_unset(Evas_Object *obj)
-{
-   ELM_CHECK_WIDTYPE(obj, widtype) NULL;
-   Widget_Data *wd = elm_widget_data_get(obj);
-   if (!wd) return NULL;
-   if (!wd->icon) return NULL;
-   Evas_Object *icon = wd->icon;
-   elm_widget_sub_object_del(obj, wd->icon);
-   edje_object_part_unswallow(wd->radio, wd->icon);
-   wd->icon = NULL;
-   return icon;
+   return obj;
 }
 
-/**
- * Add this radio to a group of other radio objects
- *
- * Radio objects work in groups. Each member should have a different integer
- * value assigned. In order ro have them work as a group, they need to know
- * about eacthother. This adds the given radio object to the group of which
- * the group object indicated is a member.
- *
- * @param obj The radio object
- * @param group The object whose group the object is to join
- *
- * @ingroup Radio
- */
 EAPI void
 elm_radio_group_add(Evas_Object *obj, Evas_Object *group)
 {
@@ -502,16 +437,6 @@ elm_radio_group_add(Evas_Object *obj, Evas_Object *group)
    else _state_set(obj, 0);
 }
 
-/**
- * Set the integer value that this radio object represents
- *
- * This sets the value of the radio.
- *
- * @param obj The radio object
- * @param value The value to use if this radio object is selected
- *
- * @ingroup Radio
- */
 EAPI void
 elm_radio_state_value_set(Evas_Object *obj, int value)
 {
@@ -523,16 +448,6 @@ elm_radio_state_value_set(Evas_Object *obj, int value)
    else _state_set(obj, 0);
 }
 
-/**
- * Get the integer value that this radio object represents
- *
- * This gets the value of the radio.
- *
- * @param obj The radio object
- * @return The value used if this radio object is selected
- *
- * @ingroup Radio
- */
 EAPI int
 elm_radio_state_value_get(const Evas_Object *obj)
 {
@@ -542,17 +457,6 @@ elm_radio_state_value_get(const Evas_Object *obj)
    return wd->value;
 }
 
-/**
- * Set the value of the radio.
- *
- * This sets the value of the radio group and will also set the value if
- * pointed to, to the value supplied, but will not call any callbacks.
- *
- * @param obj The radio object
- * @param value The value to use for the group
- *
- * @ingroup Radio
- */
 EAPI void
 elm_radio_value_set(Evas_Object *obj, int value)
 {
@@ -565,14 +469,6 @@ elm_radio_value_set(Evas_Object *obj, int value)
    _state_set_all(wd);
 }
 
-/**
- * Get the state of the radio object
- *
- * @param obj The radio object
- * @return The integer state
- *
- * @ingroup Radio
- */
 EAPI int
 elm_radio_value_get(const Evas_Object *obj)
 {
@@ -582,21 +478,6 @@ elm_radio_value_get(const Evas_Object *obj)
    return wd->group->value;
 }
 
-/**
- * Set a convenience pointer to a integer to change
- *
- * This sets a pointer to a integer, that, in addition to the radio objects
- * state will also be modified directly. To stop setting the object pointed
- * to simply use NULL as the valuep parameter. If valuep is not NULL, then
- * when this is called, the radio objects state will also be modified to
- * reflect the value of the integer valuep points to, just like calling
- * elm_radio_value_set().
- *
- * @param obj The radio object
- * @param valuep Pointer to the integer to modify
- *
- * @ingroup Radio
- */
 EAPI void
 elm_radio_value_pointer_set(Evas_Object *obj, int *valuep)
 {
@@ -617,3 +498,23 @@ elm_radio_value_pointer_set(Evas_Object *obj, int *valuep)
         wd->group->valuep = NULL;
      }
 }
+
+EAPI Evas_Object *
+elm_radio_selected_object_get(Evas_Object *obj)
+{
+   Eina_List *l;
+   Evas_Object *child;
+   Widget_Data *wd2;
+
+   ELM_CHECK_WIDTYPE(obj, widtype) NULL;
+   Widget_Data *wd = elm_widget_data_get(obj);
+   if (!wd) return NULL;
+
+   EINA_LIST_FOREACH(wd->group->radios, l, child)
+     {
+        wd2  = elm_widget_data_get(child);
+        if (wd2->value == wd->group->value)
+           return child;
+     }
+   return NULL;
+}