|
|
|
@ -44,6 +44,14 @@ collections { |
|
|
|
|
images.image: "icon_volume2.png" COMP; |
|
|
|
|
images.image: "icon_spanner2.png" COMP; |
|
|
|
|
|
|
|
|
|
images.image: "tv-bg.png" COMP; |
|
|
|
|
images.image: "tv-over.png" COMP; |
|
|
|
|
images.image: "r-0.png" COMP; |
|
|
|
|
images.image: "r-1.png" COMP; |
|
|
|
|
images.image: "r-2.png" COMP; |
|
|
|
|
images.image: "r-3.png" COMP; |
|
|
|
|
images.image: "r-4.png" COMP; |
|
|
|
|
|
|
|
|
|
script { |
|
|
|
|
public pos_visible; |
|
|
|
|
public pos_timer; |
|
|
|
@ -1138,6 +1146,75 @@ collections { |
|
|
|
|
signal: "action,pause"; source: "rage"; |
|
|
|
|
action: SIGNAL_EMIT "mouse,move" "event"; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
part { name: "tv-bg"; |
|
|
|
|
clip_to: "tv-clip"; |
|
|
|
|
description { state: "default" 0.0; |
|
|
|
|
rel1.to: "tv"; |
|
|
|
|
rel1.relative: (40/256) (120/256); |
|
|
|
|
rel2.to: "tv"; |
|
|
|
|
rel2.relative: (174/256) (222/256); |
|
|
|
|
image.normal: "tv-bg.png"; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
part { name: "tv-anim"; |
|
|
|
|
clip_to: "tv-clip"; |
|
|
|
|
description { state: "default" 0.0; |
|
|
|
|
rel1.to: "tv-bg"; |
|
|
|
|
rel2.to: "tv-bg"; |
|
|
|
|
image.tween: "r-4.png"; |
|
|
|
|
image.tween: "r-3.png"; |
|
|
|
|
image.tween: "r-2.png"; |
|
|
|
|
image.tween: "r-1.png"; |
|
|
|
|
image.normal: "r-0.png"; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
part { name: "tv"; |
|
|
|
|
clip_to: "tv-clip"; |
|
|
|
|
description { state: "default" 0.0; |
|
|
|
|
aspect: 1.0 1.0; aspect_preference: BOTH; |
|
|
|
|
max: 256 256; |
|
|
|
|
image.normal: "tv-over.png"; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
program { |
|
|
|
|
signal: "mouse,clicked,1"; source: "tv"; |
|
|
|
|
action: SIGNAL_EMIT "about,hide" "rage"; |
|
|
|
|
} |
|
|
|
|
part { name: "tv-clip"; type: RECT; |
|
|
|
|
description { state: "default" 0.0; |
|
|
|
|
visible: 0; |
|
|
|
|
color: 255 255 255 0; |
|
|
|
|
} |
|
|
|
|
description { state: "visible" 0.0; |
|
|
|
|
visible: 1; |
|
|
|
|
color: 255 255 255 255; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
program { |
|
|
|
|
signal: "about,show"; source: "rage"; |
|
|
|
|
action: STATE_SET "visible" 0.0; |
|
|
|
|
transition: SINUSOIDAL 0.5; |
|
|
|
|
target: "tv-clip"; |
|
|
|
|
} |
|
|
|
|
program { |
|
|
|
|
signal: "about,hide"; source: "rage"; |
|
|
|
|
action: STATE_SET "default" 0.0; |
|
|
|
|
transition: SINUSOIDAL 1.0; |
|
|
|
|
target: "tv-clip"; |
|
|
|
|
after: "tv-hide2"; |
|
|
|
|
} |
|
|
|
|
program { name: "tv-hide2"; |
|
|
|
|
action: ACTION_STOP; |
|
|
|
|
target: "tv-anim"; |
|
|
|
|
} |
|
|
|
|
program { name: "tv-anim"; |
|
|
|
|
signal: "about,show"; source: "rage"; |
|
|
|
|
action: STATE_SET "default" 0.0; |
|
|
|
|
transition: LINEAR 0.5; |
|
|
|
|
target: "tv-anim"; |
|
|
|
|
after: "tv-anim"; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|