elm_label: fix build break for legacy api. 01/202701/2 submit/tizen/20190403.050239
authorBowon Ryu <bowon.ryu@samsung.com>
Tue, 2 Apr 2019 12:40:22 +0000 (21:40 +0900)
committerBowon Ryu <bowon.ryu@samsung.com>
Wed, 3 Apr 2019 05:08:00 +0000 (05:08 +0000)
this commit related with b8d3be5aa02b846d42961f74490e02448ef30d1d

@tizen_fix

Change-Id: If2154fe566384ae8dac6c8662d1466700c55f6d9
Signed-off-by: Bowon Ryu <bowon.ryu@samsung.com>
src/lib/elementary/elm_label_eo.h
src/lib/elementary/elm_label_eo.legacy.c
src/lib/elementary/elm_label_eo.legacy.h

index 56a0016..448f0e2 100644 (file)
@@ -247,6 +247,34 @@ EOAPI Eina_Bool elm_obj_label_ellipsis_get(const Eo *obj);
  */
 EOAPI void elm_obj_label_slide_go(Eo *obj);
 
+/* TIZEN_ONLY(20170526): Add elm_label_text_style_user_push, pop, peek APIs for internal usages */
+/**
+ * @internal
+ *
+ * @param[in] style The style user to push.
+ *
+ * @ingroup Elm_Label
+ */
+EOAPI void elm_obj_label_text_style_user_push(Eo *obj, const char *style);
+
+/**
+ * @internal
+ *
+ * @ingroup Elm_Label
+ */
+EOAPI void elm_obj_label_text_style_user_pop(Eo *obj);
+
+/**
+ * @internal
+ *
+ * @return string
+ *
+ * @ingroup Elm_Label
+ */
+EOAPI const char *elm_obj_label_text_style_user_peek(const Eo *obj);
+
+/* END */
+
 EWAPI extern const Efl_Event_Description _ELM_LABEL_EVENT_SLIDE_END;
 
 /** Called when slide stopped
index 649b6d5..b625381 100644 (file)
@@ -76,3 +76,23 @@ elm_label_slide_go(Elm_Label *obj)
 {
    elm_obj_label_slide_go(obj);
 }
+
+/* TIZEN_ONLY(20170526): Add elm_label_text_style_user_push, pop, peek APIs for internal usages */
+EAPI void
+elm_label_text_style_user_push(Elm_Label *obj, const char *style)
+{
+   elm_obj_label_text_style_user_push(obj, style);
+}
+
+EAPI void
+elm_label_text_style_user_pop(Elm_Label *obj)
+{
+   elm_obj_label_text_style_user_pop(obj);
+}
+
+EAPI const char *
+elm_label_text_style_user_peek(const Elm_Label *obj)
+{
+   return elm_obj_label_text_style_user_peek(obj);
+}
+/* END */
\ No newline at end of file
index 126207a..d74efad 100644 (file)
@@ -240,4 +240,31 @@ EAPI Eina_Bool elm_label_ellipsis_get(const Elm_Label *obj);
  */
 EAPI void elm_label_slide_go(Elm_Label *obj);
 
+/* TIZEN_ONLY(20170526): Add elm_label_text_style_user_push, pop, peek APIs for internal usages */
+/**
+ * @internal
+ *
+ * @param[in] style The style user to push.
+ *
+ * @ingroup Elm_Label
+ */
+EAPI void elm_label_text_style_user_push(Elm_Label *obj, const char *style);
+
+/**
+ * @internal
+ *
+ * @ingroup Elm_Label
+ */
+EAPI void elm_label_text_style_user_pop(Elm_Label *obj);
+
+/**
+ * @internal
+ *
+ * @return string
+ *
+ * @ingroup Elm_Label
+ */
+EAPI const char * elm_label_text_style_user_peek(const Elm_Label *obj);
+/* END */
+
 #endif