Knock another item off the TODO. Theme now emits ecdb,clicked for taking action, and ecdb,activate for focusing.
This commit is contained in:
@ -454,6 +454,27 @@ group {
|
||||
}
|
||||
|
||||
programs {
|
||||
program {
|
||||
name: "emit_clicked_return";
|
||||
signal: "mouse,clicked,1";
|
||||
action: SIGNAL_EMIT "ecdb,clicked" "ecdb/burn_data/return";
|
||||
source: "ecdb/burn_data/return";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "emit_clicked_begin";
|
||||
signal: "mouse,clicked,1";
|
||||
action: SIGNAL_EMIT "ecdb,clicked" "ecdb/burn_data/begin";
|
||||
source: "ecdb/burn_data/begin";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "emit_clicked_settings";
|
||||
signal: "mouse,clicked,1";
|
||||
action: SIGNAL_EMIT "ecdb,clicked" "ecdb/burn_data/settings";
|
||||
source: "ecdb/burn_data/settings";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "burn_data_page,visible1";
|
||||
signal: "ecdb,burn_data_page,visible";
|
||||
|
@ -350,6 +350,20 @@ group {
|
||||
}
|
||||
|
||||
programs {
|
||||
program {
|
||||
name: "emit_clicked_return";
|
||||
signal: "mouse,clicked,1";
|
||||
action: SIGNAL_EMIT "ecdb,clicked" "ecdb/burn_image/return";
|
||||
source: "ecdb/burn_image/return";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "emit_clicked_begin";
|
||||
signal: "mouse,clicked,1";
|
||||
action: SIGNAL_EMIT "ecdb,clicked" "ecdb/burn_image/begin";
|
||||
source: "ecdb/burn_image/begin";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "burn_image_page,visible1";
|
||||
signal: "ecdb,burn_image_page,visible";
|
||||
|
@ -364,7 +364,7 @@ group {
|
||||
name: "click_emit";
|
||||
signal: "mouse,clicked,1";
|
||||
source: "*";
|
||||
action: SIGNAL_EMIT "clicked" "ecdb";
|
||||
action: SIGNAL_EMIT "ecdb,clicked" "ecdb";
|
||||
}
|
||||
|
||||
program {
|
||||
@ -391,6 +391,13 @@ group {
|
||||
source: "ecdb";
|
||||
target: "button";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "activate";
|
||||
signal: "mouse,down,1";
|
||||
action: SIGNAL_EMIT "ecdb,activate" "ecdb";
|
||||
source: "*";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -186,6 +186,20 @@ group {
|
||||
}
|
||||
|
||||
programs {
|
||||
program {
|
||||
name: "emit_clicked";
|
||||
signal: "mouse,clicked,1";
|
||||
action: SIGNAL_EMIT "ecdb,clicked" "ecdb";
|
||||
source: "*";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "emit_activate";
|
||||
signal: "mouse,down,1";
|
||||
action: SIGNAL_EMIT "ecdb,activate" "ecdb";
|
||||
source: "*";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "focus_in";
|
||||
signal: "ecdb,focus,in";
|
||||
|
@ -307,10 +307,17 @@ group {
|
||||
}
|
||||
|
||||
program {
|
||||
name: "clicked_send";
|
||||
name: "emit_clicked";
|
||||
signal: "mouse,clicked,1";
|
||||
source: "*";
|
||||
action: SIGNAL_EMIT "ecdb,combo,clicked" "ecdb";
|
||||
action: SIGNAL_EMIT "ecdb,clicked" "ecdb";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "emit_activate";
|
||||
signal: "mouse,down,1";
|
||||
source: "*";
|
||||
action: SIGNAL_EMIT "ecdb,activate" "ecdb";
|
||||
}
|
||||
|
||||
program {
|
||||
|
@ -112,7 +112,14 @@ group {
|
||||
program {
|
||||
name: "signal_emit";
|
||||
signal: "mouse,clicked,1";
|
||||
action: SIGNAL_EMIT "clicked" "ecdb";
|
||||
action: SIGNAL_EMIT "ecdb,clicked" "ecdb";
|
||||
source: "*";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "ecdb,activate";
|
||||
signal: "mouse,down,1";
|
||||
action: SIGNAL_EMIT "ecdb,activate" "ecdb";
|
||||
source: "*";
|
||||
}
|
||||
|
||||
|
@ -315,6 +315,20 @@ group {
|
||||
}
|
||||
|
||||
programs {
|
||||
program {
|
||||
name: "emit_clicked_return";
|
||||
signal: "mouse,clicked,1";
|
||||
action: SIGNAL_EMIT "ecdb,clicked" "ecdb/erase/return";
|
||||
source: "ecdb/erase/return";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "emit_clicked_begin";
|
||||
signal: "mouse,clicked,1";
|
||||
action: SIGNAL_EMIT "ecdb,clicked" "ecdb/erase/begin";
|
||||
source: "ecdb/erase/begin";
|
||||
}
|
||||
|
||||
program {
|
||||
name: "erase_page,visible1";
|
||||
signal: "ecdb,erase_page,visible";
|
||||
|
Reference in New Issue
Block a user