Evas event freezing code sample.

SVN revision: 68555
This commit is contained in:
Jonas M. Gastal 2012-02-29 13:49:04 +00:00
parent a64769e15f
commit db7f5d6c5f
1 changed files with 7 additions and 0 deletions

View File

@ -2368,6 +2368,13 @@ EAPI void evas_post_event_callback_remove_full (Evas *e, Evas_Objec
* programmer can then tell the canvas to ignore input events,
* bringing it back to normal behavior when he/she wants.
*
* Most of the time use of freezing events is done like this:
* @code
* evas_event_freeze(my_evas_canvas);
* function_that_does_work_wich_cant_be_interrupted_by_events();
* evas_event_thaw(my_evas_canvas);
* @endcode
*
* Some of the funcions in this group are exemplified @ref
* Example_Evas_Events "here".
*