本文整理汇总了Python中PyQt4.Qt.QGridLayout方法的典型用法代码示例。如果您正苦于以下问题:Python Qt.QGridLayout方法的具体用法?Python Qt.QGridLayout怎么用?Python Qt.QGridLayout使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PyQt4.Qt
的用法示例。
在下文中一共展示了Qt.QGridLayout方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: settings_dialog
# 需要导入模块: from PyQt4 import Qt [as 别名]
# 或者: from PyQt4.Qt import QGridLayout [as 别名]
def settings_dialog(self):
get_label = lambda: self.wallet.get_client().features.label
update_label = lambda: current_label_label.setText("Label: %s" % get_label())
d = QDialog()
layout = QGridLayout(d)
layout.addWidget(QLabel("Trezor Options"),0,0)
layout.addWidget(QLabel("ID:"),1,0)
layout.addWidget(QLabel(" %s" % self.wallet.get_client().get_device_id()),1,1)
def modify_label():
response = QInputDialog().getText(None, "Set New Trezor Label", "New Trezor Label: (upon submission confirm on Trezor)")
if not response[1]:
return
new_label = str(response[0])
twd.start("Please confirm label change on Trezor")
status = self.wallet.get_client().apply_settings(label=new_label)
twd.stop()
update_label()
current_label_label = QLabel()
update_label()
change_label_button = QPushButton("Modify")
change_label_button.clicked.connect(modify_label)
layout.addWidget(current_label_label,3,0)
layout.addWidget(change_label_button,3,1)
def remove_pin():
# twd.start("Please confirm pin removal on Trezor")
try:
status = self.wallet.get_client().change_pin(True)
print_error(status)
self.show_message(status)
except Exception, e:
give_error(e)
finally: