48 @signal escPressed() emitted after the cancel command was activated |
48 @signal escPressed() emitted after the cancel command was activated |
49 @signal returnPressed() emitted after a newline command was activated |
49 @signal returnPressed() emitted after a newline command was activated |
50 @signal gotFocus() emitted when the focus is changed to this widget |
50 @signal gotFocus() emitted when the focus is changed to this widget |
51 """ |
51 """ |
52 escPressed = pyqtSignal() |
52 escPressed = pyqtSignal() |
53 returnPressed = pyqtSignal() |
|
54 gotFocus = pyqtSignal() |
53 gotFocus = pyqtSignal() |
55 |
54 |
56 def editorCommand(self, cmd): |
55 def editorCommand(self, cmd): |
57 """ |
56 """ |
58 Public method to perform an editor command. |
57 Public method to perform an editor command. |