spinner: apply UI Mirroring for Tizen 3.0
authorJaeun Choi <jaeun12.choi@samsung.com>
Fri, 11 Nov 2016 09:07:35 +0000 (18:07 +0900)
committerJunsuChoi <jsuya.choi@samsung.com>
Thu, 17 Nov 2016 08:07:49 +0000 (17:07 +0900)
spinner's look and behavior are not affected by UI mirroring

Change-Id: I770c5d79c5479d5f1c1914a8669421e13dde9eec
Signed-off-by: Jaeun Choi <jaeun12.choi@samsung.com>
src/lib/elm_spinner.c
src/lib/elm_spinner.eo

index 19840850d8ed924e48bd38c9f4bc323e19a00e2a..fbf647f97a94cc6527bb7183c7ec659c34f54f0a 100644 (file)
@@ -1441,6 +1441,22 @@ _elm_spinner_elm_widget_theme_apply(Eo *obj, Elm_Spinner_Data *sd)
    return ELM_THEME_APPLY_SUCCESS;
 }
 
+//TIZEN_ONLY(20161111): apply UI Mirroring for Tizen 3.0 UX
+EOLIAN static Eina_Bool
+_elm_spinner_elm_widget_mirrored_get(Eo *obj EINA_UNUSED, Elm_Spinner_Data *_pd EINA_UNUSED)
+{
+   return EINA_FALSE;
+}
+//
+
+//TIZEN_ONLY(20161111): apply UI Mirroring for Tizen 3.0 UX
+EOLIAN static void
+_elm_spinner_elm_widget_mirrored_set(Eo *obj EINA_UNUSED, Elm_Spinner_Data *_pd EINA_UNUSED, Eina_Bool mirrored EINA_UNUSED)
+{
+   return;
+}
+//
+
 static Eina_Bool _elm_spinner_smart_focus_next_enable = EINA_FALSE;
 
 EOLIAN static Eina_Bool
index 8ae5ee2ddc3ba8c13d7c77e4b4f4052eb223d2fc..f35c13972031c5649eebbc91b2a912388ee06fc3 100644 (file)
@@ -326,6 +326,9 @@ class Elm.Spinner (Elm.Layout, Elm_Interface_Atspi_Value, Elm_Interface_Atspi_Wi
       Elm.Widget.focus_direction;
       Elm.Widget.on_focus;
       Elm.Widget.event;
+      //TIZEN_ONLY(20161111): apply UI Mirroring for Tizen 3.0 UX
+      Elm.Widget.mirrored;
+      //
       Elm.Layout.sizing_eval;
       Elm_Interface_Atspi_Accessible.name.get;
       Elm_Interface_Atspi_Value.value_and_text.get;