Bit more work on combo
This commit is contained in:
@ -9,7 +9,8 @@ group {
|
||||
|
||||
description {
|
||||
state: "default" 0.0;
|
||||
color: 255 255 255 0;
|
||||
color: 0 0 0 0;
|
||||
min: 20 20;
|
||||
|
||||
rel1 {
|
||||
relative: 0.0 0.0;
|
||||
@ -17,7 +18,7 @@ group {
|
||||
}
|
||||
|
||||
rel2 {
|
||||
relative: 0.0 0.0;
|
||||
relative: 1.0 1.0;
|
||||
offset: -1 -1;
|
||||
}
|
||||
}
|
||||
@ -25,7 +26,7 @@ group {
|
||||
description {
|
||||
state: "active" 0.0;
|
||||
inherit: "default" 0.0;
|
||||
color: 255 255 255 128;
|
||||
color: 0 0 0 128;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -34,9 +35,10 @@ group {
|
||||
program {
|
||||
name: "set_active";
|
||||
signal: "ecdb,combo,back,show";
|
||||
source: "ecbd";
|
||||
source: "ecdb";
|
||||
action: STATE_SET "active" 0.0;
|
||||
target: "base";
|
||||
transition: DECELERATE 0.2;
|
||||
}
|
||||
|
||||
program {
|
||||
@ -45,8 +47,16 @@ group {
|
||||
source: "ecdb";
|
||||
action: STATE_SET "default" 0.0;
|
||||
target: "base";
|
||||
transition: DECELERATE 0.2;
|
||||
}
|
||||
}
|
||||
|
||||
program {
|
||||
name: "clicked_send";
|
||||
signal: "mouse,clicked,*";
|
||||
source: "*";
|
||||
action: SIGNAL_EMIT "ecdb,combo,back,dismiss" "ecdb";
|
||||
}
|
||||
}
|
||||
|
||||
group {
|
||||
@ -224,13 +234,28 @@ group {
|
||||
}
|
||||
|
||||
program {
|
||||
name: "unclick1";
|
||||
name: "clicked_send";
|
||||
signal: "mouse,clicked,1";
|
||||
source: "*";
|
||||
action: SIGNAL_EMIT "ecdb,combo,clicked" "ecdb";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "collapse";
|
||||
signal: "ecdb,combo,collapse";
|
||||
source: "ecdb";
|
||||
action: STATE_SET "default" 0.0;
|
||||
target: "combo_button";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "expand";
|
||||
signal: "ecdb,combo,expand";
|
||||
source: "ecdb";
|
||||
action: STATE_SET "clicked" 0.0;
|
||||
target: "combo_button";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "unclick2";
|
||||
signal: "mouse,up,1";
|
||||
|
Reference in New Issue
Block a user