- change font when something is selected

SVN revision: 18166
This commit is contained in:
codewarrior 2005-10-31 10:08:41 +00:00 committed by codewarrior
parent 08b9455b5f
commit 8389d2e2a5
1 changed files with 21 additions and 5 deletions

View File

@ -938,6 +938,7 @@ group {
type: TEXT;
effect: SHADOW;
description {
state: "default" 0.0;
rel1 {
relative: 0.0 1.0;
offset: 5 -6;
@ -956,6 +957,13 @@ group {
// min: 1 1;
}
}
description {
state: "clicked" 0.0;
inherit: "default" 0.0;
text {
font: "Edje-Vera-Bold";
}
}
}
part {
name: "icon_event";
@ -1018,11 +1026,19 @@ group {
}
programs {
program {
name: "button_click";
signal: "mouse,down,1";
source: "";
action: SIGNAL_EMIT "clicked" "";
}
name: "clicked";
signal: "clicked";
source: "";
action: STATE_SET "clicked" 0.0;
target: "icon_title";
}
program {
name: "unclicked";
signal: "unclicked";
source: "";
action: STATE_SET "default" 0.0;
target: "icon_title";
}
}
}