7 Module implementing a dialog to show the output of the svn blame command. |
7 Module implementing a dialog to show the output of the svn blame command. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt6.QtCore import QTimer, QProcess, Qt, pyqtSlot |
12 from PyQt6.QtCore import QProcess, Qt, QTimer, pyqtSlot |
13 from PyQt6.QtWidgets import ( |
13 from PyQt6.QtWidgets import ( |
|
14 QDialog, |
|
15 QDialogButtonBox, |
14 QHeaderView, |
16 QHeaderView, |
15 QLineEdit, |
17 QLineEdit, |
16 QDialog, |
|
17 QDialogButtonBox, |
|
18 QTreeWidgetItem, |
18 QTreeWidgetItem, |
19 ) |
19 ) |
20 |
20 |
|
21 from eric7 import Preferences |
21 from eric7.EricWidgets import EricMessageBox |
22 from eric7.EricWidgets import EricMessageBox |
|
23 from eric7.Globals import strToQByteArray |
22 |
24 |
23 from .Ui_SvnBlameDialog import Ui_SvnBlameDialog |
25 from .Ui_SvnBlameDialog import Ui_SvnBlameDialog |
24 |
|
25 from eric7 import Preferences |
|
26 from eric7.Globals import strToQByteArray |
|
27 |
26 |
28 |
27 |
29 class SvnBlameDialog(QDialog, Ui_SvnBlameDialog): |
28 class SvnBlameDialog(QDialog, Ui_SvnBlameDialog): |
30 """ |
29 """ |
31 Class implementing a dialog to show the output of the svn blame command. |
30 Class implementing a dialog to show the output of the svn blame command. |