You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.3 KiB
71 lines
2.3 KiB
#:import os os |
|
|
|
Popup: |
|
title: "Electrum" |
|
confirmed: 0 |
|
unconfirmed: 0 |
|
unmatured: 0 |
|
on_parent: |
|
self.confirmed, self.unconfirmed, self.unmatured = app.wallet.get_balance() |
|
BoxLayout: |
|
orientation: 'vertical' |
|
spacing: '1dp' |
|
GridLayout: |
|
cols:2 |
|
Label: |
|
text: _("Wallet Name:") |
|
text_size: self.size |
|
halign: 'left' |
|
Label: |
|
text: os.path.basename(app.wallet.storage.path) |
|
text_size: self.size |
|
halign: 'left' |
|
Label: |
|
text: _("Wallet type:") |
|
text_size: self.size |
|
halign: 'left' |
|
Label: |
|
text: app.wallet.wallet_type |
|
text_size: self.size |
|
halign: 'left' |
|
Label: |
|
text: _("Balance") + ':' |
|
text_size: self.size |
|
halign: 'left' |
|
Label: |
|
text: app.format_amount_and_units(root.confirmed + root.unconfirmed + root.unmatured) |
|
text_size: self.size |
|
halign: 'left' |
|
|
|
Label: |
|
text: _("Confirmed") + ':' |
|
opacity: 1 if root.confirmed else 0 |
|
text_size: self.size |
|
halign: 'left' |
|
Label: |
|
text: app.format_amount_and_units(root.confirmed) |
|
opacity: 1 if root.confirmed else 0 |
|
text_size: self.size |
|
halign: 'left' |
|
Label: |
|
text: _("Unconfirmed") + ':' |
|
text_size: self.size |
|
halign: 'left' |
|
opacity: 1 if root.unconfirmed else 0 |
|
Label: |
|
text: app.format_amount_and_units(root.unconfirmed) |
|
opacity: 1 if root.unconfirmed else 0 |
|
text_size: self.size |
|
halign: 'left' |
|
Label: |
|
text: _("Unmatured") + ':' |
|
text_size: self.size |
|
halign: 'left' |
|
opacity: 1 if root.unmatured else 0 |
|
Label: |
|
text: app.format_amount_and_units(root.unmatured) |
|
opacity: 1 if root.unmatured else 0 |
|
text_size: self.size |
|
halign: 'left' |
|
Widget: |
|
size_hint: None, 1
|
|
|