summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmitesh Singh <amitesh.sh@samsung.com>2018-04-11 18:01:50 +0900
committerAmitesh Singh <amitesh.sh@samsung.com>2018-04-11 20:00:21 +0900
commit4337206acb1557cfa15aee3f2f5b8aa740d30412 (patch)
tree6fe93e0497e57d7d91707b526d0014315e52b978
parentc76ec302ca357550e85b04a69fff850040af3369 (diff)
downloadefl-4337206acb1557cfa15aee3f2f5b8aa740d30412.tar.gz
themes: cursor - remove elm cursor inheritance.
-rw-r--r--data/elementary/themes/edc/efl/cursor.edc78
1 files changed, 72 insertions, 6 deletions
diff --git a/data/elementary/themes/edc/efl/cursor.edc b/data/elementary/themes/edc/efl/cursor.edc
index 1302e4c228..78b8590531 100644
--- a/data/elementary/themes/edc/efl/cursor.edc
+++ b/data/elementary/themes/edc/efl/cursor.edc
@@ -78,14 +78,80 @@
// "watch"
// "xterm"
-group { "efl/cursor/hand1";
- inherit: "elm/cursor/hand1/default";
+group { name: "efl/cursor/hand1";
+ images.image: "pointer_hand1.png" COMP;
+ parts {
+ part { name: "base"; mouse_events: 0; scale: 1;
+ description { state: "default" 0.0;
+ FIXED_SIZE(32, 32)
+ image.normal: "pointer_hand1.png";
+ }
+ }
+ part { name: "elm.swallow.hotspot"; type: SWALLOW;
+ description { state: "default" 0.0;
+ visible: 0;
+ fixed: 1 1;
+ rel1.relative: (26/32) (9/32);
+ rel1.to: "base";
+ rel2.to: "base";
+ rel2.relative: (26/32) (9/32);
+ rel2.offset: 0 0;
+ }
+ }
+ /* elm.content.hotspot is the old name for the above part */
+ alias: "elm.content.hotspot" "elm.swallow.hotspot";
+ }
}
-group { "efl/cursor/blank";
- inherit: "elm/cursor/blank/default";
+group { name: "efl/cursor/blank";
+ parts {
+ part { name: "elm.swallow.hotspot"; type: SWALLOW;
+ description { state: "default" 0.0;
+ visible: 0;
+ max: 1 1;
+ }
+ }
+ /* elm.content.hotspot is the old name for the above part */
+ alias: "elm.content.hotspot" "elm.swallow.hotspot";
+ }
}
-group { "efl/cursor/xterm";
- inherit: "elm/cursor/xterm/default";
+group { name: "efl/cursor/xterm";
+ images.image: "pointer_entry_bar.png" COMP;
+ images.image: "led_dot_white.png" COMP;
+ parts {
+ part { name: "base"; mouse_events: 0; scale: 1;
+ description { state: "default" 0.0;
+ min: 15 20;
+ max: 15 99999;
+ image.normal: "pointer_entry_bar.png";
+ image.border: 0 0 10 10;
+ rel1.offset: 0 2;
+ rel2.offset: -1 -3;
+ }
+ }
+ part { name: "elm.swallow.hotspot"; type: SWALLOW;
+ description { state: "default" 0.0;
+ visible: 0;
+ fixed: 1 1;
+ rel1.to: "base";
+ rel2.to: "base";
+ rel1.relative: 0.5 0.5;
+ rel2.relative: 0.5 0.5;
+ rel2.offset: 0 0;
+ }
+ }
+ /* elm.content.hotspot is the old name for the above part */
+ alias: "elm.content.hotspot" "elm.swallow.hotspot";
+ part { name: "shine";
+ description { state: "default" 0.0;
+ rel1.to: "base";
+ rel2.to: "base";
+ image.normal: "led_dot_white.png";
+ max: 27 27;
+ aspect: 1.0 1.0;
+ aspect_preference: VERTICAL;
+ }
+ }
+ }
}