summaryrefslogtreecommitdiff
path: root/src/YalpClients/EflClient/yalp_gui.edc
diff options
context:
space:
mode:
authorNicole Vreden <damba@mecka.net>2009-12-03 00:43:00 +0100
committerNicole Vreden <damba@mecka.net>2009-12-03 00:43:00 +0100
commit07a2982480cb72a7ff7049e0d82ee45f833739e0 (patch)
tree8a0009131931aa3ebbbc7ed6a2123b1480565f38 /src/YalpClients/EflClient/yalp_gui.edc
parentd50f59a615374953949a60eb51206008c66cf01e (diff)
EflClient: Added moving bars
- altered edc-file for moving bar with button - moved video to background Signed-off-by: Nicole Vreden <damba@mecka.net>
Diffstat (limited to 'src/YalpClients/EflClient/yalp_gui.edc')
-rw-r--r--src/YalpClients/EflClient/yalp_gui.edc203
1 files changed, 176 insertions, 27 deletions
diff --git a/src/YalpClients/EflClient/yalp_gui.edc b/src/YalpClients/EflClient/yalp_gui.edc
index f895421..cca8331 100644
--- a/src/YalpClients/EflClient/yalp_gui.edc
+++ b/src/YalpClients/EflClient/yalp_gui.edc
@@ -25,45 +25,194 @@ collections
}
}
}
+
+ part
+ {
+ name: "video";
+ type: SWALLOW;
+ description {
+ state: "default" 0.0;
+ aspect: 1.7 1.8;
+ rel1
+ {
+ relative: 0.0 0.0;
+ offset: 0 0;
+ }
+ rel2
+ {
+ relative: 1.0 1.0;
+ offset: 0 0;
+ }
+ }
+ }
+
+ part
+ {
+ name: "searchframe";
+ type: RECT;
+ mouse_events: 1;
+
+ description
+ {
+ state: "default" 0.0;
+ align: 0 0;
+ color: 30 89 114 175;
+
+ rel1
+ {
+ relative: 0.0 0.0;
+ offset: 0 0;
+
+ }
+ rel2
+ {
+ relative: 1.0 0.2;
+ offset: -1 -1;
+ }
+ }
+ description
+ {
+ state: "default" 1.0;
+ rel1
+ {
+ relative: 0.0 0.0;
+ offset: 0 0;
+ }
+ rel2
+ {
+ relative: 1.0 0.03;
+ offset: -1 -1;
+ }
+ }
+ }
+
+ part
+ {
+ name: "controlframe";
+ type: RECT;
+ mouse_events: 1;
+
+ description
+ {
+ state: "default" 0.0;
+ align: 0 0;
+ color: 30 89 114 175;
+
+ rel1
+ {
+ relative: 0.0 0.8;
+ }
+ rel2
+ {
+ relative: 1.0 1.0;
+ }
+ }
+ description
+ {
+ state: "default" 1.0;
+ rel1
+ {
+ relative: 0.0 0.97;
+ offset: 0 0;
+ }
+ rel2
+ {
+ relative: 1.0 1.0;
+ offset: 0 0;
+ }
+ }
+ }
part
{
name: "button";
type: RECT;
mouse_events: 1;
-
+
description
{
state: "default" 0.0;
- min: 100 50;
- max: 100 50;
- align: 0.5 0.5;
-
color: 211 168 234 255;
-
- rel1 {
- relative, 0.0 0.0;
- offset, 0 0;
+
+ rel1
+ {
+ relative: 0.8 0.05;
+ offset: 0 0;
}
- rel2 {
- relative, 1.0 1.0;
- offset, -1 -1;
+ rel2
+ {
+ relative: 0.95 0.15;
+ offset: -1 -1;
}
- }
- description {
- state, "clicked" 0.0;
- min, 100 50;
- max, 100 50;
- align, 0.5 0.5;
- color, 170 89 214 255;
- rel1 {
- relative, 0.0 0.0;
- offset, 0 0;
- }
- rel2 {
- relative, 1.0 1.0;
- offset, -1 -1;
+ }
+ description
+ {
+ state: "default" 1.0;
+ rel1
+ {
+ relative: 0.8 0.0;
+ offset: 0 0;
+ }
+ rel2
+ {
+ relative: 0.95 0.03;
+ offset: -1 -1;
+ }
+ }
+ }
+
+ part
+ {
+ name: "buttontext";
+ type: TEXT;
+ mouse_events: 0;
+ description
+ {
+ color: 255 255 255 255;
+ rel1
+ {
+ relative: 0.83 0.08;
+ }
+ rel2
+ {
+ relative: 0.94 0.12;
}
+ text
+ {
+ text: "Find...";
+ font:"VeraBd.ttf";
+ size: 12;
+ }
+ }
+ description
+ {
+ state: "default" 1.0;
+ rel1
+ {
+ relative: 0.83 0.0;
+ offset: 0 0;
+ }
+ rel2
+ {
+ relative: 0.94 0.03;
+ offset: -1 -1;
+ }
+ }
+ }
+ }
+ programs
+ {
+ program
+ {
+ name: "hide_searchframe";
+ source: "searchframe";
+ signal: "mouse,clicked,1";
+ action: STATE_SET "default" 1.0;
+ target: "searchframe";
+ target: "button";
+ target: "buttontext";
+ transition:SINUSOIDAL 1;
+ }
+ }
}
}
-