[elm_slider] Applied efl-dark theme v0.2 for Slider widget.
[platform/core/uifw/efl-theme-tizen.git] / themes / widgets / radio.edc
index b5ea6ef..01a9b7a 100644 (file)
  * limitations under the License.
  */
 
-
-
-#define RADIO_STATE_DEFAULT 0
-#define RADIO_STATE_VISIBLE 1
-#define RADIO_STATE_DISABLED_VISIBLE 2
-#define RADIO_STATE_DISABLED 3
+#define RADIO_STATE_DEFAULT 0 // radio is off
+#define RADIO_STATE_VISIBLE 1 // radio is on
 
    styles {
       style { name: "radio_label_textblock_style";
 #define RADIO_STYLE_DEFAULT(style_name, min_width, min_height) \
    group { name: "elm/radio/base/"style_name; \
       images { \
-         image: "00_button_radio_Activated_dim.png" COMP; \
-         image: "00_button_radio_Activated.png" COMP; \
+         image: "00_button_radio_activated_dim.png" COMP; \
+         image: "00_button_radio_activated.png" COMP; \
          image: "00_button_radio_bg.png" COMP; \
          image: "00_button_radio_dim_bg.png" COMP; \
          image: "00_button_radio_press_bg.png" COMP; \
          image: "00_button_radio_press.png" COMP; \
       } \
+      script { \
+         public radio_state = RADIO_STATE_DEFAULT; \
+      } \
       parts { \
          part { name: "back_bg"; \
             type: RECT; \
@@ -85,7 +84,7 @@
                rel1.to: "bg"; \
                rel2.to: "bg"; \
                max: 0 0; \
-               image.normal: "00_button_radio_Activated.png"; \
+               image.normal: "00_button_radio_activated.png"; \
                visible: 0; \
             } \
             description { state: "visible" 0.0; \
@@ -98,7 +97,7 @@
             } \
             description { state: "disabled_visible" 0.0; \
                inherit: "visible" 0.0; \
-               image.normal: "00_button_radio_Activated_dim.png"; \
+               image.normal: "00_button_radio_activated_dim.png"; \
             } \
             description { state: "pressed" 0.0; \
                inherit: "visible" 0.0; \
             signal: "mouse,up,1"; \
             source: "over2"; \
             script { \
-               new st[31]; \
-               new Float:vl; \
-               get_state(PART:"radio", st, 30, vl); \
-               if (!strcmp(st, "pressed")) \
-                 set_state(PART:"radio", "visible", 0.0); \
+               if (get_int(radio_state) == RADIO_STATE_VISIBLE) \
+                  set_state(PART:"radio", "visible", 0.0); \
                else \
-                 set_state(PART:"radio", "default", 0.0); \
+                  set_state(PART:"radio", "default", 0.0); \
                set_state(PART:"bg", "default", 0.0); \
             } \
          } \
             signal: "mouse,down,1"; \
             source: "over2"; \
             script { \
-               new st[31]; \
-               new Float:vl; \
-               get_state(PART:"radio", st, 30, vl); \
-               if (!strcmp(st, "visible")) \
-                 set_state(PART:"radio", "pressed", 0.0); \
+               if (get_int(radio_state) == RADIO_STATE_VISIBLE) \
+                  set_state(PART:"radio", "pressed", 0.0); \
                else \
-                 set_state(PART:"radio", "default", 0.0); \
+                  set_state(PART:"radio", "default", 0.0); \
                set_state(PART:"bg", "pressed", 0.0); \
             } \
          } \
             signal: "mouse,out"; \
             source: "over2"; \
             script { \
-               new st[31]; \
-               new Float:vl; \
-               get_state(PART:"radio", st, 30, vl); \
-               if (!strcmp(st, "visible")) \
-                 set_state(PART:"radio", "visible", 0.0); \
+               if (get_int(radio_state) == RADIO_STATE_VISIBLE) \
+                  set_state(PART:"radio", "visible", 0.0); \
                else \
-                 set_state(PART:"radio", "default", 0.0); \
+                  set_state(PART:"radio", "default", 0.0); \
                set_state(PART:"bg", "default", 0.0); \
             } \
          } \
             signal: "elm,state,radio,on"; \
             source: "elm"; \
             script { \
+               set_int(radio_state, RADIO_STATE_VISIBLE); \
                run_program(PROGRAM:"radio_show_effect"); \
                run_program(PROGRAM:"radio_draw_effect"); \
             } \
             signal: "elm,state,radio,off"; \
             source: "elm"; \
             script { \
+               set_int(radio_state, RADIO_STATE_DEFAULT); \
                set_state(PART:"opacity_clip", "default", 0.0); \
                set_state(PART:"radio", "default", 0.0); \
             } \
@@ -407,5 +399,3 @@ RADIO_STYLE_DEFAULT("default/extended", RADIO_STYLE_DEFAULT_EXTENDED_BG_IMAGE_MI
 
 #undef RADIO_STATE_DEFAULT
 #undef RADIO_STATE_VISIBLE
-#undef RADIO_STATE_DISABLED_VISIBLE
-#undef RADIO_STATE_DISABLED