gpt4 book ai didi

python - PyGTK 窗口在被告知时不隐藏

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:01:28 24 4
gpt4 key购买 nike

在我的 PyGTK 应用程序中,我要求用户查找一个文件以便对其执行操作。应用程序向用户询问文件,并将该文件名传递给必要的方法。不幸的是,当在该对话框上调用 gtk.dispose() 方法时,它只是卡在那里,直到被调用以执行文件 IO 的方法完成。我什至尝试将文件操作放在另一个线程中,但这没有任何效果。

我的目的是让程序向用户显示一个对话框,通知他们他们选择要操作的文件正在发生。在当前的实现中,对话框 gtk.FileChooserDialog 被释放后出现。

下面是我的代码:

def performFileManipulation(self, widget, data=None):
# Create the file chooser dialog:
dialog = gtk.FileChooserDialog("Open..", None, gtk.FILE_CHOOSER_ACTION_OPEN, (gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL, gtk.STOCK_OPEN, gtk.RESPONSE_OK))
dialog.set_default_response(gtk.RESPONSE_OK)

# Display the file selector and obtain the response back
response = dialog.run()

# If the user selected a file, then get the filename:
if response == gtk.RESPONSE_OK:
dataLocation = dialog.get_filename()

# If the file was not chosen, then just close the window:
else:
print "Closed, no files selected" # Just for now

########## Problem Area ##########
# The dialog is told to get destroyed, however, it hangs here in an
# unresponsive state until the the file-manipulations performed in a new thread
# below are completed. Then, the status dialog (declared below) is displayed.
dialog.destroy() # Close the dialog.

## Show a dialog informing the user that the file manipulation is taking place:
statusDialog = gtk.Dialog("Performing File Operations...", parent=None, flags=0, buttons=None)
statusLabel = gtk.Label("Performing File Operations.\nPlease wait...")
statusLabel.set_justify(gtk.JUSTIFY_CENTER)
statusLabel.show()
statusDialog.vbox.pack_start(statusLabel, True, True, 0)
statusDialog.set_default_size(350, 150)
statusDialog.show()

# Create the thread to perform the file conversion:
errorBucket = Queue.Queue() # Make a bucket to catch all errors that may occur:
theFileOperationThread = doStuffToTheFile(dataLocation, errorBucket) # Declare the thread object.

## Perform the file operations:
theFileOperationThread.start() # Begin the thread

# Check on the thread. See if it's still running:
while True:
theFileOperationThread.join(0.1)
if theFileOperationThread.isAlive():
continue
else:
break

# Check if there was an error in the bucket:
try:
errorFound = errorBucket.get(False)

# If no errors were found, then the copy was successful!
except Queue.Empty:
pass

# There was an error in the bucket! Alert the user
else:
print errorFound

statusDialog.destroy()

请注意,这段代码还没有完成,例如,它还没有正确处理用户没有选择文件和取消操作。

编辑:经过进一步调查,PyGTK 似乎存在线程问题。问题出现在 while True 循环中。我用 time.sleep(15) 替换了该代码,同样,文件选择对话框将暂停。这是非常奇怪的行为,所有的东西都应该在不同的线程中运行。我想现在的问题是找出如何将文件选择对话框放在它自己的线程中。

最佳答案

可能不需要在单独的线程中执行文件操作,因为当文件操作正在运行时,您实际上并没有在该线程中执行任何操作——只是忙等待。这让我明白为什么代码不起作用:GUI 更新是在 GTK 主循环中处理的。但是在您等待文件线程完成的整个过程中,GTK 主循环都没有执行,因为它一直在等待您的 performFileManipulation 函数结束。

您需要做的是在 while True 循环期间执行 GTK 主循环的迭代。看起来像这样:

while True:
theFileOperationThread.join(0.1)
if theFileOperationThread.isAlive():
while gtk.events_pending():
gtk.main_iteration(block=False)
else:
break

但同样,我会考虑只在这个线程中执行文件操作,启动另一个线程然后在它运行时什么也不做似乎是多余的。

关于python - PyGTK 窗口在被告知时不隐藏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3203783/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com