在FileDropTarget

时间:2016-01-26 09:15:39

标签: python python-2.7 drag-and-drop wxpython

我正在研究文档管理系统,正在尝试实现拖放功能,该功能允许用户将文件从Windows资源管理器拖到我的程序中。

为此,我创建了自己的自定义Drop Target:

class DocumentsDropTarget(wx.FileDropTarget):

    """Implements the ability to import a new document/file as a DB File
    by drag and drop.
    See for more info: http://wiki.wxpython.org/DragAndDrop"""

    def __init__(self, parent, import_as_db_file_method):
        wx.FileDropTarget.__init__(self)
        self.parent = parent
        self.import_as_db_file_method = import_as_db_file_method

    def OnDropFiles(self, dummy_x, dummy_y, files):
        """Makes sure that only one file is dropped. Then translates the
        dropped file into source_folder and filename and then calls the
        method for importing the file as a db file."""
        if len(files) != 1:
            show_error_message(self.parent,
                               "Documents", "MOnlyOneFilePerDBImport")
            return
        source_path = files[0]
        split_position = string.rfind(source_path, '\\')
        source_folder = source_path[:split_position]
        filename = source_path[(split_position + 1):]
        self.import_as_db_file_method(source_folder=source_folder,
                                      filename=filename)

这完美无缺。我的程序选择正确的source_folder和文件名并正确导入新文件。

问题仅在于方法self.import_as_db_file_method(...)内部是一个对话框,它将在实际导入之前显示给用户,以便能够为导入设置一些选项。

当对话框打开时,您无法使用Windows资源管理器,拖动过程的预览图像会卡在我的屏幕上。按下“Importieren”按钮后,方法self.import_as_db_file_method(...)结束,卡住的预览图像消失。

有什么方法可以告诉Windows资源管理器我收集了我需要的所有数据并在调用self.import_as_db_file_method(...)之前完成了拖动过程

我的对话框上卡住预览图片的示例: DragAndDrop Stuck Preview Image Example

1 个答案:

答案 0 :(得分:1)

我不是100%确定你的问题是什么,但在过去使用wx.FileDropTarget我编码它来设置带有测试和清理文件名的全局变量,然后我使用wx.Timer每秒一次测试全局变量 虽然这确实涉及开销,但它确实意味着在wx.Timer代码中,当我访问文件时我已经完成了删除和拖动以及文件的类型等测试