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:
parent
e1b74be079
commit
f6b5672cf6
3 changed files with 26 additions and 4 deletions
|
@ -523,7 +523,7 @@ class AssistMenuDialog(LMenuDialog):
|
||||||
# text='Find Card', command=self.menubar.mFindCard))
|
# text='Find Card', command=self.menubar.mFindCard))
|
||||||
|
|
||||||
tv.add_node(LTreeNode(
|
tv.add_node(LTreeNode(
|
||||||
text=_('Demo'), command=self.menubar.mDemo))
|
text=_('Demo'), command=self.auto_close(self.menubar.mDemo)))
|
||||||
|
|
||||||
# -------------------------------------------
|
# -------------------------------------------
|
||||||
# TBD. How ?
|
# TBD. How ?
|
||||||
|
|
|
@ -476,6 +476,11 @@ class MfxCanvasLine(object):
|
||||||
|
|
||||||
def delete_deferred(self, seconds):
|
def delete_deferred(self, seconds):
|
||||||
# print('MfxCanvasLine: delete_deferred(%s)' % 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)
|
Clock.schedule_once(lambda dt: self.delete(), seconds)
|
||||||
|
|
||||||
def delete(self):
|
def delete(self):
|
||||||
|
@ -783,11 +788,18 @@ class MfxCanvas(LImage):
|
||||||
def tag_raise(self, itm, abitm=None):
|
def tag_raise(self, itm, abitm=None):
|
||||||
# print('MfxCanvas: tag_raise, itm=%s, aboveThis=%s' % (itm, abitm))
|
# 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 (itm is not None):
|
||||||
if (abitm is None):
|
if (abitm is None):
|
||||||
# print('MfxCanvas: tag_raise: to top')
|
# print('MfxCanvas: tag_raise: to top')
|
||||||
self.remove_widget(itm)
|
self.remove_widget(itm)
|
||||||
self.add_widget(itm)
|
self.add_widget(itm, index=findTop(itm))
|
||||||
else:
|
else:
|
||||||
# print('MfxCanvas: tag_raise: to specified position')
|
# print('MfxCanvas: tag_raise: to specified position')
|
||||||
self.remove_widget(itm)
|
self.remove_widget(itm)
|
||||||
|
|
|
@ -180,12 +180,22 @@ def unbind_destroy(widget):
|
||||||
# * timer wrapper - Tkinter doesn't properly delete all commands
|
# * timer wrapper - Tkinter doesn't properly delete all commands
|
||||||
# ************************************************************************
|
# ************************************************************************
|
||||||
|
|
||||||
|
|
||||||
def after(widget, ms, func, *args):
|
def after(widget, ms, func, *args):
|
||||||
# print('tkutil: after(%s, %s, %s, %s)' % (widget, ms, func, args))
|
# print('tkutil: after(%s, %s, %s, %s)' % (widget, ms, func, args))
|
||||||
if (ms == 'idle'):
|
if (ms == 'idle'):
|
||||||
print('demo use')
|
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)):
|
elif (isinstance(ms, int)):
|
||||||
# print('ms: play timer (accounting)')
|
# print('ms: play timer (accounting)')
|
||||||
# Clock.schedule_once(lambda dt: func(), float(ms)/1000.0)
|
# Clock.schedule_once(lambda dt: func(), float(ms)/1000.0)
|
||||||
|
|
Loading…
Add table
Reference in a new issue