1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Kivy/Android

- Demo now waits for animation end before next step.
- Demo command closes menu after selection.
- Hint arrow is kept on top during demo
- Hint arrow fading animation.
This commit is contained in:
lufebe16 2024-01-04 14:18:26 +01:00
parent e1b74be079
commit f6b5672cf6
3 changed files with 26 additions and 4 deletions

View file

@ -523,7 +523,7 @@ class AssistMenuDialog(LMenuDialog):
# text='Find Card', command=self.menubar.mFindCard))
tv.add_node(LTreeNode(
text=_('Demo'), command=self.menubar.mDemo))
text=_('Demo'), command=self.auto_close(self.menubar.mDemo)))
# -------------------------------------------
# TBD. How ?

View file

@ -476,6 +476,11 @@ class MfxCanvasLine(object):
def delete_deferred(self, seconds):
# print('MfxCanvasLine: delete_deferred(%s)' % seconds)
from kivy.animation import Animation
z = 0
t = 'in_expo'
anim = Animation(opacity=z, t=t, d=seconds/1.5)
anim.start(self.line)
Clock.schedule_once(lambda dt: self.delete(), seconds)
def delete(self):
@ -783,11 +788,18 @@ class MfxCanvas(LImage):
def tag_raise(self, itm, abitm=None):
# print('MfxCanvas: tag_raise, itm=%s, aboveThis=%s' % (itm, abitm))
def findTop(itm):
t = type(itm)
for c in self.children:
if type(c) is t:
return self.children.index(c)
return 0
if (itm is not None):
if (abitm is None):
# print('MfxCanvas: tag_raise: to top')
self.remove_widget(itm)
self.add_widget(itm)
self.add_widget(itm, index=findTop(itm))
else:
# print('MfxCanvas: tag_raise: to specified position')
self.remove_widget(itm)

View file

@ -180,12 +180,22 @@ def unbind_destroy(widget):
# * timer wrapper - Tkinter doesn't properly delete all commands
# ************************************************************************
def after(widget, ms, func, *args):
# print('tkutil: after(%s, %s, %s, %s)' % (widget, ms, func, args))
if (ms == 'idle'):
print('demo use')
Clock.schedule_once(lambda dt: func(), 1.0)
def mkcb(func):
def cb():
Clock.schedule_once(lambda dt: func(), 0.5)
return cb
from pysollib.kivy.LApp import LAnimationManager
if LAnimationManager.checkRunning():
# run after animation terminated
LAnimationManager.addEndCallback(mkcb(func))
else:
Clock.schedule_once(lambda dt: func(), 0.5)
elif (isinstance(ms, int)):
# print('ms: play timer (accounting)')
# Clock.schedule_once(lambda dt: func(), float(ms)/1000.0)