electrum-bitcoinprivate/lib/gui_lite.py

226 lines
6.8 KiB
Python
Raw Normal View History

2012-06-27 13:15:52 -07:00
from PyQt4.QtCore import *
from PyQt4.QtGui import *
import sys
_ = lambda trtext: trtext
def IconButton(filename, parent=None):
pixmap = QPixmap(filename)
icon = QIcon(pixmap)
return QPushButton(icon, "", parent)
class ElectrumGui:
2012-06-27 14:06:00 -07:00
def __init__(self, wallet):
self.wallet = wallet
2012-06-27 14:06:00 -07:00
self.app = QApplication(sys.argv)
with open("data/style.css") as style_file:
self.app.setStyleSheet(style_file.read())
def main(self, url):
2012-06-27 14:06:00 -07:00
mini = MiniWindow()
driver = MiniDriver(self.wallet, mini)
sys.exit(self.app.exec_())
2012-06-27 13:15:52 -07:00
class MiniWindow(QDialog):
2012-06-27 14:06:00 -07:00
2012-06-27 13:15:52 -07:00
def __init__(self):
super(MiniWindow, self).__init__()
accounts_button = IconButton("data/icons/accounts.png")
accounts_button.setObjectName("accounts_button")
accounts_selector = QMenu()
accounts_selector.addAction("Normal (80.00 BTC)")
accounts_selector.addAction("Drugs (7.50 BTC)")
accounts_selector.addAction("Reddit Girls (3.50 BTC)")
accounts_button.setMenu(accounts_selector)
interact_button = IconButton("data/icons/interact.png")
interact_button.setObjectName("interact_button")
app_menu = QMenu()
app_menu.addAction("Blaa")
file_menu = QMenu("File", app_menu)
file_menu.addAction("Foo")
file_menu.addAction("Bar")
app_menu.addMenu(file_menu)
app_menu.addAction("Other")
interact_button.setMenu(app_menu)
expand_button = IconButton("data/icons/expand.png")
expand_button.setObjectName("expand_button")
2012-06-27 14:06:00 -07:00
self.balance_label = BalanceLabel()
self.balance_label.set_balances("80.00", "60.00", "EUR")
self.balance_label.setObjectName("balance_label")
2012-06-27 13:15:52 -07:00
copy_button = QPushButton(_("&Copy Address"))
copy_button.setObjectName("copy_button")
copy_button.setDefault(True)
# Use QCompleter
address_input = TextedLineEdit(_("Enter a Bitcoin address..."))
address_input.setObjectName("address_input")
valid_address = QCheckBox()
valid_address.setObjectName("valid_address")
valid_address.setEnabled(False)
#valid_address.setChecked(True)
address_layout = QHBoxLayout()
address_layout.addWidget(address_input)
address_layout.addWidget(valid_address)
amount_input = TextedLineEdit(_("... and amount"))
amount_input.setObjectName("amount_input")
amount_layout = QHBoxLayout()
amount_layout.addWidget(amount_input)
amount_layout.addStretch()
send_button = QPushButton(_("&Send"))
send_button.setObjectName("send_button")
main_layout = QGridLayout(self)
main_layout.addWidget(accounts_button, 0, 0)
main_layout.addWidget(interact_button, 1, 0)
main_layout.addWidget(expand_button, 2, 0)
2012-06-27 14:06:00 -07:00
main_layout.addWidget(self.balance_label, 0, 1)
2012-06-27 13:15:52 -07:00
main_layout.addWidget(copy_button, 0, 2)
main_layout.addLayout(address_layout, 1, 1, 1, -1)
main_layout.addLayout(amount_layout, 2, 1)
main_layout.addWidget(send_button, 2, 2)
self.setWindowTitle("Electrum - Normal (80.00 BTC)")
self.setWindowFlags(Qt.Window|Qt.MSWindowsFixedSizeDialogHint)
self.layout().setSizeConstraint(QLayout.SetFixedSize)
self.setObjectName("main_window")
self.show()
def closeEvent(self, event):
super(MiniWindow, self).closeEvent(event)
qApp.quit()
2012-06-27 14:06:00 -07:00
def activate(self):
pass
def deactivate(self):
pass
def set_balances(self, btc_balance, quote_balance, quote_currency):
self.balance_label.set_balances( \
btc_balance, quote_balance, quote_currency)
2012-06-27 13:15:52 -07:00
class BalanceLabel(QLabel):
2012-06-27 14:06:00 -07:00
def __init__(self, parent=None):
super(QLabel, self).__init__("Connecting...", parent)
def set_balances(self, btc_balance, quote_balance, quote_currency):
2012-06-27 13:15:52 -07:00
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)
2012-06-27 14:06:00 -07:00
self.setText(label_text)
2012-06-27 13:15:52 -07:00
class TextedLineEdit(QLineEdit):
2012-06-27 14:06:00 -07:00
2012-06-27 13:15:52 -07:00
def __init__(self, inactive_text, parent=None):
super(QLineEdit, self).__init__(parent)
self.inactive_text = inactive_text
self.become_inactive()
def mousePressEvent(self, event):
if self.isReadOnly():
self.become_active()
2012-06-28 06:28:24 -07:00
QLineEdit.mousePressEvent(self, event)
2012-06-27 13:15:52 -07:00
def focusOutEvent(self, event):
if self.text() == "":
self.become_inactive()
2012-06-28 06:28:24 -07:00
QLineEdit.focusOutEvent(self, event)
def focusInEvent(self, event):
if self.isReadOnly():
self.become_active()
QLineEdit.focusInEvent(self, event)
2012-06-27 13:15:52 -07:00
def become_inactive(self):
self.setText(self.inactive_text)
self.setReadOnly(True)
self.recompute_style()
def become_active(self):
self.setText("")
self.setReadOnly(False)
self.recompute_style()
def recompute_style(self):
qApp.style().unpolish(self)
qApp.style().polish(self)
# also possible but more expensive:
#qApp.setStyleSheet(qApp.styleSheet())
2012-06-27 14:06:00 -07:00
class MiniDriver:
INITIALIZING = 0
CONNECTING = 1
SYNCHRONIZING = 2
READY = 3
def __init__(self, wallet, window):
self.wallet = wallet
self.window = window
self.wallet.gui_callback = self.update
self.state = None
self.update()
def update(self):
if not self.wallet.interface:
self.initializing()
elif not self.wallet.interface.is_connected:
self.connecting()
elif not self.wallet.blocks == -1:
self.connecting()
elif not self.wallet.is_up_to_date:
self.synchronizing()
else:
self.ready()
def initializing(self):
if self.state == self.INITIALIZING:
return
self.state = self.INITIALIZING
self.window.deactivate()
def connecting(self):
if self.state == self.CONNECTING:
return
self.state = self.CONNECTING
self.window.deactivate()
def synchronizing(self):
if self.state == self.SYNCHRONIZING:
return
self.state = self.SYNCHRONIZING
self.window.deactivate()
def ready(self):
if self.state == self.READY:
return
self.state = self.READY
self.window.activate()
conf_balance, unconf_balance = self.wallet.get_balance()
balance = conf_balance if unconf_balance is None else unconf_balance
self.window.set_balances(balance, 0, 'EUR')
2012-06-27 13:15:52 -07:00
if __name__ == "__main__":
app = QApplication(sys.argv)
with open("data/style.css") as style_file:
app.setStyleSheet(style_file.read())
mini = MiniWindow()
sys.exit(app.exec_())