electrum-bitcoinprivate/gui/kivy/uix/ui_screens/password.kv

50 lines
1.1 KiB
Plaintext
Raw Normal View History

2015-10-13 10:09:12 -07:00
Popup:
id: popup
title: _('Enter PIN Code')
2015-10-13 10:09:12 -07:00
BoxLayout:
orientation: 'vertical'
Label:
id: a
text: '*'*len(kb.password)
2015-10-13 13:44:43 -07:00
size_hint: 1, None
2015-10-13 10:09:12 -07:00
height: '48dp'
GridLayout:
id: kb
update_text: app.update_password
password: ''
on_password: if len(self.password) == 6: popup.dismiss()
size_hint: 1, None
height: '300dp'
cols: 3
KButton:
text: '1'
KButton:
text: '2'
KButton:
text: '3'
KButton:
text: '4'
KButton:
text: '5'
KButton:
text: '6'
KButton:
text: '7'
KButton:
text: '8'
KButton:
text: '9'
KButton:
text: 'Clear'
KButton:
text: '0'
KButton:
text: '<'
2015-10-13 10:09:12 -07:00
Widget:
2015-10-13 13:44:43 -07:00
size_hint: 1, 1