I'm making a "remote file manager", kinda, and I'd like it to be
capable of drag'n'drop out of the application into Windows Explorer. I
have stuff in a ListView now, and all I'd need to do really is to get
the drop target folder name. Is this possible in wxPython?
A D'n'D has 2 ends: the source and the target.
the source has the responsability to say what is in the D'n'D operation (file, text, custom data)
the target has the responsability of handling the data.
it looks like you want to know in the source what the target is doing... I don't think that is possible.
I might be wrong about this BUT i think D'n'D is a one way communication from source to target.
Peter
ยทยทยท
On Wed, 31 Aug 2005 08:27:15 +0300, AKX <theakx@gmail.com> wrote:
Good morning.
I'm making a "remote file manager", kinda, and I'd like it to be
capable of drag'n'drop out of the application into Windows Explorer. I
have stuff in a ListView now, and all I'd need to do really is to get
the drop target folder name. Is this possible in wxPython?