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.
163 lines
2.8 KiB
163 lines
2.8 KiB
fonts |
|
{ |
|
font: "VeraBd.ttf" "VeraBold"; |
|
} |
|
images |
|
{ |
|
image: "module_icon.png" COMP; |
|
image: "newmail.png" COMP; |
|
image: "checking.png" COMP; |
|
} |
|
|
|
collections |
|
{ |
|
group |
|
{ |
|
name: "modules/mail/main"; |
|
max: 128 128; |
|
parts |
|
{ |
|
part |
|
{ |
|
name: "logo"; |
|
type: IMAGE; |
|
mouse_events: 1; |
|
description |
|
{ |
|
state: "default" 0.0; |
|
aspect: 1.0 1.0; |
|
aspect_preference: BOTH; |
|
visible: 1; |
|
rel1 |
|
{ |
|
relative: 0.0 0.0; |
|
offset: 0 0; |
|
} |
|
rel2 |
|
{ |
|
relative: 1.0 1.0; |
|
offset: -1 -1; |
|
} |
|
image |
|
{ |
|
normal: "module_icon.png"; |
|
} |
|
color: 255 255 255 255; |
|
} |
|
description |
|
{ |
|
state: "new" 0.0; |
|
inherit: "default" 0.0; |
|
image |
|
{ |
|
normal: "newmail.png"; |
|
} |
|
} |
|
description |
|
{ |
|
state: "checking" 0.0; |
|
inherit: "default" 0.0; |
|
image |
|
{ |
|
normal: "checking.png"; |
|
} |
|
} |
|
} |
|
part |
|
{ |
|
name: "new_label"; |
|
type: TEXT; |
|
effect: OUTLINE_SOFT_SHADOW; |
|
mouse_events: 1; |
|
description |
|
{ |
|
state: "default" 0.0; |
|
color: 255 255 255 255; |
|
color3: 0 0 0 32; |
|
color_class: "module_label"; |
|
visible: 0; |
|
rel1 |
|
{ |
|
relative: 0.5 0.5; |
|
offset: 4 0; |
|
to: "logo"; |
|
} |
|
rel2 |
|
{ |
|
relative: 0.5 1.0; |
|
offset: 4 -1; |
|
to: "logo"; |
|
} |
|
text |
|
{ |
|
text: ""; |
|
font: "VeraBold"; |
|
size: 14; |
|
min: 1 1; |
|
align: 0.5 0.5; |
|
text_class: "module_large"; |
|
} |
|
} |
|
description |
|
{ |
|
state: "visible" 0.0; |
|
inherit: "default" 0.0; |
|
visible: 1; |
|
} |
|
} |
|
} |
|
programs |
|
{ |
|
program |
|
{ |
|
name: "go_active"; |
|
signal: "label_active"; |
|
source: ""; |
|
action: STATE_SET "visible" 0.0; |
|
transition: SINUSOIDAL 0.5; |
|
target: "new_label"; |
|
} |
|
program |
|
{ |
|
name: "go_passive2"; |
|
signal: "label_passive2"; |
|
source: ""; |
|
action: ACTION_STOP; |
|
target: "go_active"; |
|
} |
|
program |
|
{ |
|
name: "go_passive"; |
|
signal: "label_passive"; |
|
source: ""; |
|
action: STATE_SET "default" 0.0; |
|
transition: SINUSOIDAL 1.0; |
|
target: "new_label"; |
|
} |
|
program |
|
{ |
|
name: "go_new"; |
|
signal: "new_mail"; |
|
action: STATE_SET "new" 0.0; |
|
transition: SINUSOIDAL 0.5; |
|
target: "logo"; |
|
} |
|
program |
|
{ |
|
name: "go_check"; |
|
signal: "check_mail"; |
|
action: STATE_SET "checking" 0.0; |
|
transition: SINUSOIDAL 0.5; |
|
target: "logo"; |
|
} |
|
program |
|
{ |
|
name: "go_no"; |
|
signal: "no_mail"; |
|
action: STATE_SET "default" 0.0; |
|
transition: SINUSOIDAL 1.0; |
|
target: "logo"; |
|
} |
|
} |
|
} |
|
}
|
|
|