changed to use built-in list methods
[electrum-nvc.git] / lib / gui_lite.py
1 import sys
2
3 from PyQt4.QtCore import *
4 from PyQt4.QtGui import *
5
6 from decimal import Decimal as D
7 from util import get_resource_path as rsrc
8 from i18n import _
9 import decimal
10 import exchange_rate
11 import os.path
12 import random
13 import re
14 import time
15 import wallet
16 import webbrowser
17 import history_widget
18 import util
19
20 try:
21     import lib.gui_qt as gui_qt
22 except ImportError:
23     import electrum.gui_qt as gui_qt
24
25 bitcoin = lambda v: v * 100000000
26
27 def IconButton(filename, parent=None):
28     pixmap = QPixmap(filename)
29     icon = QIcon(pixmap)
30     return QPushButton(icon, "", parent)
31
32 class Timer(QThread):
33     def run(self):
34         while True:
35             self.emit(SIGNAL('timersignal'))
36             time.sleep(0.5)
37
38 def resize_line_edit_width(line_edit, text_input):
39     metrics = QFontMetrics(qApp.font())
40     # Create an extra character to add some space on the end
41     text_input += "A"
42     line_edit.setMinimumWidth(metrics.width(text_input))
43
44 class ElectrumGui:
45
46     def __init__(self, wallet):
47         self.wallet = wallet
48         self.app = QApplication(sys.argv)
49
50     def main(self, url):
51         actuator = MiniActuator(self.wallet)
52         # Should probably not modify the current path but instead
53         # change the behaviour of rsrc(...)
54         old_path = QDir.currentPath()
55         actuator.load_theme()
56
57         self.mini = MiniWindow(actuator, self.expand)
58         driver = MiniDriver(self.wallet, self.mini)
59
60         # Reset path back to original value now that loading the GUI
61         # is completed.
62         QDir.setCurrent(old_path)
63
64         if url:
65             self.set_url(url)
66
67         timer = Timer()
68         timer.start()
69         self.expert = gui_qt.ElectrumWindow(self.wallet)
70         self.expert.app = self.app
71         self.expert.connect_slots(timer)
72         self.expert.update_wallet()
73
74         self.app.exec_()
75
76     def expand(self):
77         """Hide the lite mode window and show pro-mode."""
78         self.mini.hide()
79         self.expert.show()
80
81     def set_url(self, url):
82         payto, amount, label, message, signature, identity, url = \
83             self.wallet.parse_url(url, self.show_message, self.show_question)
84         self.mini.set_payment_fields(payto, amount)
85
86     def show_message(self, message):
87         QMessageBox.information(self.mini, _("Message"), message, _("OK"))
88
89     def show_question(self, message):
90         choice = QMessageBox.question(self.mini, _("Message"), message,
91                                       QMessageBox.Yes|QMessageBox.No,
92                                       QMessageBox.No)
93         return choice == QMessageBox.Yes
94
95     def restore_or_create(self):
96         qt_gui_object = gui_qt.ElectrumGui(self.wallet, self.app)
97         return qt_gui_object.restore_or_create()
98
99 class MiniWindow(QDialog):
100
101     def __init__(self, actuator, expand_callback):
102         super(MiniWindow, self).__init__()
103
104         self.actuator = actuator
105
106         self.btc_balance = None
107         self.quote_currencies = ["EUR", "USD", "GBP"]
108         self.actuator.set_configured_currency(self.set_quote_currency)
109         self.exchanger = exchange_rate.Exchanger(self)
110         # Needed because price discovery is done in a different thread
111         # which needs to be sent back to this main one to update the GUI
112         self.connect(self, SIGNAL("refresh_balance()"), self.refresh_balance)
113
114         self.balance_label = BalanceLabel(self.change_quote_currency)
115         self.balance_label.setObjectName("balance_label")
116
117         self.receive_button = QPushButton(_("&Receive"))
118         self.receive_button.setObjectName("receive_button")
119         self.receive_button.setDefault(True)
120         self.receive_button.clicked.connect(self.copy_address)
121
122         # Bitcoin address code
123         self.address_input = QLineEdit()
124         self.address_input.setPlaceholderText(_("Enter a Bitcoin address..."))
125         self.address_input.setObjectName("address_input")
126
127
128         self.address_input.textEdited.connect(self.address_field_changed)
129         resize_line_edit_width(self.address_input,
130                                "1BtaFUr3qVvAmwrsuDuu5zk6e4s2rxd2Gy")
131
132         self.address_completions = QStringListModel()
133         address_completer = QCompleter(self.address_input)
134         address_completer.setCaseSensitivity(False)
135         address_completer.setModel(self.address_completions)
136         self.address_input.setCompleter(address_completer)
137
138         address_layout = QHBoxLayout()
139         address_layout.addWidget(self.address_input)
140
141         self.amount_input = QLineEdit()
142         self.amount_input.setPlaceholderText(_("... and amount"))
143         self.amount_input.setObjectName("amount_input")
144         # This is changed according to the user's displayed balance
145         self.amount_validator = QDoubleValidator(self.amount_input)
146         self.amount_validator.setNotation(QDoubleValidator.StandardNotation)
147         self.amount_validator.setDecimals(8)
148         self.amount_input.setValidator(self.amount_validator)
149
150         # This removes the very ugly OSX highlighting, please leave this in :D
151         self.address_input.setAttribute(Qt.WA_MacShowFocusRect, 0)
152         self.amount_input.setAttribute(Qt.WA_MacShowFocusRect, 0)
153         self.amount_input.textChanged.connect(self.amount_input_changed)
154
155         self.send_button = QPushButton(_("&Send"))
156         self.send_button.setObjectName("send_button")
157         self.send_button.setDisabled(True);
158         self.send_button.clicked.connect(self.send)
159
160         main_layout = QGridLayout(self)
161
162         main_layout.addWidget(self.balance_label, 0, 0)
163         main_layout.addWidget(self.receive_button, 0, 1)
164
165         main_layout.addWidget(self.address_input, 1, 0, 1, -1)
166
167         main_layout.addWidget(self.amount_input, 2, 0)
168         main_layout.addWidget(self.send_button, 2, 1)
169
170         self.history_list = history_widget.HistoryWidget()
171         self.history_list.setObjectName("history")
172         self.history_list.hide()
173         self.history_list.setAlternatingRowColors(True)
174         main_layout.addWidget(self.history_list, 3, 0, 1, -1)
175
176         menubar = QMenuBar()
177         electrum_menu = menubar.addMenu(_("&Bitcoin"))
178         self.servers_menu = electrum_menu.addMenu(_("&Servers"))
179         self.servers_menu.addAction(_("Foo"))
180         electrum_menu.addSeparator()
181         brain_seed = electrum_menu.addAction(_("&BrainWallet Info"))
182         brain_seed.triggered.connect(self.actuator.show_seed_dialog)
183         quit_option = electrum_menu.addAction(_("&Quit"))
184         quit_option.triggered.connect(self.close)
185
186         view_menu = menubar.addMenu(_("&View"))
187         expert_gui = view_menu.addAction(_("&Pro Mode"))
188         expert_gui.triggered.connect(expand_callback)
189         themes_menu = view_menu.addMenu(_("&Themes"))
190         selected_theme = self.actuator.selected_theme()
191         theme_group = QActionGroup(self)
192         for theme_name in self.actuator.theme_names():
193             theme_action = themes_menu.addAction(theme_name)
194             theme_action.setCheckable(True)
195             if selected_theme == theme_name:
196                 theme_action.setChecked(True)
197             class SelectThemeFunctor:
198                 def __init__(self, theme_name, toggle_theme):
199                     self.theme_name = theme_name
200                     self.toggle_theme = toggle_theme
201                 def __call__(self, checked):
202                     if checked:
203                         self.toggle_theme(self.theme_name)
204             delegate = SelectThemeFunctor(theme_name, self.toggle_theme)
205             theme_action.toggled.connect(delegate)
206             theme_group.addAction(theme_action)
207         view_menu.addSeparator()
208         show_history = view_menu.addAction(_("Show History"))
209         show_history.setCheckable(True)
210         show_history.toggled.connect(self.show_history)
211
212         help_menu = menubar.addMenu(_("&Help"))
213         the_website = help_menu.addAction(_("&Website"))
214         the_website.triggered.connect(self.the_website)
215         help_menu.addSeparator()
216         report_bug = help_menu.addAction(_("&Report Bug"))
217         report_bug.triggered.connect(self.show_report_bug)
218         show_about = help_menu.addAction(_("&About"))
219         show_about.triggered.connect(self.show_about)
220         main_layout.setMenuBar(menubar)
221
222         quit_shortcut = QShortcut(QKeySequence("Ctrl+Q"), self)
223         quit_shortcut.activated.connect(self.close)
224         close_shortcut = QShortcut(QKeySequence("Ctrl+W"), self)
225         close_shortcut.activated.connect(self.close)
226
227         self.setWindowIcon(QIcon(":electrum.png"))
228         self.setWindowTitle("Electrum")
229         self.setWindowFlags(Qt.Window|Qt.MSWindowsFixedSizeDialogHint)
230         self.layout().setSizeConstraint(QLayout.SetFixedSize)
231         self.setObjectName("main_window")
232         self.show()
233
234     def toggle_theme(self, theme_name):
235         old_path = QDir.currentPath()
236         self.actuator.change_theme(theme_name)
237         # Recompute style globally
238         qApp.style().unpolish(self)
239         qApp.style().polish(self)
240         QDir.setCurrent(old_path)
241
242     def closeEvent(self, event):
243         super(MiniWindow, self).closeEvent(event)
244         qApp.quit()
245
246     def set_payment_fields(self, dest_address, amount):
247         self.address_input.setText(dest_address)
248         self.address_field_changed(dest_address)
249         self.amount_input.setText(amount)
250
251     def activate(self):
252         pass
253
254     def deactivate(self):
255         pass
256
257     def set_quote_currency(self, currency):
258         """Set and display the fiat currency country."""
259         assert currency in self.quote_currencies
260         self.quote_currencies.remove(currency)
261         self.quote_currencies.insert(0, currency)
262         #self.quote_currencies = [currency] + self.quote_currencies
263         self.refresh_balance()
264
265     def change_quote_currency(self):
266         self.quote_currencies = \
267             self.quote_currencies[1:] + self.quote_currencies[0:1]
268         self.actuator.set_config_currency(self.quote_currencies[0])
269         self.refresh_balance()
270
271     def refresh_balance(self):
272         if self.btc_balance is None:
273             # Price has been discovered before wallet has been loaded
274             # and server connect... so bail.
275             return
276         self.set_balances(self.btc_balance)
277         self.amount_input_changed(self.amount_input.text())
278
279     def set_balances(self, btc_balance):
280         """Set the bitcoin balance and update the amount label accordingly."""
281         self.btc_balance = btc_balance
282         quote_text = self.create_quote_text(btc_balance)
283         if quote_text:
284             quote_text = "(%s)" % quote_text
285         btc_balance = "%.2f" % (btc_balance / bitcoin(1))
286         self.balance_label.set_balance_text(btc_balance, quote_text)
287         self.setWindowTitle("Electrum - %s BTC" % btc_balance)
288
289     def amount_input_changed(self, amount_text):
290         """Update the number of bitcoins displayed."""
291         self.check_button_status()
292
293         try:
294             amount = D(str(amount_text))
295         except decimal.InvalidOperation:
296             self.balance_label.show_balance()
297         else:
298             quote_text = self.create_quote_text(amount * bitcoin(1))
299             if quote_text:
300                 self.balance_label.set_amount_text(quote_text)
301                 self.balance_label.show_amount()
302             else:
303                 self.balance_label.show_balance()
304
305     def create_quote_text(self, btc_balance):
306         """Return a string copy of the amount fiat currency the 
307         user has in bitcoins."""
308         quote_currency = self.quote_currencies[0]
309         quote_balance = self.exchanger.exchange(btc_balance, quote_currency)
310         if quote_balance is None:
311             quote_text = ""
312         else:
313             quote_text = "%.2f %s" % ((quote_balance / bitcoin(1)),
314                                       quote_currency)
315         return quote_text
316
317     def send(self):
318         if self.actuator.send(self.address_input.text(),
319                               self.amount_input.text(), self):
320             self.address_input.setText("")
321             self.amount_input.setText("")
322
323     def check_button_status(self):
324         """Check that the bitcoin address is valid and that something
325         is entered in the amount before making the send button clickable."""
326         if (self.address_input.property("isValid") and
327             len(self.amount_input.text()) > 0):
328             self.send_button.setDisabled(False)
329         else:
330             self.send_button.setDisabled(True)
331
332     def address_field_changed(self, address):
333         if self.actuator.is_valid(address):
334             self.check_button_status()
335             self.address_input.setProperty("isValid", True)
336             self.recompute_style(self.address_input)
337         else:
338             self.send_button.setDisabled(True)
339             self.address_input.setProperty("isValid", False)
340             self.recompute_style(self.address_input)
341
342         if len(address) == 0:
343             self.address_input.setProperty("isValid", None)
344             self.recompute_style(self.address_input)
345
346     def recompute_style(self, element):
347         self.style().unpolish(element)
348         self.style().polish(element)
349
350     def copy_address(self):
351         receive_popup = ReceivePopup(self.receive_button)
352         self.actuator.copy_address(receive_popup)
353
354     def update_completions(self, completions):
355         self.address_completions.setStringList(completions)
356
357     def update_history(self, tx_history):
358         for tx in tx_history[-10:]:
359             address = tx["default_label"]
360             amount = D(tx["value"]) / 10**8
361             self.history_list.append(address, amount)
362
363     def acceptbit(self):
364         self.actuator.acceptbit(self.quote_currencies[0])
365
366     def the_website(self):
367         webbrowser.open("http://electrum-desktop.com")
368
369     def show_about(self):
370         QMessageBox.about(self, "Electrum",
371             _("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.\n\nSend donations to 1JwTMv4GWaPdf931N6LNPJeZBfZgZJ3zX1"))
372
373     def show_report_bug(self):
374         QMessageBox.information(self, "Electrum - " + _("Reporting Bugs"),
375             _("Email bug reports to %s") % "genjix" + "@" + "riseup.net")
376
377     def show_history(self, toggle_state):
378         if toggle_state:
379             self.history_list.show()
380         else:
381             self.history_list.hide()
382
383 class BalanceLabel(QLabel):
384
385     SHOW_CONNECTING = 1
386     SHOW_BALANCE = 2
387     SHOW_AMOUNT = 3
388
389     def __init__(self, change_quote_currency, parent=None):
390         super(QLabel, self).__init__(_("Connecting..."), parent)
391         self.change_quote_currency = change_quote_currency
392         self.state = self.SHOW_CONNECTING
393         self.balance_text = ""
394         self.amount_text = ""
395
396     def mousePressEvent(self, event):
397         """Change the fiat currency selection if window background is clicked."""
398         if self.state != self.SHOW_CONNECTING:
399             self.change_quote_currency()
400
401     def set_balance_text(self, btc_balance, quote_text):
402         """Set the amount of bitcoins in the gui."""
403         if self.state == self.SHOW_CONNECTING:
404             self.state = self.SHOW_BALANCE
405         self.balance_text = "<span style='font-size: 18pt'>%s</span> <span style='font-size: 10pt'>BTC</span> <span style='font-size: 10pt'>%s</span>" % (btc_balance, quote_text)
406         if self.state == self.SHOW_BALANCE:
407             self.setText(self.balance_text)
408
409     def set_amount_text(self, quote_text):
410         self.amount_text = "<span style='font-size: 10pt'>%s</span>" % quote_text
411         if self.state == self.SHOW_AMOUNT:
412             self.setText(self.amount_text)
413
414     def show_balance(self):
415         if self.state == self.SHOW_AMOUNT:
416             self.state = self.SHOW_BALANCE
417             self.setText(self.balance_text)
418
419     def show_amount(self):
420         if self.state == self.SHOW_BALANCE:
421             self.state = self.SHOW_AMOUNT
422             self.setText(self.amount_text)
423
424 def ok_cancel_buttons(dialog):
425     row_layout = QHBoxLayout()
426     row_layout.addStretch(1)
427     ok_button = QPushButton(_("OK"))
428     row_layout.addWidget(ok_button)
429     ok_button.clicked.connect(dialog.accept)
430     cancel_button = QPushButton(_("Cancel"))
431     row_layout.addWidget(cancel_button)
432     cancel_button.clicked.connect(dialog.reject)
433     return row_layout
434
435 class PasswordDialog(QDialog):
436
437     def __init__(self, parent):
438         super(QDialog, self).__init__(parent)
439
440         self.setModal(True)
441
442         self.password_input = QLineEdit()
443         self.password_input.setEchoMode(QLineEdit.Password)
444
445         main_layout = QVBoxLayout(self)
446         message = _('Please enter your password')
447         main_layout.addWidget(QLabel(message))
448
449         grid = QGridLayout()
450         grid.setSpacing(8)
451         grid.addWidget(QLabel(_('Password')), 1, 0)
452         grid.addWidget(self.password_input, 1, 1)
453         main_layout.addLayout(grid)
454
455         main_layout.addLayout(ok_cancel_buttons(self))
456         self.setLayout(main_layout) 
457
458     def run(self):
459         if not self.exec_():
460             return
461         return unicode(self.password_input.text())
462
463 class ReceivePopup(QDialog):
464
465     def leaveEvent(self, event):
466         self.close()
467
468     def setup(self, address):
469         label = QLabel(_("Copied your Bitcoin address to the clipboard!"))
470         address_display = QLineEdit(address)
471         address_display.setReadOnly(True)
472         resize_line_edit_width(address_display, address)
473
474         main_layout = QVBoxLayout(self)
475         main_layout.addWidget(label)
476         main_layout.addWidget(address_display)
477
478         self.setMouseTracking(True)
479         self.setWindowTitle("Electrum - " + _("Receive Bitcoin payment"))
480         self.setWindowFlags(Qt.Window|Qt.FramelessWindowHint|Qt.MSWindowsFixedSizeDialogHint)
481         self.layout().setSizeConstraint(QLayout.SetFixedSize)
482         #self.setFrameStyle(QFrame.WinPanel|QFrame.Raised)
483         #self.setAlignment(Qt.AlignCenter)
484
485     def popup(self):
486         parent = self.parent()
487         top_left_pos = parent.mapToGlobal(parent.rect().bottomLeft())
488         self.move(top_left_pos)
489         center_mouse_pos = self.mapToGlobal(self.rect().center())
490         QCursor.setPos(center_mouse_pos)
491         self.show()
492
493 class MiniActuator:
494     """Initialize the definitions relating to themes and 
495     sending/recieving bitcoins.
496     """
497     
498     
499     def __init__(self, wallet):
500         """Retrieve the gui theme used in previous session."""
501         self.wallet = wallet
502         self.theme_name = self.wallet.theme
503         self.themes = util.load_theme_paths()
504
505     def load_theme(self):
506         """Load theme retrieved from wallet file."""
507         try:
508             theme_prefix, theme_path = self.themes[self.theme_name]
509         except KeyError:
510             util.print_error("Theme not found!", self.theme_name)
511             return
512         QDir.setCurrent(os.path.join(theme_prefix, theme_path))
513         with open(rsrc("style.css")) as style_file:
514             qApp.setStyleSheet(style_file.read())
515
516     def theme_names(self):
517         """Sort themes."""
518         return sorted(self.themes.keys())
519     
520     def selected_theme(self):
521         """Select theme."""
522         return self.theme_name
523
524     def change_theme(self, theme_name):
525         """Change theme."""
526         self.wallet.theme = self.theme_name = theme_name
527         self.load_theme()
528     
529     def set_configured_currency(self, set_quote_currency):
530         """Set the inital fiat currency conversion country (USD/EUR/GBP) in 
531         the GUI to what it was set to in the wallet."""
532         currency = self.wallet.conversion_currency
533         # currency can be none when Electrum is used for the first
534         # time and no setting has been created yet.
535         if currency is not None:
536             set_quote_currency(currency)
537
538     def set_config_currency(self, conversion_currency):
539         """Change the fiat currency conversion country."""
540         self.wallet.conversion_currency = conversion_currency
541
542     def copy_address(self, receive_popup):
543         """Copy the wallet addresses into the client."""
544         addrs = [addr for addr in self.wallet.all_addresses()
545                  if not self.wallet.is_change(addr)]
546         # Select most recent addresses from gap limit
547         addrs = addrs[-self.wallet.gap_limit:]
548         copied_address = random.choice(addrs)
549         qApp.clipboard().setText(copied_address)
550         receive_popup.setup(copied_address)
551         receive_popup.popup()
552
553     def send(self, address, amount, parent_window):
554         """Send bitcoins to the target address."""
555         dest_address = self.fetch_destination(address)
556
557         if dest_address is None or not self.wallet.is_valid(dest_address):
558             QMessageBox.warning(parent_window, _('Error'), 
559                 _('Invalid Bitcoin Address') + ':\n' + address, _('OK'))
560             return False
561
562         convert_amount = lambda amount: \
563             int(D(unicode(amount)) * bitcoin(1))
564         amount = convert_amount(amount)
565
566         if self.wallet.use_encryption:
567             password_dialog = PasswordDialog(parent_window)
568             password = password_dialog.run()
569             if not password:
570                 return
571         else:
572             password = None
573
574         fee = 0
575         # 0.1 BTC = 10000000
576         if amount < bitcoin(1) / 10:
577             # 0.001 BTC
578             fee = bitcoin(1) / 1000
579
580         try:
581             tx = self.wallet.mktx(dest_address, amount, "", password, fee)
582         except BaseException as error:
583             QMessageBox.warning(parent_window, _('Error'), str(error), _('OK'))
584             return False
585             
586         status, message = self.wallet.sendtx(tx)
587         if not status:
588             QMessageBox.warning(parent_window, _('Error'), message, _('OK'))
589             return False
590
591         QMessageBox.information(parent_window, '',
592             _('Payment sent.') + '\n' + message, _('OK'))
593         return True
594
595     def fetch_destination(self, address):
596         recipient = unicode(address).strip()
597
598         # alias
599         match1 = re.match("^(|([\w\-\.]+)@)((\w[\w\-]+\.)+[\w\-]+)$",
600                           recipient)
601
602         # label or alias, with address in brackets
603         match2 = re.match("(.*?)\s*\<([1-9A-HJ-NP-Za-km-z]{26,})\>",
604                           recipient)
605         
606         if match1:
607             dest_address = \
608                 self.wallet.get_alias(recipient, True, 
609                                       self.show_message, self.question)
610             return dest_address
611         elif match2:
612             return match2.group(2)
613         else:
614             return recipient
615
616     def is_valid(self, address):
617         """Check if bitcoin address is valid."""
618         return self.wallet.is_valid(address)
619
620     def acceptbit(self, currency):
621         master_pubkey = self.wallet.master_public_key.encode("hex")
622         url = "http://acceptbit.com/mpk/%s/%s" % (master_pubkey, currency)
623         webbrowser.open(url)
624
625     def show_seed_dialog(self):
626         gui_qt.ElectrumWindow.show_seed_dialog(self.wallet)
627
628 class MiniDriver(QObject):
629
630     INITIALIZING = 0
631     CONNECTING = 1
632     SYNCHRONIZING = 2
633     READY = 3
634
635     def __init__(self, wallet, window):
636         super(QObject, self).__init__()
637
638         self.wallet = wallet
639         self.window = window
640
641         self.wallet.register_callback(self.update_callback)
642
643         self.state = None
644
645         self.initializing()
646         self.connect(self, SIGNAL("updatesignal()"), self.update)
647         self.update_callback()
648
649     # This is a hack to workaround that Qt does not like changing the
650     # window properties from this other thread before the runloop has
651     # been called from.
652     def update_callback(self):
653         self.emit(SIGNAL("updatesignal()"))
654
655     def update(self):
656         if not self.wallet.interface:
657             self.initializing()
658         elif not self.wallet.interface.is_connected:
659             self.connecting()
660         elif not self.wallet.blocks == -1:
661             self.connecting()
662         elif not self.wallet.is_up_to_date:
663             self.synchronizing()
664         else:
665             self.ready()
666
667         if self.wallet.up_to_date:
668             self.update_balance()
669             self.update_completions()
670             self.update_history()
671
672     def initializing(self):
673         if self.state == self.INITIALIZING:
674             return
675         self.state = self.INITIALIZING
676         self.window.deactivate()
677
678     def connecting(self):
679         if self.state == self.CONNECTING:
680             return
681         self.state = self.CONNECTING
682         self.window.deactivate()
683
684     def synchronizing(self):
685         if self.state == self.SYNCHRONIZING:
686             return
687         self.state = self.SYNCHRONIZING
688         self.window.deactivate()
689
690     def ready(self):
691         if self.state == self.READY:
692             return
693         self.state = self.READY
694         self.window.activate()
695
696     def update_balance(self):
697         conf_balance, unconf_balance = self.wallet.get_balance()
698         balance = D(conf_balance + unconf_balance)
699         self.window.set_balances(balance)
700
701     def update_completions(self):
702         completions = []
703         for addr, label in self.wallet.labels.items():
704             if addr in self.wallet.addressbook:
705                 completions.append("%s <%s>" % (label, addr))
706         completions = completions + self.wallet.aliases.keys()
707         self.window.update_completions(completions)
708
709     def update_history(self):
710         tx_history = self.wallet.get_tx_history()
711         self.window.update_history(tx_history)
712
713 if __name__ == "__main__":
714     app = QApplication(sys.argv)
715     with open(rsrc("style.css")) as style_file:
716         app.setStyleSheet(style_file.read())
717     mini = MiniWindow()
718     sys.exit(app.exec_())
719