cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=3d46c390f7366ef6a8097b45fe025368a06dbe36
commit 3d46c390f7366ef6a8097b45fe025368a06dbe36 Author: Bryce Harrington <br...@osg.samsung.com> Date: Mon Jun 5 11:13:02 2017 -0700 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 <ced...@osg.samsung.com> --- src/examples/evas/evas-event-filter.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/examples/evas/evas-event-filter.c b/src/examples/evas/evas-event-filter.c index 0b95a87551..5f46e95076 100644 --- a/src/examples/evas/evas-event-filter.c +++ b/src/examples/evas/evas-event-filter.c @@ -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 --