evas/examples: add intro for evas-event-filter.c example

Reviewers: cedric

Reviewed By: cedric

Subscribers: jpeg

Differential Revision: https://phab.enlightenment.org/D4907

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Bryce Harrington 2017-06-05 11:13:02 -07:00 committed by Cedric BAIL
parent 223b3f6437
commit 8110e09a8b
1 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,18 @@
/**
* Example of filtering events in Evas
*
* Demonstrates how to filter events by seat using a pair of Evas
* objects and the efl_input_seat_event_filter_set() routine. The blue
* rectangle can accept events from any seat, while the red one is
* filtered to only take events from a single seat.
*
* @see efl_input_seat_event_filter_set
*
* @verbatim
* gcc -o evas-event-filter evas-event-filter.c `pkg-config --libs --cflags evas ecore ecore-evas`
* @endverbatim
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif