Enlightenment CVS committal

Author  : barbieri
Project : e17
Module  : proto/python-efl

Dir     : e17/proto/python-efl/python-ecore/ecore


Modified Files:
        .cvsignore __init__.py ecore.c_ecore.pyx 
Added Files:
        ecore.c_ecore_events.pxi 


Log Message:
Ecore events support and ecore.x.Window improvements, with examples.

ecore now provides event support, it's generic, but types need to be
registered with ecore._event_mapping_register(type, class) before
they're used.

ecore.x was improved to handle almost all events, example were added
to examples/x.

===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-ecore/ecore/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- .cvsignore  6 Jul 2007 20:44:05 -0000       1.1
+++ .cvsignore  12 Nov 2007 01:55:04 -0000      1.2
@@ -1,3 +1,5 @@
 *.pyc
 *.pyo
 ecore.c_ecore.c
+ecore.c_ecore.h
+ecore.c_ecore.pxi
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-ecore/ecore/__init__.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- __init__.py 2 Sep 2007 15:11:54 -0000       1.5
+++ __init__.py 12 Nov 2007 01:55:04 -0000      1.6
@@ -3,10 +3,11 @@
 import c_ecore
 
 from c_ecore import shutdown, time_get, timer_add, \
-     main_loop_begin, main_loop_quit, main_loop_iterate, \
+     main_loop_begin, main_loop_quit, main_loop_iterate, event_handler_add, \
      animator_add, animator_frametime_set, animator_frametime_get, \
      idler_add, idle_enterer_add, idle_exiter_add, fd_handler_add, \
-     Animator, Timer, Idler, IdleExiter, IdleEnterer, FdHandler
+     Animator, Timer, Idler, IdleExiter, IdleEnterer, FdHandler, \
+     Event, EventHandler
 
 
 ECORE_FD_NONE = 0
===================================================================
RCS file: /cvs/e/e17/proto/python-efl/python-ecore/ecore/ecore.c_ecore.pyx,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- ecore.c_ecore.pyx   1 Oct 2007 04:34:47 -0000       1.7
+++ ecore.c_ecore.pyx   12 Nov 2007 01:55:04 -0000      1.8
@@ -57,3 +57,4 @@
 include "ecore.c_ecore_idle_enterer.pxi"
 include "ecore.c_ecore_idle_exiter.pxi"
 include "ecore.c_ecore_fd_handler.pxi"
+include "ecore.c_ecore_events.pxi"



-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to