summaryrefslogtreecommitdiff
path: root/data/effect_model_list.edc
diff options
context:
space:
mode:
Diffstat (limited to 'data/effect_model_list.edc')
-rw-r--r--data/effect_model_list.edc114
1 files changed, 114 insertions, 0 deletions
diff --git a/data/effect_model_list.edc b/data/effect_model_list.edc
new file mode 100644
index 0000000..9e30657
--- /dev/null
+++ b/data/effect_model_list.edc
@@ -0,0 +1,114 @@
+group
+{
+ name: UG_GRP_LIST;
+ parts
+ {
+ part
+ {
+ name: "icon";
+ type: RECT;
+ mouse_events: 0;
+ scale: 1;
+ description
+ {
+ state: "default" 0.0;
+ max : UG_THUMBNAIL_W UG_THUMBNAIL_H;
+ fixed: 1 1;
+ align: 0.5 0.5;
+ aspect: 1.0 1.0;
+ rel1
+ {
+ relative: 0.0 0.0;
+ }
+ rel2
+ {
+ relative: 1.0 1.0;
+ }
+ visible: 0;
+ color: 0 0 0 255;
+ }
+ description
+ {
+ state: "min" 0.0;
+ inherit: "default" 0.0;
+ max: 0 0;
+ }
+ description
+ {
+ state: "level1" 0.0;
+ inherit: "default" 0.0;
+ rel1
+ {
+ relative: 0.0 0.0;
+ }
+ rel2
+ {
+ relative: 1.0 1.0;
+ }
+ }
+ }
+
+ part
+ {
+ name: "swallow_thumb";
+ type: SWALLOW;
+ mouse_events: 0;
+
+ scale: 1;
+ description
+ {
+ state: "default" 0.0;
+ align: 0.5 0.5;
+ rel1
+ {
+ to: "icon";
+ }
+ rel2
+ {
+ to: "icon";
+ }
+ }
+ }
+ part
+ {
+ name: "myfile.memory_icon.sub";
+ type: SWALLOW;
+ scale: 1;
+ description
+ {
+ state: "default" 0.0;
+ max : UG_MEMORY_SUB_THUMB_W UG_MEMORY_SUB_THUMB_H;
+ min : UG_MEMORY_SUB_THUMB_W UG_MEMORY_SUB_THUMB_H;
+ fixed: 1 1;
+ rel1
+ {
+ relative:0.5 0.5; to:"icon";
+ }
+ rel2
+ {
+ relative:1.0 1.0;to:"icon";
+ }
+ }
+ }
+ }
+ programs
+ {
+ program
+ {
+ name: "effect_gen";
+ signal: "effect.gen";
+ source: "thumb";
+ action: STATE_SET "min" 0.0;
+ target: "icon";
+ after: "thumb_gen_1";
+ }
+ EFFECT_PROGRAMS("thumb_gen_1", "level1", "thumb_gen_2");
+ program
+ {
+ name: "thumb_gen_2";
+ action: STATE_SET "default" 0.0;
+ target: "icon";
+ transition: SINUSOIDAL 0.1;
+ }
+ }
+}