45 Class implementing the standalone MicroPython window. |
45 Class implementing the standalone MicroPython window. |
46 |
46 |
47 @signal editorCountChanged(count) emitted whenever the count of open editors |
47 @signal editorCountChanged(count) emitted whenever the count of open editors |
48 changed |
48 changed |
49 @signal preferencesChanged() emitted after the preferences were changed |
49 @signal preferencesChanged() emitted after the preferences were changed |
|
50 @signal shutdown() emitted to indicate a shutdown of the application |
50 """ |
51 """ |
51 |
52 |
52 editorCountChanged = pyqtSignal(int) |
53 editorCountChanged = pyqtSignal(int) |
53 preferencesChanged = pyqtSignal() |
54 preferencesChanged = pyqtSignal() |
|
55 shutdown = pyqtSignal() |
54 |
56 |
55 def __init__(self, parent=None): |
57 def __init__(self, parent=None): |
56 """ |
58 """ |
57 Constructor |
59 Constructor |
58 |
60 |