summaryrefslogtreecommitdiff
path: root/res/edc/view/viewer.edc
diff options
context:
space:
mode:
Diffstat (limited to 'res/edc/view/viewer.edc')
-rw-r--r--res/edc/view/viewer.edc113
1 files changed, 113 insertions, 0 deletions
diff --git a/res/edc/view/viewer.edc b/res/edc/view/viewer.edc
index b0f1ab4..0810c18 100644
--- a/res/edc/view/viewer.edc
+++ b/res/edc/view/viewer.edc
@@ -18,6 +18,8 @@ group {
name: GRP_VIEWER_VIEW;
images {
image: IMAGE_VIEWER_FAVORITE COMP;
+ image: IMAGE_VIEWER_FF_ICON COMP;
+ image: IMAGE_VIEWER_REW_ICON COMP;
}
parts {
part {
@@ -228,6 +230,93 @@ group {
visible: 1;
}
}
+ part {
+ name: "padding_bottom";
+ type: SPACER;
+ scale: 1;
+ description {
+ state: "default" 0.0;
+ min: 35 35;
+ rel1 {
+ to: "toparea";
+ relative: 0.0 1.0;
+ }
+ rel2 {
+ to: "toparea";
+ relative: 0.0 1.0;
+ }
+ fixed: 1 1;
+ align: 0.0 0.0;
+ }
+ }
+ part {
+ name: "wind_icon";
+ type: IMAGE;
+ scale: 1;
+ description {
+ state: "default" 0.0;
+ min: 46 36;
+ rel1 {
+ to: "padding_bottom";
+ relative: 1.0 1.0;
+ }
+ rel2 {
+ to: "padding_bottom";
+ relative: 1.0 1.0;
+ }
+ image.normal: IMAGE_VIEWER_FF_ICON;
+ fixed: 1 1;
+ align: 0.0 0.0;
+ visible: 0;
+ }
+ description {
+ state: "ff" 0.0;
+ inherit: "default" 0.0;
+ image.normal: IMAGE_VIEWER_FF_ICON;
+ visible: 1;
+ }
+ description {
+ state: "rew" 0.0;
+ inherit: "default" 0.0;
+ image.normal: IMAGE_VIEWER_REW_ICON;
+ visible: 1;
+ }
+ }
+ part {
+ name: PART_VIEWER_WIND;
+ type: TEXT;
+ scale: 1;
+ description {
+ state: "default" 0.0;
+ min: 56 0;
+ rel1 {
+ to: "wind_icon";
+ relative: 1.0 0.0;
+ }
+ rel2 {
+ to: "wind_icon";
+ }
+ text {
+ font: FONT_LIGHT;
+ size: 36;
+ align: 1.0 0.5;
+ }
+ color: COLOR_TEXT_FOCUS;
+ fixed: 1 0;
+ align: 0.0 0.5;
+ visible: 0;
+ }
+ description {
+ state: "ff" 0.0;
+ inherit: "default" 0.0;
+ visible: 1;
+ }
+ description {
+ state: "rew" 0.0;
+ inherit: "default" 0.0;
+ visible: 1;
+ }
+ }
/* BOTTOM */
part {
@@ -639,5 +728,29 @@ group {
action: STATE_SET "default" 0.0;
target: PART_VIEWER_FAVORITE;
}
+ program {
+ name: SIG_VIEWER_SHOW_FF;
+ signal: SIG_VIEWER_SHOW_FF;
+ source: "";
+ action: STATE_SET "ff" 0.0;
+ target: "wind_icon";
+ target: PART_VIEWER_WIND;
+ }
+ program {
+ name: SIG_VIEWER_SHOW_REW;
+ signal: SIG_VIEWER_SHOW_REW;
+ source: "";
+ action: STATE_SET "rew" 0.0;
+ target: "wind_icon";
+ target: PART_VIEWER_WIND;
+ }
+ program {
+ name: SIG_VIEWER_HIDE_WIND;
+ signal: SIG_VIEWER_HIDE_WIND;
+ source: "";
+ action: STATE_SET "default" 0.0;
+ target: "wind_icon";
+ target: PART_VIEWER_WIND;
+ }
}
}