所以我创建了一个事件驱动程序,它应该在具有消息对话框的特定事件处理程序触发时提示用户。有没有办法在它们重合的情况下同时实例化这些消息对话框?
################################################################################
# Create Listener ##############################################################
################################################################################
# listens to a local directory for files
watch = Watcher(LOCAL_DIRECTORY, callback)
# set the appropriate flags for a listener
watch.flags = FILE_NOTIFY_CHANGE_FILE_NAME
################################################################################
# Start Listener ###############################################################
################################################################################
watch.start()
################################################################################
################################################################################
################################################################################
答案 0 :(得分:1)
它应该正常工作,请考虑以下
import wx
def handle(e):
wx.MessageBox("Hello","world")
a = wx.App(redirect=False)
t = wx.Timer()
t.Bind(wx.EVT_TIMER,handle)
t.Start(3000)
f = wx.Frame(None)
a.MainLoop()
这将每隔3秒打开一个消息框,而不管前一个消息框是否打开...
经过进一步讨论后,我会假设您的事件是必须轮询的事件......您应该将轮询逻辑放在自己的线程中
def poll_data(data_callback):
def check_new_event():
if do_something_to_check():
wx.CallAfter(data_callback) # this will cause the callback to be executed in the main thread (All gui updates *should* be done in the main thread)
while True:
check_new_event()
sleep(1) # force thread to surrender control for a while
def on_callback(*args,**kwargs):
wx.MessageBox("Some Message","Title")
def my_app():
a= wx.App(redirect=False)
f=wx.Frame(None)
th = threading.Thread(target=poll_data,args=(on_callback,))
th.start()
a.MainLoop()
在您编辑之后,我将另外假设您的watch
库会阻止,直到回调返回...只需使用wx.Callafter
,如下所示
def old_callback(*args):
wx.MessageBox("Whatever","blah")
def callback(*args):
wx.CallAfter(old_callback,*args)
watch.bind(callback) # or however
这允许回调返回并观察继续收听......无论阻塞对话
这是一个使用监视库
的完整示例import watcher,wx
a = wx.App(redirect=False)
TARGET_DIR="/py_exp/testing"
def real_callback(*args):
wx.MessageBox(str(args),"QQQQ")
def callback(*args):
wx.CallAfter(real_callback,*args)
w = watcher.Watcher(TARGET_DIR, callback)
w.flags = watcher.FILE_NOTIFY_CHANGE_FILE_NAME
w.start()
f = wx.Frame(None)
a.MainLoop()
然后只需添加和删除目录中的文件(注意新的弹出窗口可能弹出现有的...但如果你移动它们你应该看到所有这些)