Handles dragging of items from various pyfa displays which support it data is list with two indices: data[0] is hard-coded str of originating source data[1] is typeID or index of data we want to manipulate
(x, y, data)
| 96 | |
| 97 | @staticmethod |
| 98 | def handleListDrag(x, y, data): |
| 99 | """ |
| 100 | Handles dragging of items from various pyfa displays which support it |
| 101 | |
| 102 | data is list with two indices: |
| 103 | data[0] is hard-coded str of originating source |
| 104 | data[1] is typeID or index of data we want to manipulate |
| 105 | """ |
| 106 | pass |
| 107 | |
| 108 | def kbEvent(self, event): |
| 109 | keycode = event.GetKeyCode() |
nothing calls this directly
no outgoing calls
no test coverage detected