UI/LogView.py

changeset 4095
c78cdc1a3c14
parent 4083
4418377391bc
child 4631
5c1a96925da4
equal deleted inserted replaced
4094:2077ba18a848 4095:c78cdc1a3c14
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
223 220
224 def __configure(self): 221 def __configure(self):
225 """ 222 """
226 Private method to open the configuration dialog. 223 Private method to open the configuration dialog.
227 """ 224 """
228 e5App().getObject("UserInterface").showPreferences("interfacePage") 225 e5App().getObject("UserInterface").showPreferences("logViewerPage")
229 226
230 def __find(self): 227 def __find(self):
231 """ 228 """
232 Private slot to show the find widget. 229 Private slot to show the find widget.
233 """ 230 """

eric ide

mercurial