[E-devel] [PATCH] python-elementary: Align Button to C api.

2012-05-20 Thread Kai Huuhko
---
 .../elementary/elementary.c_elementary_button.pxi  |   98 
 .../include/elementary/c_elementary.pxd|6 ++
 2 files changed, 87 insertions(+), 17 deletions(-)

diff --git a/python-elementary/elementary/elementary.c_elementary_button.pxi b/python-elementary/elementary/elementary.c_elementary_button.pxi
index 05715ed..6b610cb 100644
--- a/python-elementary/elementary/elementary.c_elementary_button.pxi
+++ b/python-elementary/elementary/elementary.c_elementary_button.pxi
@@ -17,37 +17,101 @@
 #
 
 cdef class Button(Object):
+"""This is a push-button.
+
+The button has the following styles available:
+default: a normal button.
+anchor: Like default, but the button fades away when the mouse is not over
+it, leaving only the text or icon.
+hoversel_vertical: Internally used by Hoversel to give a continuous look
+across its options.
+hoversel_vertical_entry: Another internal for Hoversel.
+naviframe: Internally used by Naviframe for its back button.
+colorselector: Internally used by Colorselector for its left and right
+buttons.
+
+Default content parts of the button widget that you can use for are:
+"icon" - An icon of the button
+
+Default text parts of the button widget that you can use for are:
+"default" - Label of the button
+
+"""
+
 def __init__(self,c_evas.Object parent):
 Object.__init__(self, parent.evas)
 self._set_obj(elm_button_add(parent.obj))
 
+def autorepeat_set(self, on):
+"""Turn on/off the generated autorepeat event.
+
+When on, keeping a button pressed will continuously emit a @c repeated
+signal until the button is released. The time it takes until it starts
+emitting the signal is given by autorepeat_initial_timeout_set(),
+and the time between each new emission by autorepeat_gap_timeout_set().
+"""
+elm_button_autorepeat_set(self.obj, on)
+
+def autorepeat_get(self):
+"""Get whether the autorepeat feature is enabled."""
+return bool(elm_button_autorepeat_get(self.obj))
+
+property autorepeat:
+def __get__(self):
+return self.autorepeat_get()
+def __set__(self, on):
+self.autorepeat_set(on)
+
+def autorepeat_initial_timeout_set(self, t):
+"""Set the initial timeout before the autorepeat event is generated."""
+elm_button_autorepeat_initial_timeout_set(self.obj, t)
+
+def autorepeat_initial_timeout_get(self):
+"""Get the initial timeout before the autorepeat event is generated."""
+return elm_button_autorepeat_initial_timeout_get(self.obj)
+
+property autorepeat_initial_timeout:
+def __get__(self):
+return self.autorepeat_initial_timeout_get()
+def __set__(self, t):
+self.autorepeat_initial_timeout_set(t)
+
+def autorepeat_gap_timeout_set(self, t):
+"""Set the interval between each generated autorepeat event."""
+elm_button_autorepeat_gap_timeout_set(self.obj, t)
+
+def autorepeat_gap_timeout_get(self):
+"""Get the interval between each generated autorepeat event."""
+return elm_button_autorepeat_gap_timeout_get(self.obj)
+
+property autorepeat_gap_timeout:
+def __get__(self):
+return self.autorepeat_gap_timeout_get()
+def __set__(self, t):
+self.autorepeat_gap_timeout_set(t)
+
 def callback_clicked_add(self, func, *args, **kwargs):
 self._callback_add("clicked", func, *args, **kwargs)
 
 def callback_clicked_del(self, func):
 self._callback_del("clicked", func)
 
-def label_set(self, label):
-_METHOD_DEPRECATED(self, "text_set")
-self.text_set(label)
+def callback_repeated_add(self, func, *args, **kwargs):
+self._callback_add("repeated", func, *args, **kwargs)
 
-def label_get(self):
-_METHOD_DEPRECATED(self, "text_get")
-return self.text_get()
+def callback_repeated_del(self, func):
+self._callback_del("repeated", func)
 
-property label:
-def __get__(self):
-return self.label_get()
+def callback_pressed_add(self, func, *args, **kwargs):
+self._callback_add("pressed", func, *args, **kwargs)
 
-def __set__(self, value):
-self.label_set(value)
+def callback_pressed_del(self, func):
+self._callback_del("pressed", func)
 
-def icon_set(self, c_evas.Object icon):
-elm_object_part_content_set(self.obj, "icon", icon.obj)
+def callback_unpressed_add(self, func, *args, **kwargs):
+self._callback_add("unpressed", func, *args, **kwargs)
 
-def icon_get(self):
-cdef c_evas.Evas_Object *icon
-icon = elm_object_part_content_get(self.obj, "icon")
-return evas.c_evas._Object_from_instance( icon)
+def callback_unpressed_del(self, func):
+self._callback_del("unpressed", func)
 
 _el

Re: [E-devel] [PATCH] python-elementary: Align Button to C api.

2012-05-21 Thread Boris Faure
On Mon, May 21, 2012 at 7:15 AM, Kai Huuhko  wrote:
> ---
>  .../elementary/elementary.c_elementary_button.pxi  |   98 
> 
>  .../include/elementary/c_elementary.pxd            |    6 ++
>  2 files changed, 87 insertions(+), 17 deletions(-)

in svn :)
-- 
Boris Faure

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel