I want to create a button widget with Kivy that uses information from the touch event when clicked, i.e. The mouse position and the mouse button used for clicking.
If I re-implement on_release
or on_press
like this:
from kivy.uix.button import Button
class myBtn(Button):
def on_release(touch=None):
print('Touch:', touch) # Touch: None (always)
Touch will always be None. If I re-implement on_touch_up
or on_touch_down
I can access the touch information:
from kivy.uix.button import Button
class myBtn(Button):
def on_touch_up(touch=None):
print('Touch:', touch)
# Touch: <MouseMotionEvent spos=(..., ...) pos=(..., ...)
print('Button:', touch.button) # Button: left
The problem with this version is that the button press/release animation will remain as if pressed even after I release the mouse button, also the function is called 2 times instead of only once.
If I do the same with on_touch_down
the function executes only once but the button animation doesn't change at all when clicked.
How can I recover the MouseMotionEvent avoiding the problems I found with on_touch_down
and on_touch_up
?
If you want to use
on_release
oron_press
you can access theMouseMotionEvent
like this:If you want to use
on_touch_down
oron_touch_up
you just need to make sure to call the super() implementation:But it will still be executed more than once.