simplify gui names
[electrum-nvc.git] / gui / qt / seed_dialog.py
1 #!/usr/bin/env python
2 #
3 # Electrum - lightweight Bitcoin client
4 # Copyright (C) 2013 ecdsa@github
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19 from PyQt4.QtGui import *
20 from PyQt4.QtCore import *
21 import PyQt4.QtCore as QtCore
22 from electrum.i18n import _
23 from electrum import mnemonic
24 from qrcodewidget import QRCodeWidget
25
26 class SeedDialog(QDialog):
27     def __init__(self, parent):
28         QDialog.__init__(self, parent)
29         self.setModal(1)
30         self.setWindowTitle('Electrum' + ' - ' + _('Seed'))
31         self.parent = parent
32
33     def show_seed(self, seed, imported_keys):
34         make_seed_dialog(self, seed, imported_keys)
35         self.exec_()
36
37
38 def make_seed_dialog(self, seed, imported_keys):
39
40         brainwallet = ' '.join(mnemonic.mn_encode(seed))
41
42         label1 = QLabel(_("Your wallet generation seed is")+ ":")
43
44         seed_text = QTextEdit(brainwallet)
45         seed_text.setReadOnly(True)
46         seed_text.setMaximumHeight(130)
47         
48         msg2 =  _("Please write down or memorize these 12 words (order is important).") + " " \
49               + _("This seed will allow you to recover your wallet in case of computer failure.") + " " \
50               + _("Your seed is also displayed as QR code, in case you want to transfer it to a mobile phone.") + "<p>" \
51               + "<b>"+_("WARNING")+":</b> " + _("Never disclose your seed. Never type it on a website.") + "</b><p>"
52         if imported_keys:
53             msg2 += "<b>"+_("WARNING")+":</b> " + _("Your wallet contains imported keys. These keys cannot be recovered from seed.") + "</b><p>"
54         label2 = QLabel(msg2)
55         label2.setWordWrap(True)
56
57         logo = QLabel()
58         logo.setPixmap(QPixmap(":icons/seed.png").scaledToWidth(56))
59         logo.setMaximumWidth(60)
60
61         qrw = QRCodeWidget(seed)
62
63         ok_button = QPushButton(_("OK"))
64         ok_button.setDefault(True)
65         ok_button.clicked.connect(self.accept)
66
67         grid = QGridLayout()
68         #main_layout.addWidget(logo, 0, 0)
69
70         grid.addWidget(logo, 0, 0)
71         grid.addWidget(label1, 0, 1)
72
73         grid.addWidget(seed_text, 1, 0, 1, 2)
74
75         grid.addWidget(qrw, 0, 2, 2, 1)
76
77         vbox = QVBoxLayout()
78         vbox.addLayout(grid)
79         vbox.addWidget(label2)
80
81         hbox = QHBoxLayout()
82         hbox.addStretch(1)
83         hbox.addWidget(ok_button)
84         vbox.addLayout(hbox)
85
86         self.setLayout(vbox)