On 05/06/13 19:18, Leif Middelschulte wrote:
> Hi,
>
> I want a function to be called once an object loses the focus.
>
> I tried to add an evas object event callback for EVAS_CALLBACK_FOCUS_OUT,
> but it never gets called. See the attached code.
>
> Hopefully I'm just doing something wrong.
>

I believe what you want to use is:

    evas_object_smart_callback_add(obj, "focused", _cb_focused, NULL);
    evas_object_smart_callback_add(obj, "unfocused", _cb_unfocused, NULL);

dh

>
>
> ------------------------------------------------------------------------------
> How ServiceNow helps IT people transform IT departments:
> 1. A cloud service to automate IT design, transition and operations
> 2. Dashboards that offer high-level views of enterprise services
> 3. A single system of record for all IT processes
> http://p.sf.net/sfu/servicenow-d2d-j
>
>
> _______________________________________________
> enlightenment-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


------------------------------------------------------------------------------
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to