mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
from kivy.properties import ObjectProperty, OptionProperty
|
|
from kivy.factory import Factory
|
|
|
|
|
|
class NFCTransactionDialog(Factory.AnimatedPopup):
|
|
|
|
mode = OptionProperty('send', options=('send','receive'))
|
|
|
|
scanner = ObjectProperty(None)
|
|
|
|
def __init__(self, **kwargs):
|
|
# Delayed Init
|
|
global NFCSCanner
|
|
if NFCSCanner is None:
|
|
from electrum.gui.kivy.nfc_scanner import NFCScanner
|
|
self.scanner = NFCSCanner
|
|
|
|
super(NFCTransactionDialog, self).__init__(**kwargs)
|
|
self.scanner.nfc_init()
|
|
self.scanner.bind()
|
|
|
|
def on_parent(self, instance, value):
|
|
sctr = self.ids.sctr
|
|
if value:
|
|
def _cmp(*l):
|
|
anim = Factory.Animation(rotation=2, scale=1, opacity=1)
|
|
anim.start(sctr)
|
|
anim.bind(on_complete=_start)
|
|
|
|
def _start(*l):
|
|
anim = Factory.Animation(rotation=350, scale=2, opacity=0)
|
|
anim.start(sctr)
|
|
anim.bind(on_complete=_cmp)
|
|
_start()
|
|
return
|
|
Factory.Animation.cancel_all(sctr)
|