wxPython - 防止出现两次相同的警告对话框

时间:2016-01-06 16:30:31

标签: python user-interface wxpython

我有一个textctrl接受用户输入。我想在用户输入文本后检查文本,看它是否也在预定义的单词列表中。当textctrl失去焦点时,我可以进行此检查。我也可以设置它来检查按下回车键的时间。但是,如果我同时执行这两项操作,则会检查输入两次(不是很大,但不是必需的)。如果输入不正确(单词不在列表中),则弹出2个错误对话框。这不太理想。围绕这个最好的方法是什么?

编辑:如果我没有清除,如果输入不正确并且按下了Enter,则会弹出2个警告。这会导致出现一个对话框,该对话框会窃取焦点,导致第二个出现。

1 个答案:

答案 0 :(得分:1)

此演示代码符合您的标准 您应该能够在单独的文件中测试它的完整运行。

    import sys; print sys.version
    import wx; print wx.version()


    class TestFrame(wx.Frame):

        def __init__(self):
            wx.Frame.__init__(self, None, -1, "hello frame")
            self.inspected = True
            self.txt = wx.TextCtrl(self, style=wx.TE_PROCESS_ENTER)
            self.txt.SetLabel("this box must contain the word 'hello' ")
            self.txt.Bind(wx.EVT_TEXT_ENTER, self.onEnter)
            self.txt.Bind(wx.EVT_KILL_FOCUS, self.onLostFocus)
            self.txt.Bind(wx.EVT_TEXT, self.onText)

        def onEnter(self, e):
            self.inspectText()

        def onLostFocus(self, e):
            self.inspectText()

        def onText(self, e):
            self.inspected = False

        def inspectText(self):
            if not self.inspected:
                self.inspected = not self.inspected
                if 'hello' not in self.txt.GetValue():
                    self.failedInspection()
            else:
                print "no need to inspect or warn user again"

        def failedInspection(self):
            dlg = wx.MessageDialog(self,
                                   "The word hello is required before hitting enter or changing focus",
                                   "Where's the hello?!",
                                   wx.OK | wx.CANCEL)
            result = dlg.ShowModal()
            dlg.Destroy()
            if result == wx.ID_OK:
                pass
            if result == wx.ID_CANCEL:
                self.txt.SetLabel("don't forget the 'hello' !")

    mySandbox = wx.App()
    myFrame = TestFrame()
    myFrame.Show()
    mySandbox.MainLoop()
    exit()

使用的策略是向实例添加一个标志以指示它是否已被检查,并在文本更改时覆盖该标志。