Rage video and audio player
https://www.enlightenment.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2236 lines
74 KiB
2236 lines
74 KiB
efl_version: 1 25; |
|
|
|
color_tree { |
|
":bg" { |
|
"/bg/normal"; |
|
"/bg/normal/background"; |
|
} |
|
":bg-dark" { |
|
"/bg-dark/normal"; |
|
"/bg/selected/titlebar"; |
|
} |
|
":selected" { |
|
"/bg/selected"; |
|
} |
|
":fg" { |
|
"/fg/normal"; |
|
} |
|
":fg-light" { |
|
"/fg/pressed"; |
|
"/fg/selected"; |
|
} |
|
":shadow" { |
|
"/shadow/normal"; |
|
} |
|
} |
|
|
|
color_classes { |
|
color_class { name: "/bg-dark/normal"; color: 32 32 32 255; } |
|
color_class { name: "/bg/normal"; color: 64 64 64 255; } |
|
color_class { name: "/bg/normal/background"; color: 64 64 64 255; } |
|
color_class { name: "/bg/selected"; color: 51 153 255 255; } |
|
color_class { name: "/bg/selected/titlebar"; color: 32 32 32 255; } |
|
color_class { name: "/fg/normal"; color: 160 160 160 255; } |
|
color_class { name: "/fg/pressed"; color: 255 255 255 255; } |
|
color_class { name: "/fg/selected"; color: 255 255 255 255; } |
|
color_class { name: "/shadow/normal"; color: 0 0 0 128; } |
|
} |
|
|
|
collections { |
|
|
|
#define CTRLSIZE 26 |
|
group { name: "rage/core"; |
|
images.image: "vg1.png" COMP; |
|
|
|
images.image: "shadow_circle_horiz.png" COMP; |
|
images.image: "shadow_circle_vert.png" COMP; |
|
|
|
images.image: "icon_exclamation.png" COMP; |
|
|
|
images.image: "icon_eject.png" COMP; |
|
|
|
images.image: "icon_mute.png" COMP; |
|
images.image: "icon_volume.png" COMP; |
|
|
|
images.image: "icon_prev.png" COMP; |
|
images.image: "icon_next.png" COMP; |
|
images.image: "icon_rewind.png" COMP; |
|
images.image: "icon_forward.png" COMP; |
|
|
|
images.image: "icon_stop.png" COMP; |
|
images.image: "icon_pause.png" COMP; |
|
images.image: "icon_play.png" COMP; |
|
|
|
images.image: "icon_refresh.png" COMP; |
|
images.image: "icon_arrow_right.png" COMP; |
|
|
|
images.image: "icon_spanner.png" COMP; |
|
images.image: "icon_fullscreen.png" COMP; |
|
images.image: "icon_unfullscreen.png" COMP; |
|
images.image: "icon_close.png" COMP; |
|
|
|
images.image: "win_shadow.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; |
|
public drag_is_down; |
|
public novideo; |
|
public browser; |
|
|
|
public message(Msg_Type:type, id, ...) { |
|
if ((type == MSG_FLOAT) && (id == 1)) { // volume 0.0->1.0 |
|
new Float:val = getfarg(2); |
|
|
|
if (val < 0.0) val = 0.0; |
|
else if (val > 1.0) val = 1.0; |
|
custom_state(PART:"vol_indicator_fg", "default", 0.0); |
|
set_state_val(PART:"vol_indicator_fg", STATE_REL2, val, 1.0); |
|
set_state(PART:"vol_indicator_fg", "custom", 0.0); |
|
} |
|
} |
|
public pos_timeout(val) { |
|
set_int(pos_timer, 0); |
|
if (get_int(pos_visible)) { |
|
set_int(pos_visible, 0); |
|
stop_program(PROGRAM:"poshide"); |
|
stop_program(PROGRAM:"posshow"); |
|
run_program(PROGRAM:"poshide"); |
|
stop_program(PROGRAM:"cbarhide"); |
|
stop_program(PROGRAM:"cbarshow"); |
|
run_program(PROGRAM:"cbarhide"); |
|
} |
|
} |
|
public pos_show() { |
|
if (!get_int(browser)) { |
|
new t; |
|
|
|
if (!get_int(pos_visible)) { |
|
set_int(pos_visible, 1); |
|
stop_program(PROGRAM:"poshide"); |
|
stop_program(PROGRAM:"posshow"); |
|
run_program(PROGRAM:"posshow"); |
|
stop_program(PROGRAM:"cbarhide"); |
|
stop_program(PROGRAM:"cbarshow"); |
|
run_program(PROGRAM:"cbarshow"); |
|
} |
|
t = get_int(pos_timer); |
|
if (t) cancel_timer(t); |
|
t = timer(5.0, "pos_timeout", 1); |
|
set_int(pos_timer, t); |
|
} |
|
} |
|
} |
|
|
|
parts { |
|
//// -- BACKGROUND |
|
part { name: "bg"; type: RECT; mouse_events: 0; |
|
description { state: "default" 0.0; |
|
color_class: "/bg/normal/background"; |
|
} |
|
} |
|
part { name: "vg1"; mouse_events: 0; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel2.relative: 1.0 0.5; |
|
image.normal: "vg1.png"; |
|
color_class: "/bg/normal/background"; |
|
fill { |
|
size.relative: 0.0 1.0; |
|
size.offset: 256 0; |
|
smooth: 0; |
|
} |
|
} |
|
description { state: "focused" 0.0; |
|
inherit: "default" 0.0; |
|
color_class: "/bg/selected/titlebar"; |
|
} |
|
} |
|
program { signal: "state,win,focused"; source: "rage"; |
|
action: STATE_SET "focused" 0.0; |
|
target: "vg1"; |
|
} |
|
program { signal: "state,win,unfocused"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
target: "vg1"; |
|
} |
|
|
|
part { name: "shadow"; type: RECT; |
|
description { state: "default" 0.0; |
|
visible: 0; |
|
} |
|
description { state: "video" 0.0; |
|
inherit: "default" 0.0; |
|
visible: 1; |
|
} |
|
description { state: "novideo" 0.0; |
|
inherit: "default" 0.0; |
|
visible: 0; |
|
} |
|
} |
|
part { name: "sh_t"; nomouse; |
|
scale: 1; |
|
clip_to: "shadow"; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.content"; |
|
rel2.relative: 1.0 0.0; |
|
image.normal: "shadow_circle_horiz.png"; |
|
min: 0 32; |
|
color_class: "/shadow/normal"; |
|
fixed: 1 1; |
|
} |
|
} |
|
part { name: "sh_b"; nomouse; |
|
scale: 1; |
|
clip_to: "shadow"; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.content"; |
|
rel1.relative: 0.0 1.0; |
|
image.normal: "shadow_circle_horiz.png"; |
|
min: 0 32; |
|
color_class: "/shadow/normal"; |
|
fixed: 1 1; |
|
} |
|
} |
|
part { name: "sh_l"; nomouse; |
|
scale: 1; |
|
clip_to: "shadow"; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.content"; |
|
rel2.relative: 0.0 1.0; |
|
image.normal: "shadow_circle_vert.png"; |
|
min: 32 0; |
|
color_class: "/shadow/normal"; |
|
fixed: 1 1; |
|
} |
|
} |
|
part { name: "sh_r"; nomouse; |
|
scale: 1; |
|
clip_to: "shadow"; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.content"; |
|
rel1.relative: 1.0 0.0; |
|
image.normal: "shadow_circle_vert.png"; |
|
min: 32 0; |
|
color_class: "/shadow/normal"; |
|
fixed: 1 1; |
|
} |
|
} |
|
|
|
part { name: "black"; type: RECT; mouse_events: 0; |
|
description { state: "default" 0.0; |
|
color: 0 0 0 0; // no cc |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 0 0 0 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
program { signal: "state,win,fullscreen"; source: "rage"; |
|
action: STATE_SET "visible" 0.0; |
|
transition: SINUSOIDAL 0.2; |
|
target: "black"; |
|
} |
|
program { signal: "state,win,normal"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
transition: SINUSOIDAL 1.0; |
|
target: "black"; |
|
} |
|
|
|
part { name: "base"; type: RECT; mouse_events: 0; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.content"; |
|
color: 0 0 0 255; // no cc |
|
color_class: "/bg-dark/normal"; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; |
|
} |
|
description { state: "play" 0.0; |
|
inherit: "default" 0.0; |
|
visible: 0; |
|
} |
|
} |
|
part { name: "exclam"; mouse_events: 0; |
|
scale: 1; |
|
clip_to: "novid_clip"; |
|
description { state: "default" 0.0; |
|
rel.to: "base"; |
|
fixed: 1 1; |
|
image.normal: "icon_exclamation.png"; |
|
max: 24 24; |
|
aspect: 1.0 1.0; aspect_preference: BOTH; |
|
color: 255 255 255 0; // no cc |
|
color_class: "/fg/pressed"; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
description { state: "play" 0.0; |
|
inherit: "default" 0.0; |
|
visible: 0; |
|
} |
|
} |
|
program { signal: "action,newvid"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
target: "exclam"; |
|
target: "base"; |
|
after: "newvid2"; |
|
} |
|
program { name: "newvid2"; |
|
action: STATE_SET "visible" 0.0; |
|
in: 2.0 0.0; |
|
transition: SINUSOIDAL 1.0; |
|
target: "exclam"; |
|
target: "base"; |
|
} |
|
program { signal: "action,frame"; source: "rage"; |
|
action: STATE_SET "play" 0.0; |
|
target: "exclam"; |
|
target: "base"; |
|
} |
|
|
|
part { name: "content_black"; type: RECT; mouse_events: 0; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.content"; |
|
color: 0 0 0 255; // no cc |
|
visible: 0; |
|
} |
|
description { state: "novideo" 0.0; |
|
inherit: "default" 0.0; |
|
visible: 0; |
|
} |
|
description { state: "video" 0.0; |
|
inherit: "default" 0.0; |
|
visible: 1; |
|
} |
|
} |
|
part { name: "rage.content"; type: SWALLOW; |
|
description { state: "default" 0.0; |
|
visible: 0; |
|
} |
|
description { state: "novideo" 0.0; |
|
visible: 0; |
|
} |
|
description { state: "video" 0.0; |
|
visible: 1; |
|
} |
|
} |
|
|
|
part { name: "controlbar_shadow_clip"; type: RECT; |
|
clip_to: "controlbar_clip"; |
|
description { state: "default" 0.0; |
|
rel2.relative: 1.0 0.0; |
|
rel2.to_y: "controlbar"; |
|
} |
|
} |
|
part { name: "controlbar_shadow"; mouse_events: 0; |
|
scale: 1; |
|
clip_to: "controlbar_shadow_clip"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "controlbar"; |
|
rel2.relative: 1.0 0.0; |
|
image.normal: "shadow_circle_horiz.png"; |
|
min: 0 32; |
|
color_class: "/shadow/normal"; |
|
} |
|
} |
|
|
|
part { name: "prefsize"; type: SPACER; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
rel2.to: "controlbar"; |
|
rel2.relative: 1.0 0.0; |
|
} |
|
description { state: "pref" 0.0; |
|
inherit: "default" 0.0; |
|
min: 290 238; |
|
} |
|
} |
|
program { signal: "pref,size,on"; source: "rage"; |
|
action: STATE_SET "pref" 0.0; |
|
target: "prefsize"; |
|
} |
|
program { signal: "pref,size,off"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
target: "prefsize"; |
|
} |
|
|
|
part { name: "novid_clip"; type: RECT; |
|
description { state: "default" 0.0; |
|
} |
|
description { state: "novideo" 0.0; |
|
inherit: "default" 0.0; |
|
visible: 0; |
|
} |
|
} |
|
|
|
part { name: "speaker_clip"; type: RECT; |
|
description { state: "default" 0.0; |
|
visible: 0; |
|
} |
|
description { state: "novideo" 0.0; |
|
inherit: "default" 0.0; |
|
visible: 1; |
|
} |
|
description { state: "video" 0.0; |
|
inherit: "default" 0.0; |
|
visible: 0; |
|
} |
|
} |
|
part { name: "art_clip"; type: RECT; |
|
clip_to: "speaker_clip"; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
visible: 0; |
|
color: 255 255 255 0; // no cc |
|
rel1.relative: -0.5 -0.5; |
|
rel2.relative: 1.5 1.5; |
|
aspect: 1.0 1.0; aspect_preference: NONE; |
|
max: 580 580; |
|
fixed: 1 1; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
rel1.relative: 0.0 0.0; |
|
rel2.relative: 1.0 1.0; |
|
visible: 1; |
|
color: 255 255 255 255; // no cc |
|
max: 290 290; |
|
} |
|
} |
|
part { name: "art_clip2"; type: RECT; |
|
clip_to: "art_clip"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
} |
|
} |
|
part { name: "art_clip3"; type: RECT; |
|
description { state: "default" 0.0; |
|
visible: 0; |
|
color: 255 255 255 0; // no cc |
|
fixed: 1 1; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
rel1.relative: 0.0 0.0; |
|
rel2.relative: 1.0 1.0; |
|
visible: 1; |
|
color: 255 255 255 255; // no cc |
|
} |
|
} |
|
part { name: "artshadow"; mouse_events: 0; |
|
clip_to: "art_clip3"; |
|
description { state: "default" 0.0; |
|
rel.to: "art_clip"; |
|
color_class: "/shadow/normal"; |
|
image.normal: "win_shadow.png"; |
|
image.border: 14 14 14 14; |
|
image.middle: 0; |
|
rel1.offset: -7 -3; |
|
rel2.offset: 6 11; |
|
fill.smooth: 0; |
|
fixed: 1 1; |
|
} |
|
} |
|
part { name: "rage.art"; type: SWALLOW; mouse_events: 0; |
|
clip_to: "art_clip2"; |
|
description { state: "default" 0.0; |
|
rel.to: "art_clip"; |
|
} |
|
} |
|
program { signal: "state,novideo"; source: "rage"; |
|
action: STATE_SET "novideo" 0.0; |
|
target: "speaker_clip"; |
|
target: "shadow"; |
|
target: "statusloc"; |
|
target: "content_black"; |
|
target: "rage.content"; |
|
} |
|
program { signal: "state,default"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
target: "speaker_clip"; |
|
target: "shadow"; |
|
target: "statusloc"; |
|
target: "content_black"; |
|
target: "rage.content"; |
|
} |
|
program { signal: "state,video"; source: "rage"; |
|
action: STATE_SET "video" 0.0; |
|
target: "speaker_clip"; |
|
target: "shadow"; |
|
target: "statusloc"; |
|
target: "content_black"; |
|
target: "rage.content"; |
|
} |
|
program { signal: "state,novideo"; source: "rage"; |
|
script { |
|
set_int(novideo, 1); |
|
pos_show(); |
|
} |
|
} |
|
program { signal: "state,video"; source: "rage"; |
|
script { |
|
set_int(novideo, 0); |
|
pos_show(); |
|
} |
|
} |
|
|
|
program { signal: "state,novideo"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
transition: ACCELERATE 0.2; |
|
target: "art_clip"; |
|
target: "art_clip3"; |
|
} |
|
program { signal: "state,default"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
transition: ACCELERATE 0.2; |
|
target: "art_clip"; |
|
target: "art_clip3"; |
|
} |
|
program { signal: "state,video"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
transition: ACCELERATE 0.2; |
|
target: "art_clip"; |
|
target: "art_clip3"; |
|
} |
|
program { signal: "action,newvid"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
transition: ACCELERATE 0.2; |
|
target: "art_clip"; |
|
target: "art_clip3"; |
|
} |
|
program { signal: "state,noart"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
transition: ACCELERATE 0.3; |
|
target: "art_clip"; |
|
target: "art_clip3"; |
|
} |
|
program { signal: "state,art"; source: "rage"; |
|
action: STATE_SET "visible" 0.0; |
|
transition: DECELERATE 0.3; |
|
target: "art_clip"; |
|
target: "art_clip3"; |
|
} |
|
|
|
snapshot { "art_filter"; |
|
clip_to: "art_clip"; |
|
desc { state: "default" 0.0; |
|
rel.to: "art_clip"; |
|
filter.code: "padding_set { 0 } blur { state.pos * 50, color = '#ffff' }"; |
|
visible: 0; |
|
} |
|
desc { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
filter.code: "padding_set { 0 } blur { (1.0 - state.pos) * 50, color = '#ffff' }"; |
|
visible: 1; |
|
} |
|
} |
|
program { signal: "action,play"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
transition: SINUSOIDAL 0.2; |
|
target: "art_filter"; |
|
} |
|
program { signal: "action,pause"; source: "rage"; |
|
action: STATE_SET "visible" 0.0; |
|
transition: SINUSOIDAL 0.4; |
|
target: "art_filter"; |
|
} |
|
|
|
part { name: "rage.gesture"; type: SWALLOW; |
|
description { state: "default" 0.0; |
|
rel2.to_y: "controlbar"; |
|
rel2.relative: 1.0 0.0; |
|
} |
|
} |
|
|
|
part { name: "browser2"; type: SPACER; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
} |
|
description { state: "fs" 0.0; |
|
inherit: "default" 0.0; |
|
rel1.offset: 40 0; |
|
rel2.offset: -41 -1; |
|
offscale; |
|
} |
|
} |
|
part { name: "rage.browser"; type: SWALLOW; |
|
description { state: "default" 0.0; |
|
rel.to: "browser2"; |
|
rel1.relative: 1.0 0.0; |
|
rel2.relative: 2.0 1.0; |
|
fixed: 1 1; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
rel1.relative: 0.0 0.0; |
|
rel2.relative: 1.0 1.0; |
|
visible: 1; |
|
} |
|
} |
|
program { signal: "browser,state,visible"; source: "rage"; |
|
action: STATE_SET "visible" 0.0; |
|
transition: DECELERATE 0.3; |
|
target: "rage.browser"; |
|
} |
|
program { signal: "browser,state,visible"; source: "rage"; |
|
script { |
|
set_int(browser, 1); |
|
if (get_int(pos_visible)) { |
|
new t = get_int(pos_timer); |
|
if (t) cancel_timer(t); |
|
pos_timeout(0); |
|
} |
|
} |
|
} |
|
program { signal: "browser,state,hidden"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
transition: ACCELERATE 0.5; |
|
target: "rage.browser"; |
|
after: "browser_hidden"; |
|
} |
|
program { name: "browser_hidden"; |
|
action: SIGNAL_EMIT "browser,state,hidden,finished" "rage"; |
|
after: "browser_hidden2"; |
|
} |
|
program { name: "browser_hidden2"; |
|
script { |
|
set_int(browser, 0); |
|
pos_show(); |
|
} |
|
} |
|
program { signal: "state,win,fullscreen"; source: "rage"; |
|
action: STATE_SET "fs" 0.0; |
|
target: "browser2"; |
|
} |
|
program { signal: "state,win,normal"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
target: "browser2"; |
|
} |
|
|
|
part { name: "rage.list"; type: SWALLOW; |
|
description { state: "default" 0.0; |
|
align: 0.0 0.5; |
|
rel1.relative: 1.0 0.0; |
|
rel2.relative: 1.0 0.0; |
|
rel2.to_y: "controlbar"; |
|
fixed: 1 1; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
align: 1.0 0.5; |
|
visible: 1; |
|
} |
|
} |
|
program { signal: "list,state,visible"; source: "rage"; |
|
action: STATE_SET "visible" 0.0; |
|
transition: DECELERATE 0.3; |
|
target: "rage.list"; |
|
} |
|
program { signal: "list,state,hidden"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
transition: ACCELERATE 0.5; |
|
target: "rage.list"; |
|
after: "list_hidden"; |
|
} |
|
program { name: "list_hidden"; |
|
action: SIGNAL_EMIT "list,state,hidden,finished" "rage"; |
|
} |
|
|
|
part { name: "controlbar_clip"; type: RECT; |
|
description { state: "default" 0.0; |
|
color: 255 255 255 0; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
color: 255 255 255 255; |
|
visible: 1; |
|
} |
|
} |
|
part { name: "controlbar"; type: RECT; mouse_events: 0; |
|
clip_to: "controlbar_clip"; |
|
description { state: "default" 0.0; |
|
color: 255 255 255 128; // no cc |
|
color_class: "/bg/normal"; |
|
rel1.to: "rage.pos.prev.swallow"; |
|
} |
|
description { state: "novideo" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 0; // no cc |
|
visible: 0; |
|
} |
|
} |
|
program { signal: "state,novideo"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
target: "controlbar"; |
|
} |
|
program { signal: "state,video"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
target: "controlbar"; |
|
} |
|
|
|
part { name: "posclip"; type: RECT; |
|
description { state: "default" 0.0; |
|
color: 255 255 255 0; // no cc |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
part { name: "bar_bg"; type: SPACER; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.offset: 0 -1; |
|
rel1.relative: 0.0 1.0; |
|
min: 1 1; |
|
} |
|
} |
|
part { name: "rage.dragable.pos"; type: RECT; mouse_events: 0; |
|
clip_to: "controlbar_clip"; |
|
dragable.x: 1 1 0; |
|
dragable.y: 0 0 0; |
|
dragable.confine: "bar_bg"; |
|
description { state: "default" 0.0; |
|
min: 1 1; |
|
max: 1 1; |
|
rel1.relative: 0.5 0.0; |
|
rel1.to_x: "bar_bg"; |
|
rel2.relative: 0.5 1.0; |
|
rel2.to_x: "bar_bg"; |
|
color: 0 0 0 0; |
|
fixed: 1 1; |
|
} |
|
} |
|
|
|
part { name: "bar"; type: RECT; mouse_events: 0; |
|
clip_to: "controlbar_clip"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
color_class: "/bg/selected"; |
|
rel1.offset: 0 -5; |
|
rel1.relative: 0.0 1.0; |
|
rel1.to_x: "bar_bg"; |
|
rel2.to_x: "rage.dragable.pos"; |
|
min: 0 5; |
|
} |
|
} |
|
|
|
part { name: "rage.pos.swallow"; type: SWALLOW; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "rage.dragable.pos"; |
|
align: 0.5 1.0; |
|
min: CTRLSIZE CTRLSIZE; |
|
} |
|
} |
|
part { name: "posevent"; type: RECT; |
|
clip_to: "controlbar_clip"; |
|
scale: 1; |
|
ignore_flags: ON_HOLD; |
|
dragable.events: "rage.dragable.pos"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "rage.pos.swallow"; |
|
color: 0 0 0 0; |
|
min: CTRLSIZE CTRLSIZE; |
|
align: 0.5 1.0; |
|
} |
|
} |
|
part { name: "rage.pos.prev.swallow"; type: SWALLOW; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 0.0 0.0; |
|
rel1.to_y: "dragover_event"; |
|
rel2.relative: 0.0 0.0; |
|
rel2.to_y: "dragover_event"; |
|
min: CTRLSIZE CTRLSIZE; |
|
align: 0.0 1.0; |
|
} |
|
} |
|
part { name: "rage.pos.play.swallow"; type: SWALLOW; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.to_x: "rage.pos.prev.swallow"; |
|
rel1.to_y: "dragover_event"; |
|
rel1.relative: 1.0 0.0; |
|
rel2.to_x: "rage.pos.prev.swallow"; |
|
rel2.to_y: "dragover_event"; |
|
rel2.relative: 1.0 0.0; |
|
min: CTRLSIZE CTRLSIZE; |
|
align: 0.0 1.0; |
|
} |
|
} |
|
part { name: "rage.pos.next.swallow"; type: SWALLOW; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.to_x: "rage.pos.play.swallow"; |
|
rel1.to_y: "dragover_event"; |
|
rel1.relative: 1.0 0.0; |
|
rel2.to_x: "rage.pos.play.swallow"; |
|
rel2.to_y: "dragover_event"; |
|
rel2.relative: 1.0 0.0; |
|
min: CTRLSIZE CTRLSIZE; |
|
align: 0.0 1.0; |
|
} |
|
} |
|
part { name: "rage.vol.swallow"; type: SWALLOW; |
|
scale: 1; |
|
clip_to: "controlbar_clip"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.to_y: "dragover_event"; |
|
rel1.relative: 1.0 0.0; |
|
rel2.to_y: "dragover_event"; |
|
rel2.relative: 1.0 0.0; |
|
min: (CTRLSIZE*4) CTRLSIZE; |
|
align: 1.0 1.0; |
|
} |
|
} |
|
part { name: "pos_prev"; |
|
scale: 1; |
|
clip_to: "controlbar_clip"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "rage.pos.prev.swallow"; |
|
image.normal: "icon_prev.png"; |
|
min: CTRLSIZE CTRLSIZE; max: CTRLSIZE CTRLSIZE; |
|
color_class: "/fg/normal"; |
|
} |
|
description { state: "active" 0.0; |
|
inherit: "default" 0.0; |
|
color_class: "/fg/pressed"; |
|
} |
|
} |
|
part { name: "pos_prevev"; type: RECT; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.pos.prev.swallow"; |
|
color: 0 0 0 0; // no cc |
|
} |
|
} |
|
program { signal: "mouse,down,1"; source: "pos_prevev"; |
|
action: STATE_SET "active" 0.0; |
|
target: "pos_prev"; |
|
} |
|
program { signal: "mouse,up,1"; source: "pos_prevev"; |
|
action: STATE_SET "default" 0.0; |
|
target: "pos_prev"; |
|
} |
|
|
|
part { name: "playpause"; type: RECT; |
|
clip_to: "controlbar_clip"; |
|
description { state: "default" 0.0; |
|
visible: 0; |
|
} |
|
description { state: "pause" 0.0; |
|
visible: 1; |
|
} |
|
} |
|
part { name: "playpause2"; type: RECT; |
|
clip_to: "controlbar_clip"; |
|
description { state: "default" 0.0; |
|
visible: 1; |
|
} |
|
description { state: "pause" 0.0; |
|
visible: 0; |
|
} |
|
} |
|
|
|
part { name: "pos_pause"; scale: 1; |
|
clip_to: "playpause"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "rage.pos.play.swallow"; |
|
image.normal: "icon_play.png"; |
|
min: CTRLSIZE CTRLSIZE; max: CTRLSIZE CTRLSIZE; |
|
color_class: "/fg/normal"; |
|
} |
|
description { state: "active" 0.0; |
|
inherit: "default" 0.0; |
|
color_class: "/fg/pressed"; |
|
} |
|
} |
|
part { name: "pos_pauseev"; type: RECT; |
|
clip_to: "playpause"; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.pos.play.swallow"; |
|
color: 0 0 0 0; // no cc |
|
} |
|
} |
|
program { signal: "mouse,down,1"; source: "pos_pauseev"; |
|
action: STATE_SET "active" 0.0; |
|
target: "pos_pause"; |
|
} |
|
program { signal: "mouse,up,1"; source: "pos_pauseev"; |
|
action: STATE_SET "default" 0.0; |
|
target: "pos_pause"; |
|
} |
|
|
|
part { name: "pos_play"; scale: 1; |
|
clip_to: "playpause2"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "rage.pos.play.swallow"; |
|
min: CTRLSIZE CTRLSIZE; max: CTRLSIZE CTRLSIZE; |
|
image.normal: "icon_pause.png"; |
|
color_class: "/fg/normal"; |
|
} |
|
description { state: "active" 0.0; |
|
inherit: "default" 0.0; |
|
color_class: "/fg/pressed"; |
|
} |
|
} |
|
part { name: "pos_playev"; type: RECT; |
|
clip_to: "playpause2"; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.pos.play.swallow"; |
|
color: 0 0 0 0; // no cc |
|
} |
|
} |
|
program { signal: "mouse,down,1"; source: "pos_playev"; |
|
action: STATE_SET "active" 0.0; |
|
target: "pos_play"; |
|
} |
|
program { signal: "mouse,up,1"; source: "pos_playev"; |
|
action: STATE_SET "default" 0.0; |
|
target: "pos_play"; |
|
} |
|
|
|
program { signal: "action,play"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
target: "playpause"; |
|
target: "playpause2"; |
|
} |
|
program { signal: "action,pause"; source: "rage"; |
|
action: STATE_SET "pause" 0.0; |
|
target: "playpause"; |
|
target: "playpause2"; |
|
} |
|
|
|
part { name: "pos_next"; scale: 1; |
|
clip_to: "controlbar_clip"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "rage.pos.next.swallow"; |
|
image.normal: "icon_next.png"; |
|
min: CTRLSIZE CTRLSIZE; max: CTRLSIZE CTRLSIZE; |
|
color_class: "/fg/normal"; |
|
} |
|
description { state: "active" 0.0; |
|
inherit: "default" 0.0; |
|
color_class: "/fg/pressed"; |
|
} |
|
} |
|
part { name: "pos_nextev"; type: RECT; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.pos.next.swallow"; |
|
color: 0 0 0 0; // no cc |
|
} |
|
} |
|
program { signal: "mouse,down,1"; source: "pos_nextev"; |
|
action: STATE_SET "active" 0.0; |
|
target: "pos_next"; |
|
} |
|
program { signal: "mouse,up,1"; source: "pos_nextev"; |
|
action: STATE_SET "default" 0.0; |
|
target: "pos_next"; |
|
} |
|
|
|
part { name: "volmuteb"; type: RECT; |
|
clip_to: "controlbar_clip"; |
|
description { state: "default" 0.0; |
|
visible: 1; |
|
} |
|
description { state: "mute" 0.0; |
|
visible: 0; |
|
} |
|
} |
|
part { name: "volmuteb2"; type: RECT; |
|
clip_to: "controlbar_clip"; |
|
description { state: "default" 0.0; |
|
visible: 0; |
|
} |
|
description { state: "mute" 0.0; |
|
visible: 1; |
|
} |
|
} |
|
program { signal: "action,mute"; source: "rage"; |
|
action: STATE_SET "mute" 0.0; |
|
target: "volmuteb"; |
|
target: "volmuteb2"; |
|
} |
|
program { signal: "action,unmute"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
target: "volmuteb"; |
|
target: "volmuteb2"; |
|
} |
|
|
|
part { name: "vol"; scale: 1; |
|
clip_to: "volmuteb"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "rage.vol.swallow"; |
|
rel2.relative: 0.0 1.0; |
|
align: 1.0 0.5; |
|
image.normal: "icon_volume.png"; |
|
min: CTRLSIZE CTRLSIZE; max: CTRLSIZE CTRLSIZE; |
|
color_class: "/fg/normal"; |
|
} |
|
description { state: "active" 0.0; |
|
inherit: "default" 0.0; |
|
color_class: "/fg/pressed"; |
|
} |
|
} |
|
part { name: "vol2"; scale: 1; |
|
clip_to: "volmuteb2"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "rage.vol.swallow"; |
|
rel2.relative: 0.0 1.0; |
|
align: 1.0 0.5; |
|
image.normal: "icon_mute.png"; |
|
min: CTRLSIZE CTRLSIZE; max: CTRLSIZE CTRLSIZE; |
|
color_class: "/fg/normal"; |
|
} |
|
description { state: "active" 0.0; |
|
inherit: "default" 0.0; |
|
color_class: "/fg/pressed"; |
|
} |
|
} |
|
part { name: "volev"; type: RECT; |
|
clip_to: "controlbar_clip"; |
|
description { state: "default" 0.0; |
|
rel.to: "vol"; |
|
color: 0 0 0 0; // no cc |
|
} |
|
} |
|
program { signal: "mouse,down,1"; source: "volev"; |
|
action: STATE_SET "active" 0.0; |
|
target: "vol"; |
|
target: "vol2"; |
|
} |
|
program { signal: "mouse,up,1"; source: "volev"; |
|
action: STATE_SET "default" 0.0; |
|
target: "vol"; |
|
target: "vol2"; |
|
} |
|
program { signal: "mouse,clicked,1"; source: "volev"; |
|
action: SIGNAL_EMIT "pos,action,vol" "rage"; |
|
} |
|
|
|
program { signal: "mouse,clicked,1"; source: "optev"; |
|
action: SIGNAL_EMIT "pos,action,options" "rage"; |
|
} |
|
|
|
program { signal: "mouse,clicked,1"; source: "fullscreenev"; |
|
action: SIGNAL_EMIT "win,fullscreen" "rage"; |
|
} |
|
program { signal: "mouse,clicked,1"; source: "unfullscreenev"; |
|
action: SIGNAL_EMIT "win,unfullscreen" "rage"; |
|
} |
|
|
|
program { signal: "mouse,clicked,1"; source: "closeev"; |
|
action: SIGNAL_EMIT "win,close" "rage"; |
|
} |
|
|
|
program { signal: "mouse,clicked,1"; source: "pos_prevev"; |
|
action: SIGNAL_EMIT "pos,action,prev" "rage"; |
|
} |
|
program { signal: "mouse,clicked,1"; source: "pos_nextev"; |
|
action: SIGNAL_EMIT "pos,action,next" "rage"; |
|
} |
|
program { signal: "mouse,clicked,1"; source: "pos_playev"; |
|
action: SIGNAL_EMIT "pos,action,pause" "rage"; |
|
} |
|
program { signal: "mouse,clicked,1"; source: "pos_pauseev"; |
|
action: SIGNAL_EMIT "pos,action,play" "rage"; |
|
} |
|
|
|
part { name: "rage.pos"; type: TEXT; mouse_events: 0; |
|
clip_to: "controlbar_clip"; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.to: "pos_next"; |
|
rel1.relative: 1.0 0.0; |
|
rel1.offset: 4 0; |
|
rel2.to: "slash"; |
|
rel2.relative: 0.0 1.0; |
|
rel2.offset: -5 -1; |
|
color_class: "/fg/selected"; |
|
align: 1.0 0.5; |
|
text { font: "Sans"; size: 8; |
|
align: 1.0 0.5; |
|
min: 1 1; |
|
elipsis: -1; |
|
} |
|
} |
|
} |
|
part { name: "slash"; type: TEXT; mouse_events: 0; |
|
clip_to: "controlbar_clip"; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.to: "rage.length"; |
|
rel1.relative: 0.0 0.0; |
|
rel1.offset: -5 0; |
|
rel2.to: "rage.length"; |
|
rel2.relative: 0.0 1.0; |
|
rel2.offset: -5 -1; |
|
color_class: "/fg/selected"; |
|
align: 1.0 0.5; |
|
text { font: "Sans"; size: 8; |
|
align: 1.0 0.5; |
|
min: 1 1; |
|
text: "/"; |
|
elipsis: -1; |
|
} |
|
} |
|
} |
|
part { name: "rage.length"; type: TEXT; mouse_events: 0; |
|
clip_to: "controlbar_clip"; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.to_y: "pos_next"; |
|
rel1.to_x: "vol"; |
|
rel1.relative: 0.0 0.0; |
|
rel1.offset: -1 0; |
|
rel2.to_y: "pos_next"; |
|
rel2.to_x: "vol"; |
|
rel2.relative: 0.0 1.0; |
|
rel2.offset: -1 -1; |
|
color_class: "/fg/selected"; |
|
align: 1.0 0.5; |
|
text { font: "Sans"; size: 8; |
|
align: 1.0 0.5; |
|
min: 1 1; |
|
elipsis: -1; |
|
} |
|
} |
|
} |
|
|
|
#define STATE_FADE_PROG(_name, _part) \ |
|
program { signal: "action,"_name; source: "rage"; \ |
|
action: STATE_SET "visible" 0.0; \ |
|
transition: SINUSOIDAL 0.2 CURRENT; \ |
|
target: _part; \ |
|
after: _name"2"; \ |
|
} \ |
|
program { name: _name"2"; \ |
|
action: STATE_SET "default" 0.0; \ |
|
in: 1.0 0.0; \ |
|
transition: SINUSOIDAL 1.0 CURRENT; \ |
|
target: _part; \ |
|
} |
|
part { name: "mute"; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel2.relative: 0.0 0.0; |
|
rel2.offset: 0 0; |
|
align: 0.0 0.0; |
|
image.normal: "icon_mute.png"; |
|
min: 20 20; max: 20 20; |
|
aspect: 1.0 1.0; aspect_preference: BOTH; |
|
color: 255 255 255 0; // no cc |
|
color_class: "/fg/selected"; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
STATE_FADE_PROG("mute", "mute") |
|
part { name: "vol_indicator_bg"; type: RECT; mouse_events: 0; |
|
clip_to: "vol_indicator"; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "mute"; |
|
rel1.relative: 0.0 1.0; |
|
rel1.offset: 0 4; |
|
rel2.relative: 0.0 1.0; |
|
rel2.offset: 0 4; |
|
align: 0.0 0.0; |
|
min: 40 5; max: 40 5; |
|
color: 255 255 255 128; // no cc |
|
color_class: "/fg/selected"; |
|
offscale; |
|
} |
|
} |
|
part { name: "vol_indicator_fg"; type: RECT; mouse_events: 0; |
|
clip_to: "vol_indicator"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "vol_indicator_bg"; |
|
color_class: "/fg/selected"; |
|
} |
|
} |
|
part { name: "vol_indicator"; type: RECT; mouse_events: 0; |
|
description { state: "default" 0.0; |
|
color: 255 255 255 0; // no cc |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
STATE_FADE_PROG("volume_up", "vol_indicator") |
|
STATE_FADE_PROG("volume_down", "vol_indicator") |
|
part { name: "unmute"; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel2.relative: 0.0 0.0; |
|
rel2.offset: 0 0; |
|
align: 0.0 0.0; |
|
image.normal: "icon_volume.png"; |
|
min: 20 20; max: 20 20; |
|
aspect: 1.0 1.0; aspect_preference: BOTH; |
|
color: 255 255 255 0; // no cc |
|
color_class: "/fg/selected"; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
STATE_FADE_PROG("unmute", "unmute") |
|
part { name: "loop"; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 1.0 0.0; |
|
rel1.offset: 0 0; |
|
rel1.to_x: "mute"; |
|
rel2.relative: 1.0 0.0; |
|
rel2.offset: 0 0; |
|
rel2.to_x: "mute"; |
|
align: 0.0 0.0; |
|
image.normal: "icon_refresh.png"; |
|
min: 20 20; max: 20 20; |
|
aspect: 1.0 1.0; aspect_preference: BOTH; |
|
color: 255 255 255 0; // no cc |
|
color_class: "/fg/selected"; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
STATE_FADE_PROG("loop", "loop") |
|
part { name: "sequential"; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 1.0 0.0; |
|
rel1.offset: 0 0; |
|
rel1.to_x: "mute"; |
|
rel2.relative: 1.0 0.0; |
|
rel2.offset: 0 0; |
|
rel2.to_x: "mute"; |
|
align: 0.0 0.0; |
|
image.normal: "icon_arrow_right.png"; |
|
min: 20 20; max: 20 20; |
|
aspect: 1.0 1.0; aspect_preference: BOTH; |
|
color: 255 255 255 0; // no cc |
|
color_class: "/fg/selected"; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
STATE_FADE_PROG("sequential", "sequential") |
|
|
|
part { name: "statusloc"; type: SPACER; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.content"; |
|
} |
|
description { state: "video" 0.0; |
|
inherit: "default" 0.0; |
|
} |
|
description { state: "novideo" 0.0; |
|
rel.to: "rage.art"; |
|
} |
|
} |
|
part { name: "play"; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 0.5 0.5; |
|
rel2.relative: 0.5 0.5; |
|
rel.to: "statusloc"; |
|
image.normal: "icon_play.png"; |
|
min: 40 40; max: 40 40; |
|
aspect: 1.0 1.0; aspect_preference: BOTH; |
|
color: 255 255 255 0; // no cc |
|
color_class: "/fg/selected"; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
STATE_FADE_PROG("play", "play") |
|
part { name: "pause"; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 0.5 0.5; |
|
rel2.relative: 0.5 0.5; |
|
rel.to: "statusloc"; |
|
image.normal: "icon_pause.png"; |
|
min: 40 40; max: 40 40; |
|
aspect: 1.0 1.0; aspect_preference: BOTH; |
|
color: 255 255 255 0; // no cc |
|
color_class: "/fg/selected"; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
STATE_FADE_PROG("pause", "pause") |
|
part { name: "stop"; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 0.5 0.5; |
|
rel2.relative: 0.5 0.5; |
|
rel.to: "statusloc"; |
|
image.normal: "icon_stop.png"; |
|
min: 40 40; max: 40 40; |
|
aspect: 1.0 1.0; aspect_preference: BOTH; |
|
color: 255 255 255 0; // no cc |
|
color_class: "/fg/selected"; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
STATE_FADE_PROG("stop", "stop") |
|
part { name: "eject"; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 0.5 0.5; |
|
rel2.relative: 0.5 0.5; |
|
rel.to: "statusloc"; |
|
image.normal: "icon_eject.png"; |
|
min: 40 40; max: 40 40; |
|
aspect: 1.0 1.0; aspect_preference: BOTH; |
|
color: 255 255 255 0; // no cc |
|
color_class: "/fg/selected"; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
STATE_FADE_PROG("eject", "eject") |
|
part { name: "forward"; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 0.5 0.5; |
|
rel2.relative: 0.5 0.5; |
|
rel.to: "statusloc"; |
|
image.normal: "icon_forward.png"; |
|
min: 40 40; max: 40 40; |
|
aspect: 1.0 1.0; aspect_preference: BOTH; |
|
color: 255 255 255 0; // no cc |
|
color_class: "/fg/selected"; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
STATE_FADE_PROG("forward", "forward") |
|
part { name: "next"; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 0.5 0.5; |
|
rel2.relative: 0.5 0.5; |
|
rel.to: "statusloc"; |
|
image.normal: "icon_next.png"; |
|
min: 40 40; max: 40 40; |
|
aspect: 1.0 1.0; aspect_preference: BOTH; |
|
color: 255 255 255 0; // no cc |
|
color_class: "/fg/selected"; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
STATE_FADE_PROG("next", "next") |
|
part { name: "rewind"; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 0.5 0.5; |
|
rel2.relative: 0.5 0.5; |
|
rel.to: "statusloc"; |
|
image.normal: "icon_rewind.png"; |
|
min: 40 40; max: 40 40; |
|
aspect: 1.0 1.0; aspect_preference: BOTH; |
|
color: 255 255 255 0; // no cc |
|
color_class: "/fg/selected"; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
STATE_FADE_PROG("rewind", "rewind") |
|
part { name: "prev"; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 0.5 0.5; |
|
rel2.relative: 0.5 0.5; |
|
rel.to: "statusloc"; |
|
image.normal: "icon_prev.png"; |
|
min: 40 40; max: 40 40; |
|
aspect: 1.0 1.0; aspect_preference: BOTH; |
|
color: 255 255 255 0; // no cc |
|
color_class: "/fg/selected"; |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
STATE_FADE_PROG("prev", "prev") |
|
|
|
part { name: "rage.options.swallow"; type: SWALLOW; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 0.0 0.0; |
|
rel1.offset: -1 0; |
|
rel.to: "rage.win.fullscreen"; |
|
rel2.relative: 0.0 1.0; |
|
rel2.offset: -1 -1; |
|
min: 20 20; |
|
align: 1.0 0.0; |
|
} |
|
} |
|
part { name: "rage.win.fullscreen"; type: SWALLOW; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 0.0 0.0; |
|
rel1.offset: -1 0; |
|
rel.to: "rage.win.close"; |
|
rel2.relative: 0.0 1.0; |
|
rel2.offset: -1 -1; |
|
min: 20 20; |
|
align: 1.0 0.0; |
|
} |
|
} |
|
part { name: "rage.win.close"; type: SWALLOW; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 1.0 0.0; |
|
rel1.offset: 0 0; |
|
rel2.relative: 1.0 0.0; |
|
rel2.offset: 0 0; |
|
min: 20 20; |
|
align: 0.0 0.0; |
|
} |
|
description { state: "fullscreen" 0.0; |
|
fixed: 1 1; |
|
rel1.relative: 1.0 0.0; |
|
rel1.offset: -1 0; |
|
rel2.relative: 1.0 0.0; |
|
rel2.offset: -1 0; |
|
min: 20 20; |
|
align: 1.0 0.0; |
|
} |
|
} |
|
|
|
part { name: "close"; |
|
scale: 1; |
|
clip_to: "posclip"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "rage.win.close"; |
|
image.normal: "icon_close.png"; |
|
min: 20 20; max: 20 20; |
|
color_class: "/fg/normal"; |
|
} |
|
description { state: "active" 0.0; |
|
inherit: "default" 0.0; |
|
color_class: "/fg/pressed"; |
|
} |
|
} |
|
part { name: "closeev"; type: RECT; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.win.close"; |
|
color: 0 0 0 0; // no cc |
|
} |
|
} |
|
program { signal: "mouse,down,1"; source: "closeev"; |
|
action: STATE_SET "active" 0.0; |
|
target: "close"; |
|
} |
|
program { signal: "mouse,up,1"; source: "closeev"; |
|
action: STATE_SET "default" 0.0; |
|
target: "close"; |
|
} |
|
|
|
part { name: "fullscreenclip"; type: RECT; |
|
clip_to: "posclip"; |
|
description { state: "default" 0.0; |
|
rel.to: "fullscreen"; |
|
visible: 1; |
|
} |
|
description { state: "fullscreen" 0.0; |
|
inherit: "default" 0.0; |
|
visible: 0; |
|
} |
|
} |
|
part { name: "unfullscreenclip"; type: RECT; |
|
clip_to: "posclip"; |
|
description { state: "default" 0.0; |
|
rel.to: "unfullscreen"; |
|
visible: 0; |
|
} |
|
description { state: "fullscreen" 0.0; |
|
inherit: "default" 0.0; |
|
visible: 1; |
|
} |
|
} |
|
program { signal: "state,win,fullscreen"; source: "rage"; |
|
action: STATE_SET "fullscreen" 0.0; |
|
target: "fullscreenclip"; |
|
target: "unfullscreenclip"; |
|
target: "rage.win.close"; |
|
} |
|
program { signal: "state,win,normal"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
target: "fullscreenclip"; |
|
target: "unfullscreenclip"; |
|
target: "rage.win.close"; |
|
} |
|
part { name: "fullscreen"; |
|
scale: 1; |
|
clip_to: "fullscreenclip"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "rage.win.fullscreen"; |
|
image.normal: "icon_fullscreen.png"; |
|
min: 20 20; max: 20 20; |
|
color_class: "/fg/normal"; |
|
} |
|
description { state: "active" 0.0; |
|
inherit: "default" 0.0; |
|
color_class: "/fg/pressed"; |
|
} |
|
} |
|
part { name: "fullscreenev"; type: RECT; |
|
clip_to: "fullscreenclip"; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.win.fullscreen"; |
|
color: 0 0 0 0; // no cc |
|
} |
|
} |
|
program { signal: "mouse,down,1"; source: "fullscreenev"; |
|
action: STATE_SET "active" 0.0; |
|
target: "fullscreen"; |
|
} |
|
program { signal: "mouse,up,1"; source: "fullscreenev"; |
|
action: STATE_SET "default" 0.0; |
|
target: "fullscreen"; |
|
} |
|
part { name: "unfullscreen"; |
|
scale: 1; |
|
clip_to: "unfullscreenclip"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "rage.win.fullscreen"; |
|
image.normal: "icon_unfullscreen.png"; |
|
min: 20 20; max: 20 20; |
|
color_class: "/fg/normal"; |
|
} |
|
description { state: "active" 0.0; |
|
inherit: "default" 0.0; |
|
color_class: "/fg/pressed"; |
|
} |
|
} |
|
part { name: "unfullscreenev"; type: RECT; |
|
clip_to: "unfullscreenclip"; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.win.fullscreen"; |
|
color: 0 0 0 0; // no cc |
|
} |
|
} |
|
program { signal: "mouse,down,1"; source: "unfullscreenev"; |
|
action: STATE_SET "active" 0.0; |
|
target: "unfullscreen"; |
|
} |
|
program { signal: "mouse,up,1"; source: "unfullscreenev"; |
|
action: STATE_SET "default" 0.0; |
|
target: "unfullscreen"; |
|
} |
|
|
|
part { name: "opt"; |
|
scale: 1; |
|
clip_to: "posclip"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "rage.options.swallow"; |
|
image.normal: "icon_spanner.png"; |
|
min: 20 20; max: 20 20; |
|
color_class: "/fg/normal"; |
|
} |
|
description { state: "active" 0.0; |
|
inherit: "default" 0.0; |
|
color_class: "/fg/pressed"; |
|
} |
|
} |
|
part { name: "optev"; type: RECT; |
|
description { state: "default" 0.0; |
|
rel.to: "rage.options.swallow"; |
|
color: 0 0 0 0; // no cc |
|
} |
|
} |
|
program { signal: "mouse,down,1"; source: "optev"; |
|
action: STATE_SET "active" 0.0; |
|
target: "opt"; |
|
} |
|
program { signal: "mouse,up,1"; source: "optev"; |
|
action: STATE_SET "default" 0.0; |
|
target: "opt"; |
|
} |
|
|
|
part { name: "dragover_master"; type: RECT; |
|
clip_to: "posclip"; |
|
description { state: "default" 0.0; |
|
visible: 1; |
|
} |
|
description { state: "novideo" 0.0; |
|
visible: 0; |
|
} |
|
} |
|
program { signal: "state,novideo"; source: "rage"; |
|
action: STATE_SET "novideo" 0.0; |
|
target: "dragover_master"; |
|
} |
|
program { signal: "state,video"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
target: "dragover_master"; |
|
} |
|
part { name: "dragover_active"; type: RECT; |
|
clip_to: "dragover_master"; |
|
description { state: "default" 0.0; |
|
color: 255 255 255 0; // no cc |
|
visible: 0; |
|
} |
|
description { state: "visible" 0.0; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
part { name: "dragover_event"; type: RECT; repeat_events: 1; |
|
clip_to: "posclip"; |
|
description { state: "default" 0.0; |
|
rel1.to_x: "bar_bg"; |
|
rel1.to_y: "posevent"; |
|
rel2.to_x: "bar_bg"; |
|
color: 0 0 0 0; // no cc |
|
fixed: 1 1; |
|
} |
|
} |
|
program { signal: "mouse,in"; source: "dragover_event"; |
|
action: STATE_SET "visible" 0.0; |
|
transition: SINUSOIDAL 0.5; |
|
target: "dragover_active"; |
|
} |
|
program { signal: "mouse,out"; source: "dragover_event"; |
|
action: STATE_SET "default" 0.0; |
|
transition: SINUSOIDAL 1.0; |
|
target: "dragover_active"; |
|
} |
|
part { name: "dragover"; type: SPACER; |
|
description { state: "default" 0.0; |
|
rel.to: "dragover_event"; |
|
rel1.relative: 0.5 0.0; |
|
rel2.relative: 0.5 0.0; |
|
fixed: 1 1; |
|
} |
|
} |
|
part { name: "dragshadow"; mouse_events: 0; |
|
clip_to: "dragover_active"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "rage.dragable.content"; |
|
color_class: "/shadow/normal"; |
|
image.normal: "win_shadow.png"; |
|
image.border: 14 14 14 14; |
|
image.middle: 0; |
|
rel1.offset: -7 -3; |
|
rel2.offset: 6 11; |
|
fill.smooth: 0; |
|
} |
|
} |
|
part { name: "dragover_fill"; type: RECT; mouse_events: 0; |
|
clip_to: "dragover_active"; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
color_class: "/bg-dark/normal"; |
|
rel.to: "rage.dragable.content"; |
|
} |
|
} |
|
part { name: "rage.dragable.content"; type: SWALLOW; mouse_events: 0; |
|
clip_to: "dragover_active"; |
|
description { state: "default" 0.0; |
|
rel.to: "dragover"; |
|
align: 0.5 1.0; |
|
fixed: 1 1; |
|
} |
|
} |
|
program { signal: "mouse,move"; source: "dragover_event"; |
|
script { |
|
new mx, my, x, y, w, h; |
|
new Float:pos, Float:px, Float:pw; |
|
|
|
get_mouse(mx, my); |
|
get_geometry(PART:"dragover_event", x, y, w, h); |
|
x = mx - x; |
|
y = my - y; |
|
px = x; |
|
pw = w; |
|
if (w > 0) pos = px / pw; |
|
else pos = 0.5; |
|
custom_state(PART:"dragover", "default", 0.0); |
|
set_state_val(PART:"dragover", STATE_REL1, pos, 0.0); |
|
set_state_val(PART:"dragover", STATE_REL2, pos, 0.0); |
|
set_state(PART:"dragover", "custom", 0.0); |
|
send_message(MSG_FLOAT, 13, pos); |
|
if (get_int(drag_is_down) == 1) |
|
send_message(MSG_FLOAT, 10, pos); |
|
} |
|
} |
|
program { signal: "mouse,down,1"; source: "dragover_event"; |
|
script { |
|
new mx, my, x, y, w, h; |
|
new Float:pos, Float:px, Float:pw; |
|
|
|
set_int(drag_is_down, 1); |
|
get_mouse(mx, my); |
|
get_geometry(PART:"dragover_event", x, y, w, h); |
|
x = mx - x; |
|
y = my - y; |
|
px = x; |
|
pw = w; |
|
if (w > 0) pos = px / pw; |
|
else pos = 0.5; |
|
custom_state(PART:"dragover", "default", 0.0); |
|
set_state_val(PART:"dragover", STATE_REL1, pos, 0.0); |
|
set_state_val(PART:"dragover", STATE_REL2, pos, 0.0); |
|
set_state(PART:"dragover", "custom", 0.0); |
|
send_message(MSG_FLOAT, 10, pos); |
|
} |
|
} |
|
program { signal: "mouse,up,1"; source: "dragover_event"; |
|
script { |
|
set_int(drag_is_down, 0); |
|
} |
|
} |
|
part { name: "event"; type: RECT; repeat_events: 1; |
|
description { state: "default" 0.0; |
|
color: 0 0 0 0; // no cc |
|
} |
|
} |
|
program { signal: "mouse,move"; source: "event"; |
|
// mouse moves around causing control bar to show until idle |
|
script { |
|
pos_show(); |
|
} |
|
} |
|
program { name: "posshow"; |
|
action: STATE_SET "visible" 0.0; |
|
transition: SINUSOIDAL 0.3; |
|
target: "posclip"; |
|
} |
|
program { name: "cbarshow"; |
|
action: STATE_SET "visible" 0.0; |
|
transition: SINUSOIDAL 0.3; |
|
target: "controlbar_clip"; |
|
} |
|
program { name: "poshide"; |
|
action: STATE_SET "default" 0.0; |
|
transition: SINUSOIDAL 1.0; |
|
target: "posclip"; |
|
} |
|
program { name: "cbarhide"; |
|
action: STATE_SET "default" 0.0; |
|
transition: SINUSOIDAL 1.0; |
|
target: "controlbar_clip"; |
|
} |
|
|
|
part { name: "listevent"; type: RECT; repeat_events: 1; |
|
description { state: "default" 0.0; |
|
color: 0 0 0 0; |
|
rel1.relative: 0.8 0.0; |
|
rel2.relative: 1.0 0.0; |
|
rel2.to_y: "controlbar"; |
|
} |
|
} |
|
part { name: "listevent2"; type: RECT; repeat_events: 1; |
|
description { state: "default" 0.0; |
|
color: 0 0 0 0; |
|
rel2.relative: 0.8 1.0; |
|
} |
|
} |
|
program { signal: "mouse,in"; source: "listevent"; |
|
action: SIGNAL_EMIT "list,show" "rage"; |
|
} |
|
program { signal: "mouse,in"; source: "listevent2"; |
|
action: SIGNAL_EMIT "list,hide" "rage"; |
|
} |
|
|
|
program { signal: "action,newvid"; source: "rage"; |
|
action: SIGNAL_EMIT "mouse,move" "event"; |
|
} |
|
program { signal: "action,rewind"; source: "rage"; |
|
action: SIGNAL_EMIT "mouse,move" "event"; |
|
} |
|
program { signal: "action,forward"; source: "rage"; |
|
action: SIGNAL_EMIT "mouse,move" "event"; |
|
} |
|
program { signal: "action,next"; source: "rage"; |
|
action: SIGNAL_EMIT "mouse,move" "event"; |
|
} |
|
program { signal: "action,prev"; source: "rage"; |
|
action: SIGNAL_EMIT "mouse,move" "event"; |
|
} |
|
program { signal: "action,play"; source: "rage"; |
|
action: SIGNAL_EMIT "mouse,move" "event"; |
|
} |
|
program { signal: "action,pause"; source: "rage"; |
|
action: SIGNAL_EMIT "mouse,move" "event"; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
//// -- ABOUT IMAGE |
|
part { name: "tv-bg"; |
|
clip_to: "tv-clip"; |
|
description { state: "default" 0.0; |
|
rel.to: "tv"; |
|
rel1.relative: (40/256) (120/256); |
|
rel2.relative: (174/256) (222/256); |
|
image.normal: "tv-bg.png"; |
|
} |
|
} |
|
part { name: "tv-anim"; |
|
clip_to: "tv-clip"; |
|
description { state: "default" 0.0; |
|
rel.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; // no cc |
|
} |
|
description { state: "visible" 0.0; |
|
visible: 1; |
|
color: 255 255 255 255; // no cc |
|
} |
|
} |
|
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"; |
|
} |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
group { name: "rage/list/item"; |
|
images.image: "win_shadow.png" COMP; |
|
|
|
parts { |
|
part { name: "shadow"; mouse_events: 0; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "clip"; |
|
color_class: "/shadow/normal"; |
|
image.normal: "win_shadow.png"; |
|
image.border: 14 14 14 14; |
|
image.middle: 0; |
|
rel1.offset: -7 -3; |
|
rel2.offset: 6 11; |
|
fill.smooth: 0; |
|
} |
|
} |
|
part { name: "glow"; type: RECT; mouse_events: 0; |
|
description { state: "default" 0.0; |
|
rel.to: "clip"; |
|
color_class: "/bg/selected"; |
|
color: 255 255 255 0; // no cc |
|
visible: 0; |
|
} |
|
description { state: "selected" 0.0; |
|
inherit: "default" 0.0; |
|
rel1.offset: -4 -4; |
|
rel2.offset: 3 3; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
program { signal: "rage,state,selected"; source: "rage"; |
|
action: STATE_SET "selected" 0.0; |
|
transition: SINUSOIDAL 0.1; |
|
target: "glow"; |
|
} |
|
program { signal: "rage,state,unselected"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
transition: SINUSOIDAL 0.3; |
|
target: "glow"; |
|
} |
|
|
|
part { name: "base"; type: RECT; mouse_events: 0; |
|
description { state: "default" 0.0; |
|
color_class: "/bg-dark/normal"; |
|
rel.to: "clip"; |
|
} |
|
} |
|
part { name: "clip"; type: RECT; |
|
description { state: "default" 0.0; |
|
rel1.offset: 4 4; |
|
rel2.offset: -5 -5; |
|
} |
|
} |
|
part { name: "rage.sizer"; type: SWALLOW; |
|
description { state: "default" 0.0; |
|
min: 16 16; |
|
rel.to: "clip"; |
|
} |
|
} |
|
part { name: "rage.content"; type: SWALLOW; |
|
clip_to: "clip"; |
|
description { state: "default" 0.0; |
|
rel.to: "clip"; |
|
} |
|
} |
|
part { name: "rage.title"; type: TEXT; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
align: 0.0 1.0; |
|
rel.to: "clip"; |
|
rel1.offset: 4 4; |
|
rel2.offset: -5 -5; |
|
color: 255 255 255 255; |
|
text { font: "Sans"; size: 8; |
|
align: 0.0 1.0; |
|
min: 0 1; |
|
elipsis: 0; |
|
} |
|
} |
|
} |
|
part { name: "event"; type: RECT; |
|
ignore_flags: ON_HOLD; |
|
description { state: "default" 0.0; |
|
color: 0 0 0 0; // no cc |
|
} |
|
} |
|
program { signal: "mouse,clicked,1"; source: "event"; |
|
action: SIGNAL_EMIT "rage,selected" "rage"; |
|
} |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
group { name: "rage/browser/entry"; |
|
parts { |
|
part { name: "rage.title"; type: TEXT; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 0 1; |
|
align: 0.0 0.0; |
|
rel1.offset: 20 10; |
|
rel2.offset: -21 10; |
|
rel2.relative: 1.0 0.0; |
|
color_class: "/fg/selected"; |
|
text { font: "Sans:style=Bold"; size: 10; |
|
align: 0.0 0.0; |
|
min: 0 1; |
|
elipsis: 0; |
|
} |
|
offscale; |
|
} |
|
description { state: "fullscreen" 0.0; |
|
inherit: "default" 0.0; |
|
rel1.offset: 40 40; |
|
rel2.offset: -41 40; |
|
text.size: 40; |
|
} |
|
} |
|
part { name: "rage.content"; type: SWALLOW; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
rel1.to_y: "rage.title"; |
|
rel1.relative: 0.0 1.0; |
|
rel1.offset: 0 10; |
|
rel2.offset: -1 -1; |
|
offscale; |
|
} |
|
description { state: "fullscreen" 0.0; |
|
inherit: "default" 0.0; |
|
rel1.offset: 0 40; |
|
rel2.offset: -1 -11; |
|
} |
|
} |
|
} |
|
programs { |
|
program { signal: "state,fullscreen"; source: "rage"; |
|
action: STATE_SET "fullscreen" 0.0; |
|
target: "rage.title"; |
|
target: "rage.content"; |
|
} |
|
program { signal: "state,normal"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
target: "rage.title"; |
|
target: "rage.content"; |
|
} |
|
} |
|
} |
|
|
|
group { name: "rage/browser/item"; |
|
images.image: "win_shadow.png" COMP; |
|
images.image: "dimmer.png" COMP; |
|
|
|
styles { |
|
style { name: "browser_item_label"; |
|
base: "font=Sans font_size=10 color=cc:/fg/selected wrap=mixed ellipsis=1.0"; |
|
} |
|
style { name: "browser_item_label_fullscreen"; |
|
base: "font=Sans font_size=20 color=cc:/fg/selected wrap=mixed ellipsis=1.0"; |
|
} |
|
} |
|
|
|
parts { |
|
part { name: "shadow"; mouse_events: 0; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
rel.to: "clip"; |
|
color_class: "/shadow/normal"; |
|
image.normal: "win_shadow.png"; |
|
image.border: 14 14 14 14; |
|
image.middle: 0; |
|
rel1.offset: -7 -3; |
|
rel2.offset: 6 11; |
|
fill.smooth: 0; |
|
} |
|
} |
|
part { name: "base"; type: RECT; mouse_events: 0; |
|
description { state: "default" 0.0; |
|
color: 0 0 0 255; // no cc |
|
rel.to: "clip"; |
|
} |
|
} |
|
|
|
part { name: "clip"; type: RECT; |
|
description { state: "default" 0.0; |
|
color: 192 192 192 255; // no cc |
|
} |
|
description { state: "selected" 0.0; |
|
inherit: "default" 0.0; |
|
color: 255 255 255 255; // no cc |
|
} |
|
} |
|
part { name: "rage.content"; type: SWALLOW; |
|
clip_to: "clip"; |
|
description { state: "default" 0.0; |
|
rel.to: "clip"; |
|
} |
|
} |
|
part { name: "dimmer"; mouse_events: 0; |
|
clip_to: "clip"; |
|
description { state: "default" 0.0; |
|
image.normal: "dimmer.png"; |
|
fill.smooth: 0; |
|
rel.to: "clip"; |
|
} |
|
} |
|
part { name: "rage.title"; type: TEXTBLOCK; mouse_events: 0; |
|
clip_to: "clip"; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
fixed: 1 1; |
|
align: 0.0 1.0; |
|
rel1.offset: 5 5; |
|
rel.to: "clip"; |
|
rel2.offset: -6 -10; |
|
color_class: "/fg/selected"; |
|
text { font: "Sans"; size: 20; |
|
style: "browser_item_label"; |
|
align: 0.0 1.0; |
|
min: 0 1; |
|
elipsis: 0; |
|
} |
|
offscale; |
|
} |
|
description { state: "fullscreen" 0.0; |
|
inherit: "default" 0.0; |
|
rel1.offset: 8 8; |
|
rel2.offset: -9 -9; |
|
text.style: "browser_item_label_fullscreen"; |
|
} |
|
} |
|
part { name: "glow"; type: RECT; mouse_events: 0; |
|
scale: 1; |
|
description { state: "default" 0.0; |
|
rel.to: "clip"; |
|
rel1.relative: 0.0 1.0; |
|
align: 0.0 1.0; |
|
color_class: "/bg/selected"; |
|
color: 255 255 255 0; // no cc |
|
visible: 0; |
|
} |
|
description { state: "selected" 0.0; |
|
inherit: "default" 0.0; |
|
min: 0 5; |
|
color: 255 255 255 255; // no cc |
|
visible: 1; |
|
} |
|
} |
|
program { signal: "rage,state,selected"; source: "rage"; |
|
action: STATE_SET "selected" 0.0; |
|
transition: SINUSOIDAL 0.1; |
|
target: "glow"; |
|
target: "clip"; |
|
} |
|
program { signal: "rage,state,unselected"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
transition: SINUSOIDAL 0.3; |
|
target: "glow"; |
|
target: "clip"; |
|
} |
|
part { name: "event"; type: RECT; |
|
ignore_flags: ON_HOLD; |
|
description { state: "default" 0.0; |
|
color: 0 0 0 0; // no cc |
|
} |
|
} |
|
program { signal: "mouse,clicked,1"; source: "event"; |
|
action: SIGNAL_EMIT "rage,selected" "rage"; |
|
} |
|
} |
|
programs { |
|
program { signal: "state,fullscreen"; source: "rage"; |
|
action: STATE_SET "fullscreen" 0.0; |
|
target: "rage.title"; |
|
} |
|
program { signal: "state,normal"; source: "rage"; |
|
action: STATE_SET "default" 0.0; |
|
target: "rage.title"; |
|
} |
|
} |
|
} |
|
}
|
|
|