我有一个用wxPython制作的GUI,当我按下一个按钮时,它调用我从单独的Python文件导入的函数,并在文本框中显示该函数的输出。我想改进它,以便如果函数请求用户输入执行中(如raw_input()),我想要一个新的弹出窗口出现而不是在文本框中等待raw_input。我一直在查看wxPython文档,但似乎找不到任何类似于我想要的东西,所以我想知道这里是否有人可以给我任何指示。
GUI代码:
import sys
import os
import re
import subprocess
import threading
import wx
import errno, os, stat, shutil
import extern_func
#this object redirects the external function output to the text box
class RedirectText(object):
def __init__(self,aWxTextCtrl):
self.out=aWxTextCtrl
def write(self,string):
self.out.WriteText(string)
#GUI code here
class progFrame(wx.Frame):
def __init__(self, parent):
wx.Frame.__init__(self, parent, title="functionGUI", size=(800, 600), style=wx.DEFAULT_FRAME_STYLE ^ wx.RESIZE_BORDER)
panel = wx.Panel(self)
#more things....
self.runButton = wx.Button(panel, wx.ID_OK, "Run", pos=(200, 300))
self.out=wx.TextCtrl(panel, style=wx.TE_MULTILINE|wx.VSCROLL|wx.TE_READONLY, pos = (300, 50), size=(500, 200))
#Run button event
self.Bind(wx.EVT_BUTTON, self.OnRun, self.runButton)
#command prompt output to frame
redir=RedirectText(self.out)
sys.stdout=redir
self.Show()
def OnRun(self, event):
t=threading.Thread(target=self.__run)
t.start()
#external function call
def __run(self):
externFunc()
if __name__ == '__main__':
app = wx.App(False)
progFrame(None)
app.MainLoop()
外部功能代码:
import sys
def externFunc():
print "Starting execution..."
#a bunch of code...
cont = raw_input("Something has gone wrong. Do you still want to continue?")
if(cont.lower() == "n")
sys.exit(0)
#more function code...
print "Success!"
答案 0 :(得分:1)
我会通过按钮事件调用外部函数。而不是raw_input
,我只会使用带有是或否按钮的wx.MessageDialog
。您可以检查用户按下哪个按钮并相应地继续或不继续。以下是该对话框和其他内容的一些链接:
如果您正在运行的这段代码需要很长时间(即大于一秒),那么它可能会阻止wx的主循环并导致应用程序无响应。如果是这种情况,那么您需要将此代码移动到一个线程中。以下文章将帮助您完成该行动: