本文整理汇总了Python中spyderlib.qt.QtGui.QApplication.exec_方法的典型用法代码示例。如果您正苦于以下问题:Python QApplication.exec_方法的具体用法?Python QApplication.exec_怎么用?Python QApplication.exec_使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类spyderlib.qt.QtGui.QApplication
的用法示例。
在下文中一共展示了QApplication.exec_方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test
# 需要导入模块: from spyderlib.qt.QtGui import QApplication [as 别名]
# 或者: from spyderlib.qt.QtGui.QApplication import exec_ [as 别名]
def test():
from spyderlib.qt.QtGui import QApplication
app = QApplication([])
widget = create_widget()
widget.show()
# Start the application main loop.
app.exec_()
示例2: test
# 需要导入模块: from spyderlib.qt.QtGui import QApplication [as 别名]
# 或者: from spyderlib.qt.QtGui.QApplication import exec_ [as 别名]
def test():
""" """
app = QApplication([])
win = TestWindow()
win.show()
app.exec_()
示例3: QApplication
# 需要导入模块: from spyderlib.qt.QtGui import QApplication [as 别名]
# 或者: from spyderlib.qt.QtGui.QApplication import exec_ [as 别名]
self.initialized.emit(server_port)
else:
self.request_handled.emit(read_packet(conn))
if __name__ == '__main__':
app = QApplication(sys.argv)
plugin = PluginClient('jedi')
def handle_return(value):
print(value)
if value['method'] == 'foo':
app.quit()
else:
plugin.send(dict(method='foo'))
def handle_errored():
print('errored')
sys.exit(1)
def start():
print('start')
plugin.send(dict(method='validate'))
plugin.errored.connect(handle_errored)
plugin.request_handled.connect(handle_return)
plugin.initialized.connect(start)
app.exec_()