Check for eap changes.

SVN revision: 17019
This commit is contained in:
sebastid 2005-09-28 03:28:48 +00:00 committed by sebastid
parent 27f3df3e13
commit 64b597732e
1 changed files with 21 additions and 0 deletions

View File

@ -109,6 +109,8 @@ static int _e_border_cb_ping_timer(void *data);
static int _e_border_cb_kill_timer(void *data);
static char *_e_border_winid_str_get(Ecore_X_Window win);
static void _e_border_app_change(void *data, E_App *app, E_App_Change change);
/* local subsystem globals */
static Evas_List *handlers = NULL;
@ -171,6 +173,8 @@ e_border_init(void)
handlers = evas_list_append(handlers, ecore_event_handler_add(E_EVENT_POINTER_WARP, _e_border_cb_pointer_warp, NULL));
e_app_change_callback_add(_e_border_app_change, NULL);
E_EVENT_BORDER_ADD = ecore_event_type_new();
E_EVENT_BORDER_REMOVE = ecore_event_type_new();
E_EVENT_BORDER_DESK_SET = ecore_event_type_new();
@ -7162,3 +7166,20 @@ _e_border_winid_str_get(Ecore_X_Window win)
return id;
}
static void
_e_border_app_change(void *data, E_App *app, E_App_Change change)
{
Evas_List *l;
for (l = borders; l; l = l->next)
{
E_Border *bd;
bd = l->data;
if (e_app_equals(bd->app, app))
{
bd->changes.icon = 1;
bd->changed = 1;
}
}
}