(self, action, actions, type, win, X, Y, x, y, data)
| 599 | self.update_status(event, 'Total no. of items: ' + str(len(self.file_list)) + ' Selected: ' + str(len(self.selected_file_indices))) |
| 600 | |
| 601 | def handle_dnd(self, action, actions, type, win, X, Y, x, y, data): |
| 602 | #If there is another child window, disable dnd |
| 603 | if(len(self.master.children) != 4): return |
| 604 | del self.dnd_file_list[:] |
| 605 | self.dnd_file_list = self.dnd.parse_uri_list(data) |
| 606 | self.upload_thread_dnd() |
| 607 | |
| 608 | def show_dnd_icon(self, action, actions, type, win, X, Y, x, y, data): |
| 609 | #If there is another child window, disable dnd |
nothing calls this directly
no test coverage detected