(self, item)
| 106 | '{0}: {1}'.format(formatColor('itemDoubleClicked', QColor(Qt.darkGreen)), item.text())) |
| 107 | |
| 108 | def onItemEntered(self, item): |
| 109 | self.resultView.appendHtml( |
| 110 | '{0}: {1}'.format(formatColor('itemEntered', QColor(Qt.darkCyan)), item.text())) |
| 111 | |
| 112 | def onItemPressed(self, item): |
| 113 | print(item) |
nothing calls this directly
no test coverage detected