129 @param s data to be written (it must support the str-method) |
129 @param s data to be written (it must support the str-method) |
130 """ |
130 """ |
131 self.buffer += str(s) |
131 self.buffer += str(s) |
132 self.__nWrite(self.__bufferedWrite()) |
132 self.__nWrite(self.__bufferedWrite()) |
133 |
133 |
134 # TODO: make "File-Browser", "Symbols" and "Numbers" configurable |
134 |
|
135 # TODO: make "Template-Viewer", "File-Browser", "Symbols" and "Numbers" configurable |
135 class UserInterface(E5MainWindow): |
136 class UserInterface(E5MainWindow): |
136 """ |
137 """ |
137 Class implementing the main user interface. |
138 Class implementing the main user interface. |
138 |
139 |
139 @signal appendStderr(str) emitted to write data to stderr logger |
140 @signal appendStderr(str) emitted to write data to stderr logger |