// TIZEN_ONLY(20150722): added signal for aux_hint(auxiliary hint)
/**
- * @internal
* @remarks Tizen only feature
*
* @brief Gets the list of supported auxiliary hint strings.
*
* @param obj The window object
* @return The list of supported auxiliary hint strings
+ *
+ * @if MOBILE @since_tizen 5.5
+ * @elseif WEARABLE @since_tizen 5.5
+ * @endif
*/
EAPI const Eina_List *elm_win_aux_hints_supported_get(const Evas_Object *obj);
/**
- * @internal
* @remarks Tizen only feature
*
* @brief Creates an auxiliary hint of the window.
* @param val The value string
* @return The ID of the created auxiliary hint,
* otherwise @c -1 on failure
+ *
+ * @if MOBILE @since_tizen 5.5
+ * @elseif WEARABLE @since_tizen 5.5
+ * @endif
*/
EAPI int elm_win_aux_hint_add(Evas_Object *obj, const char *hint, const char *val);
/**
- * @internal
* @remarks Tizen only feature
*
* @brief Deletes an auxiliary hint of the window.
* @param id The ID of the auxiliary hint
* @return @c EINA_TRUE if no error occurs,
* otherwise @c EINA_FALSE
+ *
+ * @if MOBILE @since_tizen 5.5
+ * @elseif WEARABLE @since_tizen 5.5
+ * @endif
*/
EAPI Eina_Bool elm_win_aux_hint_del(Evas_Object *obj, const int id);
/**
- * @internal
* @remarks Tizen only feature
*
* @brief Changes a value of the auxiliary hint.
* @param val The value string to be set
* @return @c EINA_TRUE if no error occurs,
* otherwise @c EINA_FALSE
+ *
+ * @if MOBILE @since_tizen 5.5
+ * @elseif WEARABLE @since_tizen 5.5
+ * @endif
*/
EAPI Eina_Bool elm_win_aux_hint_val_set(Evas_Object *obj, const int id, const char *val);
/**
- * @internal
* @remarks Tizen only feature
*
* @brief Gets a value of the auxiliary hint.
* @param id The auxiliary hint ID
* @return The string value of the auxiliary hint ID,
* otherwise @c NULL
+ *
+ * @if MOBILE @since_tizen 5.5
+ * @elseif WEARABLE @since_tizen 5.5
+ * @endif
*/
EAPI const char *elm_win_aux_hint_val_get(Evas_Object *obj, int id);
/**
- * @internal
* @remarks Tizen only feature
*
* @brief Gets an ID of the auxiliary hint string.
* @param hint The auxiliary hint string
* @return The ID of the auxiliary hint,
* otherwise @c -1 on failure
+ *
+ * @if MOBILE @since_tizen 5.5
+ * @elseif WEARABLE @since_tizen 5.5
+ * @endif
*/
EAPI int elm_win_aux_hint_id_get(Evas_Object *obj, const char *hint);