summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmitesh Singh <amitesh.sh@samsung.com>2018-04-11 19:19:41 +0900
committerAmitesh Singh <amitesh.sh@samsung.com>2018-04-11 20:00:21 +0900
commit11c3b67e45f2c8e93aa97899f4bc4715369934f9 (patch)
tree70c172f34b623d92d6110591ecbd8795450d1717
parent29240037a6a270fdd6950de04901d01a0de27a47 (diff)
downloadefl-11c3b67e45f2c8e93aa97899f4bc4715369934f9.tar.gz
theme: pointer - remove elm pointer inheritance.
-rw-r--r--data/elementary/themes/edc/efl/pointer.edc224
1 files changed, 209 insertions, 15 deletions
diff --git a/data/elementary/themes/edc/efl/pointer.edc b/data/elementary/themes/edc/efl/pointer.edc
index 57bdfbfcee..a101aa73c7 100644
--- a/data/elementary/themes/edc/efl/pointer.edc
+++ b/data/elementary/themes/edc/efl/pointer.edc
@@ -1,27 +1,221 @@
-group { "efl/pointer";
- inherit: "elm/pointer/base/default";
+group { name: "efl/pointer";
+ images {
+ image: "pointer.png" COMP;
+ image: "pointer_glow.png" COMP;
+ }
+ parts {
+ part {
+ name: "base";
+ mouse_events: 0;
+ description {
+ state: "default" 0.0;
+ aspect: 1.0 1.0;
+ min: 32 32;
+ /* force a specific aspect ratio so
+ * when it gets scaled it wont squash
+ * or stretch */
+ aspect_preference: BOTH;
+ /* both axes control aspect - thus it
+ * will be WITHIN the bounds the axes
+ * of thre part describe */
+ image {
+ normal: "pointer.png";
+ }
+ }
+ }
+ part { name: "glow";
+ description { state: "default" 0.0;
+ image.normal: "pointer_glow.png";
+ color: 255 255 255 0;
+ }
+ description { state: "visible" 0.0;
+ inherit: "default" 0.0;
+ color: 255 255 255 255;
+ }
+ description { state: "faded" 0.0;
+ inherit: "default" 0.0;
+ color: 255 255 255 128;
+ }
+ }
+ part {
+ name: "elm.swallow.hotspot";
+ /* this is a "fake" swallow part
+ * that is used by e to determine
+ * the pointer hotspot - or where
+ * the actual mouse events get
+ * reported from on the cursor */
+ type: SWALLOW;
+ description {
+ state: "default" 0.0;
+ visible: 0;
+ fixed: 1 1;
+ rel1 {
+ /* the hotspot will scale with the cursor here */
+ to: "base";
+ relative: 0.1875 0.1875;
+ offset: 0 0;
+ }
+ rel2 {
+ to: "base";
+ relative: 0.1875 0.1875;
+ offset: 0 0;
+ }
+ }
+ }
+ }
+ programs {
+ program {
+ signal: "elm,action,mouse,down"; source: "elm";
+ action: STATE_SET "visible" 0.0;
+ target: "glow";
+ after: "fade";
+ }
+ program { name: "fade";
+ action: STATE_SET "default" 0.0;
+ transition: SINUSOIDAL 0.5;
+ target: "glow";
+ }
+ program { name: "pulse";
+ signal: "e,state,mouse,idle"; source: "e";
+ in: 10.0 0.0;
+ action: STATE_SET "faded" 0.0;
+ transition: SINUSOIDAL 0.25;
+ target: "glow";
+ after: "pulse2";
+ }
+ program { name: "pulse2";
+ action: STATE_SET "default" 0.0;
+ transition: SINUSOIDAL 0.5;
+ target: "glow";
+ after: "pulse";
+ }
+ program {
+ signal: "elm,action,mouse,move"; source: "elm";
+ action: STATE_SET "default" 0.0;
+ target: "glow";
+ after: "stop2";
+ }
+ program { name: "stop2";
+ action: ACTION_STOP;
+ target: "pulse";
+ target: "pulse2";
+ }
+ }
}
-group { "efl/pointer:bottom_right_corner";
- inherit: "elm/pointer/base/bottom_right_corner";
+group { name: "efl/pointer:bottom_right_corner";
+ inherit: "efl/pointer";
+ images.image: "mini_box_glow.png" COMP;
+ parts {
+ part { name: "box";
+ insert_after: "glow";
+ description { state: "default" 0.0;
+ image.normal: "mini_box_glow.png";
+ image.border: 7 7 7 7;
+ rel1.relative: 0.3 0.3;
+ rel2.relative: 0.7 0.7;
+ }
+ description { state: "p1" 0.0;
+ inherit: "default" 0.0;
+ rel1.relative: 0.3 0.3;
+ rel2.relative: 1.0 1.0;
+ }
+ }
+ }
+ programs {
+ program { name: "box1";
+ signal: "load"; source: "";
+ action: STATE_SET "p1" 0.0;
+ transition: SINUSOIDAL 0.5;
+ target: "box";
+ after: "box2";
+ }
+ program { name: "box2";
+ action: STATE_SET "default" 0.0;
+ transition: SINUSOIDAL 0.5;
+ target: "box";
+ after: "box1";
+ }
+ }
}
-group { "efl/pointer:bottom_left_corner";
- inherit: "elm/pointer/base/bottom_left_corner";
+group { name: "efl/pointer:bottom_left_corner";
+ inherit: "efl/pointer:bottom_right_corner";
+ parts {
+ part { name: "box";
+ description { state: "default" 0.0;
+ rel1.relative: 0.7 0.3;
+ rel2.relative: 1.0 0.7;
+ }
+ description { state: "p1" 0.0;
+ rel1.relative: 0.3 0.3;
+ rel2.relative: 1.0 1.0;
+ }
+ }
+ }
}
-group { "efl/pointer:bottom_side";
- inherit: "elm/pointer/base/bottom_side";
-}
-group { "efl/pointer:top_right_corner";
- inherit: "elm/pointer/base/top_right_corner";
+group { name: "efl/pointer:bottom_side";
+ inherit: "efl/pointer:bottom_right_corner";
+ parts {
+ part { name: "box";
+ description { state: "default" 0.0;
+ rel1.relative: 0.3 0.3;
+ rel2.relative: 1.0 0.7;
+ }
+ description { state: "p1" 0.0;
+ rel1.relative: 0.3 0.3;
+ rel2.relative: 1.0 1.0;
+ }
+ }
+ }
}
-group { "efl/pointer:top_left_corner";
- inherit: "elm/pointer/base/top_left_corner";
+group { name: "efl/pointer:top_right_corner";
+ inherit: "efl/pointer:bottom_right_corner";
+ parts {
+ part { name: "box";
+ description { state: "default" 0.0;
+ rel1.relative: 0.3 0.3;
+ rel2.relative: 0.7 0.7;
+ }
+ description { state: "p1" 0.0;
+ rel1.relative: 0.3 0.0;
+ rel2.relative: 1.0 0.7;
+ }
+ }
+ }
}
-group { "efl/pointer:top_side";
- inherit: "elm/pointer/base/top_side";
+group { name: "efl/pointer:top_left_corner";
+ inherit: "efl/pointer:bottom_right_corner";
+ parts {
+ part { name: "box";
+ description { state: "default" 0.0;
+ rel1.relative: 0.6 0.6;
+ rel2.relative: 1.0 1.0;
+ }
+ description { state: "p1" 0.0;
+ rel1.relative: 0.3 0.3;
+ rel2.relative: 1.0 1.0;
+ }
+ }
+ }
}
+
+group { name: "efl/pointer:top_side";
+ inherit: "efl/pointer:bottom_right_corner";
+ parts {
+ part { name: "box";
+ description { state: "default" 0.0;
+ rel1.relative: 0.3 0.6;
+ rel2.relative: 1.0 1.0;
+ }
+ description { state: "p1" 0.0;
+ rel1.relative: 0.3 0.3;
+ rel2.relative: 1.0 1.0;
+ }
+ }
+ }
+} \ No newline at end of file