- show selections

SVN revision: 18214
This commit is contained in:
codewarrior 2005-11-02 11:10:37 +00:00 committed by codewarrior
parent 1738cdd1da
commit ffa5a66879
1 changed files with 32 additions and 3 deletions

View File

@ -150,6 +150,8 @@ images
image: "e17_fileman_rubberband.png" COMP; image: "e17_fileman_rubberband.png" COMP;
image: "e17_menu_bg_border.png" COMP; image: "e17_menu_bg_border.png" COMP;
image: "e17_logo.png" COMP; image: "e17_logo.png" COMP;
image: "e17_button.png" COMP;
} }
styles styles
@ -938,6 +940,31 @@ group {
state: "default" 0.0; state: "default" 0.0;
} }
} }
part {
name: "icon_overlay";
mouse_events: 1;
description {
state: "default" 0.0;
visible: 0;
rel1 {
relative: 0.0 0.0;
offset: 0 0;
}
rel2 {
relative: 1.0 1.0;
offset: -1 -1;
}
image {
normal: "e17_button.png";
}
color: 255 255 255 128;
}
description {
state: "clicked" 0.0;
inherit: "default" 0.0;
visible: 1;
}
}
part { part {
name: "icon_title"; name: "icon_title";
type: SWALLOW; type: SWALLOW;
@ -948,7 +975,7 @@ group {
rel1 { rel1 {
to: "icon_swallow"; to: "icon_swallow";
relative: 0.0 1.0; relative: 0.0 1.0;
offset: -1 -1; offset: 1 -1;
} }
rel2 { rel2 {
to: "icon_swallow"; to: "icon_swallow";
@ -960,7 +987,7 @@ group {
state: "clicked" 0.0; state: "clicked" 0.0;
inherit: "default" 0.0; inherit: "default" 0.0;
} }
} }
part { part {
name: "icon_event"; name: "icon_event";
type: RECT; type: RECT;
@ -977,7 +1004,7 @@ group {
} }
color: 0 0 0 0; color: 0 0 0 0;
} }
} }
/* /*
part { part {
name: "icon_title"; name: "icon_title";
@ -1025,6 +1052,7 @@ group {
source: ""; source: "";
action: STATE_SET "clicked" 0.0; action: STATE_SET "clicked" 0.0;
target: "icon_title"; target: "icon_title";
target: "icon_overlay";
} }
program { program {
name: "unclicked"; name: "unclicked";
@ -1032,6 +1060,7 @@ group {
source: ""; source: "";
action: STATE_SET "default" 0.0; action: STATE_SET "default" 0.0;
target: "icon_title"; target: "icon_title";
target: "icon_overlay";
} }
} }
} }