7 Module implementing a dialog to show the results of the PyLint run. |
7 Module implementing a dialog to show the results of the PyLint run. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt4.QtCore import * |
12 from PyQt4.QtCore import QTimer, QProcess, Qt, pyqtSlot |
13 from PyQt4.QtGui import * |
13 from PyQt4.QtGui import QWidget, QMessageBox, QCursor, QHeaderView, QApplication, \ |
|
14 QTextCursor, QDialogButtonBox, QTreeWidgetItem, QFileDialog |
14 |
15 |
15 from E5Gui import E5MessageBox, E5FileDialog |
16 from E5Gui import E5MessageBox, E5FileDialog |
16 from E5Gui.E5Application import e5App |
17 from E5Gui.E5Application import e5App |
17 |
18 |
18 from .Ui_PyLintExecDialog import Ui_PyLintExecDialog |
19 from .Ui_PyLintExecDialog import Ui_PyLintExecDialog |