kivy: gui tweaks

This commit is contained in:
ThomasV 2015-10-14 18:45:26 +02:00
parent d25ee6d576
commit d70948f74f
6 changed files with 44 additions and 16 deletions

View File

@ -279,10 +279,17 @@ class ReceiveScreen(CScreen):
amount = None if amount == default_text else 100000000 * Decimal(amount)
msg = self.screen.ids.get('message').text
uri = create_URI(address, amount, msg)
print "z", msg
qr = self.screen.ids.get('qr')
qr.set_data(uri)
def do_share(self):
pass
def do_clear(self):
a = self.screen.ids.get('amount')
a.text = a.default_text
self.screen.ids.get('message').text = ''
class ContactsScreen(CScreen):

View File

@ -25,7 +25,10 @@ Popup:
id: host
Button:
size_hint_y: None
size_hint: 0.5, None
height: '48dp'
text: _('Close')
on_release: nd.dismiss()
Widget:
size_hint: 1, 1

View File

@ -3,14 +3,19 @@ Popup:
id: popup
BoxLayout:
orientation: 'vertical'
GridLayout:
size_hint_y: None
size_hint: 1, None
cols: 2
id: plugins_list
on_parent:
app.show_plugins(plugins_list)
Button:
size_hint_y: None
size_hint: 1, None
height: '48dp'
text: _('Close')
on_release: popup.dismiss()
Widget:
size_hint: 1, 0.8

View File

@ -16,6 +16,11 @@ ReceiveScreen:
orientation: 'vertical'
size_hint: 1, 1
AddressSelector:
id: address
size_hint: 1, None
height: '38dp'
FloatLayout:
id: bl
QRCodeWidget:
@ -27,18 +32,10 @@ ReceiveScreen:
if self.collide_point(*args[1].pos):\
app.show_info_bubble(icon=self.ids.qrimage.texture, text='texture')
SendReceiveBlueBottom:
id: blue_bottom
size_hint: 1, None
height: self.minimum_height
AddressSelector:
id: address
size_hint: 0.5, None
height: '38dp'
CardSeparator:
opacity: message_selection.opacity
color: blue_bottom.foreground_color
BoxLayout:
size_hint: 1, None
height: blue_bottom.item_height
@ -74,6 +71,21 @@ ReceiveScreen:
TextInputBlue:
id: message
hint_text: 'Description (optional)'
on_text_validate: receive_screen.parent.update_qr
on_text_validate: receive_screen.parent.update_qr()
BoxLayout:
size_hint: 1, None
height: '38dp'
Button:
text: _('Clear')
size_hint: 1, None
height: '38dp'
on_release: receive_screen.parent.do_clear()
Button:
text: _('Share')
size_hint: 1, None
height: '38dp'
on_release: receive_screen.parent.do_share()
Widget:
size_hint: 1, 0.5
size_hint: 1, 0.3

View File

@ -127,7 +127,7 @@ SendScreen:
pos_hint: {'center_y': .5}
TextInputBlue:
id: message_e
hint_text: 'Optional description'
hint_text: 'Description (optional)'
BoxLayout:
size_hint: 1, None
height: '38dp'

View File

@ -8,6 +8,7 @@ Popup:
GridLayout:
cols: 2
size_hint: 1, None
Label:
text: _('Base unit')
height: '48dp'
@ -33,5 +34,5 @@ Popup:
on_release: settings.dismiss()
Widget:
size_hint: 1, 1
size_hint: 1, 0.8