This commit is contained in:
ThomasV 2012-02-13 19:09:44 +01:00
parent a27d1453c8
commit 893e54b7e3
1 changed files with 14 additions and 42 deletions

View File

@ -45,6 +45,16 @@ class ElectrumWindow(QMainWindow):
QShortcut(QKeySequence("Ctrl+PgUp"), self, lambda: tabs.setCurrentIndex( (tabs.currentIndex() - 1 )%tabs.count() ))
QShortcut(QKeySequence("Ctrl+PgDown"), self, lambda: tabs.setCurrentIndex( (tabs.currentIndex() + 1 )%tabs.count() ))
def ok_cancel_buttons(self,d):
hbox = QHBoxLayout()
hbox.addStretch(1)
b = QPushButton("OK")
hbox.addWidget(b)
b.clicked.connect(d.accept)
b = QPushButton("Cancel")
hbox.addWidget(b)
b.clicked.connect(d.reject)
return hbox
def connect_slots(self, sender):
self.connect(sender, QtCore.SIGNAL('testsignal'), self.update_wallet)
@ -508,16 +518,7 @@ class ElectrumWindow(QMainWindow):
grid.addWidget(pw, 1, 1)
vbox.addLayout(grid)
hbox = QHBoxLayout()
hbox.addStretch(1)
b = QPushButton("OK")
hbox.addWidget(b)
b.clicked.connect(d.accept)
b = QPushButton("Cancel")
hbox.addWidget(b)
b.clicked.connect(d.reject)
vbox.addLayout(hbox)
vbox.addLayout(self.ok_cancel_buttons(d))
d.setLayout(vbox)
if not d.exec_(): return
@ -550,18 +551,7 @@ class ElectrumWindow(QMainWindow):
grid.addWidget(QLabel('Confirm Password'), 3, 0)
grid.addWidget(conf_pw, 3, 1)
hbox = QHBoxLayout()
hbox.addStretch(1)
b = QPushButton("OK")
hbox.addWidget(b)
b.clicked.connect(d.accept)
b = QPushButton("Cancel")
hbox.addWidget(b)
b.clicked.connect(d.reject)
vbox = QVBoxLayout()
vbox.addLayout(grid)
vbox.addLayout(hbox)
vbox.addLayout(self.ok_cancel_buttons(d))
d.setLayout(vbox)
if not d.exec_(): return
@ -600,16 +590,7 @@ class ElectrumWindow(QMainWindow):
grid.addWidget(fee_line, 2, 1)
vbox.addLayout(grid)
hbox = QHBoxLayout()
hbox.addStretch(1)
b = QPushButton("OK")
hbox.addWidget(b)
b.clicked.connect(d.accept)
b = QPushButton("Cancel")
hbox.addWidget(b)
b.clicked.connect(d.reject)
vbox.addLayout(hbox)
vbox.addLayout(self.ok_cancel_buttons(d))
d.setLayout(vbox)
if not d.exec_(): return
@ -653,16 +634,7 @@ class ElectrumWindow(QMainWindow):
grid.addWidget(host_line, 2, 1)
vbox.addLayout(grid)
hbox = QHBoxLayout()
hbox.addStretch(1)
b = QPushButton("OK")
hbox.addWidget(b)
b.clicked.connect(d.accept)
b = QPushButton("Cancel")
hbox.addWidget(b)
b.clicked.connect(d.reject)
vbox.addLayout(hbox)
vbox.addLayout(self.ok_cancel_buttons(d))
d.setLayout(vbox)
if not d.exec_(): return