92 Class providing a specialized text edit for displaying logging information. |
92 Class providing a specialized text edit for displaying logging information. |
93 |
93 |
94 @signal searchStringFound(found) emitted to indicate the search result |
94 @signal searchStringFound(found) emitted to indicate the search result |
95 (boolean) |
95 (boolean) |
96 """ |
96 """ |
97 # TODO: implement a filter for messages (separate for stdout and stderr, |
|
98 # maybe a combined one as well |
|
99 # TODO: add an entry to the config dialog for the filters |
|
100 searchStringFound = pyqtSignal(bool) |
97 searchStringFound = pyqtSignal(bool) |
101 |
98 |
102 def __init__(self, parent=None): |
99 def __init__(self, parent=None): |
103 """ |
100 """ |
104 Constructor |
101 Constructor |