7 Module implementing a dialog to show the output of the svn diff command process. |
7 Module implementing a dialog to show the output of the svn diff command process. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt4.QtCore import * |
12 from PyQt4.QtCore import QTimer, QFileInfo, QProcess, pyqtSlot |
13 from PyQt4.QtGui import * |
13 from PyQt4.QtGui import QWidget, QColor, QLineEdit, QBrush, QTextCursor, QDialogButtonBox |
14 |
14 |
15 from E5Gui.E5Application import e5App |
15 from E5Gui.E5Application import e5App |
16 from E5Gui import E5MessageBox, E5FileDialog |
16 from E5Gui import E5MessageBox, E5FileDialog |
17 |
17 |
18 from .Ui_SvnDiffDialog import Ui_SvnDiffDialog |
18 from .Ui_SvnDiffDialog import Ui_SvnDiffDialog |