(self, dropFn, *args, **kwargs)
| 37 | |
| 38 | class ImplantViewDrop(wx.DropTarget): |
| 39 | def __init__(self, dropFn, *args, **kwargs): |
| 40 | super(ImplantViewDrop, self).__init__(*args, **kwargs) |
| 41 | self.dropFn = dropFn |
| 42 | # this is really transferring an EVE itemID |
| 43 | self.dropData = wx.TextDataObject() |
| 44 | self.SetDataObject(self.dropData) |
| 45 | |
| 46 | def OnData(self, x, y, t): |
| 47 | if self.GetData(): |