(self, x, y, t)
| 39 | self.SetDataObject(self.dropData) |
| 40 | |
| 41 | def OnData(self, x, y, t): |
| 42 | if self.GetData(): |
| 43 | dragged_data = DragDropHelper.data |
| 44 | |
| 45 | if dragged_data is None: |
| 46 | return t |
| 47 | |
| 48 | data = dragged_data.split(':') |
| 49 | self.dropFn(x, y, data) |
| 50 | return t |
| 51 | |
| 52 | |
| 53 | # @todo: Was copied form another class and modified. Look through entire file, refine |