URI: 
       tPassword input dialog working. - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit db9140a111d76ac239ab07dbaf15c138cf82377c
   DIR parent aeecd6c4c24d3f7f2ed9606b17197782de317276
  HTML Author: Amir Taaki <genjix@riseup.net>
       Date:   Fri, 29 Jun 2012 21:23:05 +0200
       
       Password input dialog working.
       
       Diffstat:
         M lib/gui_lite.py                     |      35 +++++++++++++++++++++++--------
       
       1 file changed, 26 insertions(+), 9 deletions(-)
       ---
   DIR diff --git a/lib/gui_lite.py b/lib/gui_lite.py
       t@@ -179,16 +179,16 @@ class MiniWindow(QDialog):
        
            def show_about(self):
                QMessageBox.about(self, "Electrum",
       -            "Electrum's focus is speed, with low resource usage and simplifying Bitcoin. You do not need to perform regular backups, because your wallet can be recovered from a secret phrase that you can memorize or write on paper. Startup times are instant because it operates in conjuction with high-performance servers that handle the most complicated parts of the Bitcoin system.")
       +            _("Electrum's focus is speed, with low resource usage and simplifying Bitcoin. You do not need to perform regular backups, because your wallet can be recovered from a secret phrase that you can memorize or write on paper. Startup times are instant because it operates in conjuction with high-performance servers that handle the most complicated parts of the Bitcoin system."))
        
            def show_report_bug(self):
       -        QMessageBox.information(self, "Electrum - Reporting Bugs",
       -            "Email bug reports to %s@%s.net" % ("genjix", "riseup"))
       +        QMessageBox.information(self, "Electrum - " + _("Reporting Bugs"),
       +            _("Email bug reports to %s") % "genjix" + "@" + "riseup.net")
        
        class BalanceLabel(QLabel):
        
            def __init__(self, parent=None):
       -        super(QLabel, self).__init__("Connecting...", parent)
       +        super(QLabel, self).__init__(_("Connecting..."), parent)
        
            def set_balances(self, btc_balance, quote_balance, quote_currency):
                label_text = "<span style='font-size: 16pt'>%s</span> <span style='font-size: 10pt'>BTC</span> <span style='font-size: 10pt'>(%s %s)</span>" % (btc_balance, quote_balance, quote_currency)
       t@@ -232,10 +232,21 @@ class TextedLineEdit(QLineEdit):
                # also possible but more expensive:
                #qApp.setStyleSheet(qApp.styleSheet())
        
       +def ok_cancel_buttons(dialog):
       +    row_layout = QHBoxLayout()
       +    row_layout.addStretch(1)
       +    ok_button = QPushButton("OK")
       +    row_layout.addWidget(ok_button)
       +    ok_button.clicked.connect(dialog.accept)
       +    cancel_button = QPushButton("Cancel")
       +    row_layout.addWidget(cancel_button)
       +    cancel_button.clicked.connect(dialog.reject)
       +    return row_layout
       +
        class PasswordDialog(QDialog):
        
            def __init__(self, parent):
       -        super(QDialog, self).__init__(self)
       +        super(QDialog, self).__init__(parent)
        
                self.setModal(True)
        
       t@@ -250,10 +261,15 @@ class PasswordDialog(QDialog):
                grid.setSpacing(8)
                grid.addWidget(QLabel(_('Password')), 1, 0)
                grid.addWidget(self.password_input, 1, 1)
       -        vbox.addLayout(grid)
       +        main_layout.addLayout(grid)
       +
       +        main_layout.addLayout(ok_cancel_buttons(self))
       +        self.setLayout(main_layout) 
        
       -        vbox.addLayout(ok_cancel_buttons(d))
       -        d.setLayout(vbox) 
       +    def run(self):
       +        if not self.exec_():
       +            return
       +        return unicode(self.password_input.text())
        
        class MiniActuator:
        
       t@@ -278,7 +294,8 @@ class MiniActuator:
                amount = convert_amount(amount)
        
                if self.wallet.use_encryption:
       -            password = self.password_dialog()
       +            password_dialog = PasswordDialog(parent_window)
       +            password = password_dialog.run()
                    if not password:
                        return
                else: