kuuko pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=6036567b41d91f8b1023546d158bc742f72d65d2
commit 6036567b41d91f8b1023546d158bc742f72d65d2 Author: Kai Huuhko <kai.huu...@gmail.com> Date: Fri Mar 13 19:48:15 2015 +0200 Ecore-X: Add cursor_shape_get() --- efl/ecore_x/efl.ecore_x.pyx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/efl/ecore_x/efl.ecore_x.pyx b/efl/ecore_x/efl.ecore_x.pyx index c27afec..4b0ba88 100644 --- a/efl/ecore_x/efl.ecore_x.pyx +++ b/efl/ecore_x/efl.ecore_x.pyx @@ -297,6 +297,9 @@ def screensaver_resume(): """ .. versionadded:: 1.11 """ ecore_x_screensaver_resume() +def cursor_shape_get(int shape): + """ .. versionadded:: 1.14 """ + return ecore_x_cursor_shape_get(shape) include "efl.ecore_x_window.pxi" include "efl.ecore_x_events.pxi" --