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