(self, event)
| 90 | return sub |
| 91 | |
| 92 | def handleSelection(self, event): |
| 93 | # Skip events ids that aren't mapped |
| 94 | |
| 95 | swObj = self.idmap.get(event.Id, False) |
| 96 | if not swObj: |
| 97 | event.Skip() |
| 98 | return |
| 99 | |
| 100 | fitID = self.mainFrame.getActiveFit() |
| 101 | self.mainFrame.command.Submit(cmd.GuiAddProjectedModuleCommand(fitID, swObj)) |
| 102 | |
| 103 | def getData(self): |
| 104 | data = Group() |
nothing calls this directly
no test coverage detected