Modality fixes for critical errors

This commit is contained in:
Neil Booth 2015-12-23 13:39:20 +09:00
parent 57d4b27696
commit 21e4a30371
2 changed files with 28 additions and 28 deletions

View File

@ -340,9 +340,7 @@ class ElectrumWindow(QMainWindow, PrintError):
shutil.copy2(path, new_path) shutil.copy2(path, new_path)
QMessageBox.information(None,"Wallet backup created", _("A copy of your wallet file was created in")+" '%s'" % str(new_path)) QMessageBox.information(None,"Wallet backup created", _("A copy of your wallet file was created in")+" '%s'" % str(new_path))
except (IOError, os.error), reason: except (IOError, os.error), reason:
QMessageBox.critical(None,"Unable to create backup", _("Electrum was unable to copy your wallet file to the specified location.")+"\n" + str(reason)) self.show_critical(_("Electrum was unable to copy your wallet file to the specified location.") + "\n" + str(reason), title=_("Unable to create backup"))
def update_recently_visited(self, filename=None): def update_recently_visited(self, filename=None):
recent = self.config.get('recently_open', []) recent = self.config.get('recently_open', [])
@ -379,7 +377,7 @@ class ElectrumWindow(QMainWindow, PrintError):
full_path = os.path.join(wallet_folder, filename) full_path = os.path.join(wallet_folder, filename)
storage = WalletStorage(full_path) storage = WalletStorage(full_path)
if storage.file_exists: if storage.file_exists:
QMessageBox.critical(self, "Error", _("File exists")) self.show_critical(_("File exists"))
return return
wizard = InstallWizard(self.app, self.config, self.network, storage) wizard = InstallWizard(self.app, self.config, self.network, storage)
wallet = wizard.run('new') wallet = wizard.run('new')
@ -2169,6 +2167,10 @@ class ElectrumWindow(QMainWindow, PrintError):
def show_error(self, msg, parent=None): def show_error(self, msg, parent=None):
self.show_warning(msg, parent=parent, title=_('Error')) self.show_warning(msg, parent=parent, title=_('Error'))
def show_critical(self, msg, parent=None, title=None):
WindowModalDialog.critical(parent or self,
title or _('Critical Error'), msg)
def password_dialog(self, msg=None, parent=None): def password_dialog(self, msg=None, parent=None):
if parent == None: if parent == None:
parent = self parent = self
@ -2200,26 +2202,17 @@ class ElectrumWindow(QMainWindow, PrintError):
except: except:
is_hex = False is_hex = False
if is_hex:
try:
return Transaction(txt)
except:
traceback.print_exc(file=sys.stdout)
QMessageBox.critical(None, _("Unable to parse transaction"), _("Electrum was unable to parse your transaction"))
return
try: try:
if is_hex:
return Transaction(txt)
tx_dict = json.loads(str(txt)) tx_dict = json.loads(str(txt))
assert "hex" in tx_dict.keys() assert "hex" in tx_dict.keys()
tx = Transaction(tx_dict["hex"]) tx = Transaction(tx_dict["hex"])
#if tx_dict.has_key("input_info"):
# input_info = json.loads(tx_dict['input_info'])
# tx.add_input_info(input_info)
return tx return tx
except Exception: except:
traceback.print_exc(file=sys.stdout) traceback.print_exc(file=sys.stdout)
QMessageBox.critical(None, _("Unable to parse transaction"), _("Electrum was unable to parse your transaction")) self.show_critical(_("Electrum was unable to parse your transaction"))
return
def read_tx_from_qrcode(self): def read_tx_from_qrcode(self):
from electrum import qrscanner from electrum import qrscanner
@ -2252,8 +2245,8 @@ class ElectrumWindow(QMainWindow, PrintError):
try: try:
with open(fileName, "r") as f: with open(fileName, "r") as f:
file_content = f.read() file_content = f.read()
except (ValueError, IOError, os.error), reason: except (ValueError, IOError, os.error) as reason:
QMessageBox.critical(None, _("Unable to read file or no transaction found"), _("Electrum was unable to open your transaction file") + "\n" + str(reason)) self.show_critical(_("Electrum was unable to open your transaction file") + "\n" + str(reason), title=_("Unable to read file or no transaction found"))
return self.tx_from_text(file_content) return self.tx_from_text(file_content)
def do_process_from_text(self): def do_process_from_text(self):
@ -2348,9 +2341,12 @@ class ElectrumWindow(QMainWindow, PrintError):
try: try:
self.do_export_privkeys(filename, private_keys, csv_button.isChecked()) self.do_export_privkeys(filename, private_keys, csv_button.isChecked())
except (IOError, os.error), reason: except (IOError, os.error) as reason:
export_error_label = _("Electrum was unable to produce a private key-export.") txt = "\n".join([
QMessageBox.critical(None, _("Unable to create csv"), export_error_label + "\n" + str(reason)) _("Electrum was unable to produce a private key-export."),
str(reason)
])
self.show_critical(txt, title=_("Unable to create csv"))
except Exception as e: except Exception as e:
self.show_message(str(e)) self.show_message(str(e))
@ -2381,8 +2377,8 @@ class ElectrumWindow(QMainWindow, PrintError):
for key, value in json.loads(data).items(): for key, value in json.loads(data).items():
self.wallet.set_label(key, value) self.wallet.set_label(key, value)
QMessageBox.information(None, _("Labels imported"), _("Your labels were imported from")+" '%s'" % str(labelsFile)) QMessageBox.information(None, _("Labels imported"), _("Your labels were imported from")+" '%s'" % str(labelsFile))
except (IOError, os.error), reason: except (IOError, os.error) as reason:
QMessageBox.critical(None, _("Unable to import labels"), _("Electrum was unable to import your labels.")+"\n" + str(reason)) self.show_critical(_("Electrum was unable to import your labels.") + "\n" + str(reason))
def do_export_labels(self): def do_export_labels(self):
@ -2394,7 +2390,7 @@ class ElectrumWindow(QMainWindow, PrintError):
json.dump(labels, f) json.dump(labels, f)
QMessageBox.information(None, _("Labels exported"), _("Your labels where exported to")+" '%s'" % str(fileName)) QMessageBox.information(None, _("Labels exported"), _("Your labels where exported to")+" '%s'" % str(fileName))
except (IOError, os.error), reason: except (IOError, os.error), reason:
QMessageBox.critical(None, _("Unable to export labels"), _("Electrum was unable to export your labels.")+"\n" + str(reason)) self.show_critical(_("Electrum was unable to export your labels.") + "\n" + str(reason))
def export_history_dialog(self): def export_history_dialog(self):
@ -2419,7 +2415,7 @@ class ElectrumWindow(QMainWindow, PrintError):
self.do_export_history(self.wallet, filename, csv_button.isChecked()) self.do_export_history(self.wallet, filename, csv_button.isChecked())
except (IOError, os.error), reason: except (IOError, os.error), reason:
export_error_label = _("Electrum was unable to produce a transaction export.") export_error_label = _("Electrum was unable to produce a transaction export.")
QMessageBox.critical(self, _("Unable to export history"), export_error_label + "\n" + str(reason)) self.show_critical(export_error_label + "\n" + str(reason), title=_("Unable to export history"))
return return
QMessageBox.information(self,_("History exported"), _("Your wallet history has been successfully exported.")) QMessageBox.information(self,_("History exported"), _("Your wallet history has been successfully exported."))
@ -2536,7 +2532,7 @@ class ElectrumWindow(QMainWindow, PrintError):
if addrlist: if addrlist:
QMessageBox.information(self, _('Information'), _("The following addresses were added") + ':\n' + '\n'.join(addrlist)) QMessageBox.information(self, _('Information'), _("The following addresses were added") + ':\n' + '\n'.join(addrlist))
if badkeys: if badkeys:
QMessageBox.critical(self, _('Error'), _("The following inputs could not be imported") + ':\n'+ '\n'.join(badkeys)) self.show_critical(_("The following inputs could not be imported") + ':\n'+ '\n'.join(badkeys))
self.address_list.update() self.address_list.update()
self.history_list.update() self.history_list.update()

View File

@ -201,6 +201,10 @@ class WindowModalDialog(QDialog):
if title: if title:
self.setWindowTitle(title) self.setWindowTitle(title)
@staticmethod
def critical(*args, **kwargs):
return WindowModalDialog.msg_box(QMessageBox.Critical, *args, **kwargs)
@staticmethod @staticmethod
def warning(*args, **kwargs): def warning(*args, **kwargs):
return WindowModalDialog.msg_box(QMessageBox.Warning, *args, **kwargs) return WindowModalDialog.msg_box(QMessageBox.Warning, *args, **kwargs)