davemds pushed a commit to branch master.

http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=308f93a1450d786ee209abf3f67ba7dfd3ac8c7e

commit 308f93a1450d786ee209abf3f67ba7dfd3ac8c7e
Author: Dave Andreoli <[email protected]>
Date:   Sat Jan 17 12:18:29 2015 +0100

    New 1.13 signal for elm.Win theme,changed
---
 efl/elementary/window.pyx | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/efl/elementary/window.pyx b/efl/elementary/window.pyx
index e9ce037..ad3ec29 100644
--- a/efl/elementary/window.pyx
+++ b/efl/elementary/window.pyx
@@ -101,6 +101,7 @@ Signals that you can add callbacks for are:
 - ``profile,changed``: profile of the window has been changed
 - ``focused`` - When the window has received focus. (since 1.8)
 - ``unfocused`` - When the window has lost focus. (since 1.8)
+- ``theme,changed`` - The theme was changed. (since 1.13)
 
 
 Enumerations
@@ -1786,6 +1787,16 @@ cdef class Window(Object):
     def callback_unfocused_del(self, func):
         self._callback_del("unfocused", func)
 
+    def callback_theme_changed_add(self, func, *args, **kwargs):
+        """When the theme was changed.
+
+        .. versionadded:: 1.13
+        """
+        self._callback_add("theme,changed", func, *args, **kwargs)
+
+    def callback_theme_changed_del(self, func):
+        self._callback_del("theme,changed", func)
+
 _object_mapping_register("Elm_Win", Window)
 
 

-- 


Reply via email to