(self, item)
| 110 | '{0}: {1}'.format(formatColor('itemEntered', QColor(Qt.darkCyan)), item.text())) |
| 111 | |
| 112 | def onItemPressed(self, item): |
| 113 | print(item) |
| 114 | self.resultView.appendHtml( |
| 115 | '{0}: {1}'.format(formatColor('itemPressed', QColor(Qt.darkYellow)), item.text())) |
| 116 | |
| 117 | def onItemSelectionChanged(self): |
| 118 | self.resultView.appendPlainText('itemSelectionChanged') |
nothing calls this directly
no test coverage detected