jaehwan pushed a commit to branch master.
commit 1d8272fcbd1d72e9f79ae5e875e82e94e2c27c08
Author: Jaehwan Kim <[email protected]>
Date: Mon Jul 22 20:17:18 2013 +0900
theme/dark - +thumb
---
edje/dark.edc | 2 +-
edje/edc/elm/thumb.edc | 166 +++++++++++++++++++++++++++++++++++++++++++++++++
edje/img/busy-1.png | Bin 0 -> 1962 bytes
edje/img/busy-2.png | Bin 0 -> 2139 bytes
edje/img/busy-3.png | Bin 0 -> 2180 bytes
edje/img/busy-4.png | Bin 0 -> 2173 bytes
edje/img/busy-5.png | Bin 0 -> 2110 bytes
edje/img/busy-6.png | Bin 0 -> 2061 bytes
edje/img/busy-7.png | Bin 0 -> 2113 bytes
edje/img/busy-8.png | Bin 0 -> 2091 bytes
edje/img/busy-9.png | Bin 0 -> 2072 bytes
edje/img/frame_1.png | Bin 0 -> 357 bytes
edje/img/frame_2.png | Bin 0 -> 644 bytes
13 files changed, 167 insertions(+), 1 deletion(-)
diff --git a/edje/dark.edc b/edje/dark.edc
index df314bf..25ae9c2 100644
--- a/edje/dark.edc
+++ b/edje/dark.edc
@@ -28,7 +28,7 @@ collections {
#include "edc/elm/focus.edc"
#include "edc/elm/datetime.edc"
#include "edc/elm/player.edc"
-//#include "edc/elm/thumb.edc"
+#include "edc/elm/thumb.edc"
#include "edc/elm/pointer.edc"
//#include "edc/elm/fileselector.edc"
#include "edc/elm/win.edc"
diff --git a/edje/edc/elm/thumb.edc b/edje/edc/elm/thumb.edc
new file mode 100644
index 0000000..f160aa1
--- /dev/null
+++ b/edje/edc/elm/thumb.edc
@@ -0,0 +1,166 @@
+group { name: "elm/thumb/base/default";
+ images {
+ image: "frame_1.png" COMP;
+ image: "frame_2.png" COMP;
+ image: "busy-1.png" COMP;
+ image: "busy-2.png" COMP;
+ image: "busy-3.png" COMP;
+ image: "busy-4.png" COMP;
+ image: "busy-5.png" COMP;
+ image: "busy-6.png" COMP;
+ image: "busy-7.png" COMP;
+ image: "busy-8.png" COMP;
+ image: "busy-9.png" COMP;
+ }
+ parts {
+ part { name: "base0";
+ type: RECT;
+ mouse_events: 0;
+ description { state: "default" 0.0;
+ rel1.to: "over";
+ rel2.to: "over";
+ color: 64 64 64 255;
+ }
+ }
+ part { name: "base";
+ mouse_events: 0;
+ description { state: "default" 0.0;
+ image {
+ normal: "frame_2.png";
+ border: 5 5 32 26;
+ middle: 0;
+ }
+ fill.smooth : 0;
+ }
+ }
+ part { name: "clip";
+ mouse_events: 0;
+ type: RECT;
+ description { state: "default" 0.0;
+ rel1.offset: 4 4;
+ rel2.offset: -5 -5;
+ color: 255 255 255 255;
+ }
+ }
+ part { name: "elm.swallow.content";
+ type: SWALLOW;
+ clip_to: "clip";
+ description { state: "default" 0.0;
+ rel1.offset: 4 4;
+ rel2.offset: -5 -5;
+ }
+ }
+ part { name: "progress";
+ mouse_events: 0;
+ clip_to: "clip";
+ description { state: "default" 0.0;
+ min: 32 32;
+ max: 32 32;
+ visible: 0;
+ aspect: 1.0 1.0;
+ aspect_preference: BOTH;
+ }
+ description { state: "pulse" 0.0;
+ inherit: "default" 0.0;
+ visible: 1;
+ image {
+ normal: "busy-9.png";
+ tween: "busy-1.png";
+ tween: "busy-2.png";
+ tween: "busy-3.png";
+ tween: "busy-4.png";
+ tween: "busy-5.png";
+ tween: "busy-6.png";
+ tween: "busy-7.png";
+ tween: "busy-8.png";
+ border: 7 7 7 7;
+ }
+ }
+ }
+ part { name: "over";
+ mouse_events: 0;
+ description { state: "default" 0.0;
+ rel1.offset: 4 4;
+ rel2.offset: -5 -5;
+ image {
+ normal: "frame_1.png";
+ border: 2 2 28 22;
+ middle: 0;
+ }
+ fill.smooth: 0;
+ }
+ }
+ programs {
+ program { name: "start_pulse";
+ signal: "elm,state,pulse,start";
+ source: "elm";
+ action: STATE_SET "pulse" 0.0;
+ target: "progress";
+ transition: LINEAR 0.5;
+ after: "start_pulse";
+ }
+ program { name: "stop_pulse";
+ signal: "elm,state,pulse,stop";
+ source: "elm";
+ action: STATE_SET "default" 0.0;
+ target: "progress";
+ }
+ }
+ }
+}
+
+group { name: "elm/thumb/base/noframe";
+ parts {
+ part { name: "elm.swallow.content";
+ type: SWALLOW;
+ description { state: "default" 0.0;
+ rel1.offset: 4 4;
+ rel2.offset: -5 -5;
+ }
+ }
+ part { name: "progress";
+ mouse_events: 0;
+ description { state: "default" 0.0;
+ min: 32 32;
+ max: 32 32;
+ visible: 0;
+ aspect: 1.0 1.0;
+ aspect_preference: BOTH;
+ }
+ description { state: "pulse" 0.0;
+ inherit: "default" 0.0;
+ visible: 1;
+ image {
+ normal: "busy-9.png";
+ tween: "busy-1.png";
+ tween: "busy-2.png";
+ tween: "busy-3.png";
+ tween: "busy-4.png";
+ tween: "busy-5.png";
+ tween: "busy-6.png";
+ tween: "busy-7.png";
+ tween: "busy-8.png";
+ border: 7 7 7 7;
+ }
+ }
+ }
+ programs {
+ program { name: "start_pulse";
+ signal: "elm,state,pulse,start";
+ source: "elm";
+ action: STATE_SET "pulse" 0.0;
+ target: "progress";
+ transition: LINEAR 0.5;
+ after: "start_pulse";
+ }
+ program { name: "stop_pulse";
+ signal: "elm,state,pulse,stop";
+ source: "elm";
+ action: STATE_SET "default" 0.0;
+ target: "progress";
+ }
+ }
+ }
+}
+
+
diff --git a/edje/img/busy-1.png b/edje/img/busy-1.png
new file mode 100644
index 0000000..d253753
Binary files /dev/null and b/edje/img/busy-1.png differ
diff --git a/edje/img/busy-2.png b/edje/img/busy-2.png
new file mode 100644
index 0000000..bd00e34
Binary files /dev/null and b/edje/img/busy-2.png differ
diff --git a/edje/img/busy-3.png b/edje/img/busy-3.png
new file mode 100644
index 0000000..f57ec47
Binary files /dev/null and b/edje/img/busy-3.png differ
diff --git a/edje/img/busy-4.png b/edje/img/busy-4.png
new file mode 100644
index 0000000..2c13b5d
Binary files /dev/null and b/edje/img/busy-4.png differ
diff --git a/edje/img/busy-5.png b/edje/img/busy-5.png
new file mode 100644
index 0000000..2440ce0
Binary files /dev/null and b/edje/img/busy-5.png differ
diff --git a/edje/img/busy-6.png b/edje/img/busy-6.png
new file mode 100644
index 0000000..76e304a
Binary files /dev/null and b/edje/img/busy-6.png differ
diff --git a/edje/img/busy-7.png b/edje/img/busy-7.png
new file mode 100644
index 0000000..193ed66
Binary files /dev/null and b/edje/img/busy-7.png differ
diff --git a/edje/img/busy-8.png b/edje/img/busy-8.png
new file mode 100644
index 0000000..037867b
Binary files /dev/null and b/edje/img/busy-8.png differ
diff --git a/edje/img/busy-9.png b/edje/img/busy-9.png
new file mode 100644
index 0000000..c4ff461
Binary files /dev/null and b/edje/img/busy-9.png differ
diff --git a/edje/img/frame_1.png b/edje/img/frame_1.png
new file mode 100644
index 0000000..eb00ef0
Binary files /dev/null and b/edje/img/frame_1.png differ
diff --git a/edje/img/frame_2.png b/edje/img/frame_2.png
new file mode 100644
index 0000000..5c54f30
Binary files /dev/null and b/edje/img/frame_2.png differ
--
------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk