Knock another item off the TODO. Theme now emits ecdb,clicked for taking action, and ecdb,activate for focusing.

This commit is contained in:
Jaime Thomas
2009-04-19 18:31:20 +00:00
parent 8d47250ad9
commit 62607be1c9
13 changed files with 203 additions and 96 deletions

View File

@ -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";

View File

@ -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";

View File

@ -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: "*";
}
}
}

View File

@ -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";

View File

@ -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 {

View File

@ -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: "*";
}

View File

@ -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";