Better icons.

Add a "checking" state to show it's doing something.


SVN revision: 23446
This commit is contained in:
Christopher Michael 2006-06-15 13:05:53 +00:00
parent 008ccca44d
commit c2dd83f97c
6 changed files with 22 additions and 1 deletions

BIN
checking.png Normal file

Binary file not shown.

View File

@ -490,6 +490,9 @@ _mail_cb_check(void *data)
ci = _mail_config_item_get(inst->gcc->id);
if (!ci->boxes) return 1;
edje_object_signal_emit(inst->mail->mail_obj, "check_mail", "");
for (l = ci->boxes; l; l = l->next)
{
Config_Box *cb;

View File

@ -6,6 +6,7 @@ images
{
image: "module_icon.png" COMP;
image: "newmail.png" COMP;
image: "checking.png" COMP;
}
collections
@ -50,7 +51,16 @@ collections
{
normal: "newmail.png";
}
}
}
description
{
state: "checking" 0.0;
inherit: "default" 0.0;
image
{
normal: "checking.png";
}
}
}
part
{
@ -129,6 +139,14 @@ collections
transition: SINUSOIDAL 0.5;
target: "logo";
}
program
{
name: "go_check";
signal: "check_mail";
action: STATE_SET "checking" 0.0;
transition: SINUSOIDAL 0.5;
target: "logo";
}
program
{
name: "go_no";

Binary file not shown.

Binary file not shown.

Binary file not shown.