7 Module implementing a dialog to browse the bisect log history. |
7 Module implementing a dialog to browse the bisect log history. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt6.QtCore import pyqtSlot, Qt, QPoint, QProcess, QTimer |
12 from PyQt6.QtCore import QPoint, QProcess, Qt, QTimer, pyqtSlot |
13 from PyQt6.QtWidgets import ( |
13 from PyQt6.QtWidgets import ( |
14 QWidget, |
14 QApplication, |
15 QDialogButtonBox, |
15 QDialogButtonBox, |
16 QHeaderView, |
16 QHeaderView, |
|
17 QLineEdit, |
17 QTreeWidgetItem, |
18 QTreeWidgetItem, |
18 QApplication, |
19 QWidget, |
19 QLineEdit, |
|
20 ) |
20 ) |
21 |
21 |
|
22 from eric7 import Preferences |
|
23 from eric7.EricGui.EricOverrideCursor import EricOverrideCursorProcess |
22 from eric7.EricWidgets import EricMessageBox |
24 from eric7.EricWidgets import EricMessageBox |
23 from eric7.EricGui.EricOverrideCursor import EricOverrideCursorProcess |
25 from eric7.Globals import strToQByteArray |
24 |
26 |
25 from .Ui_GitBisectLogBrowserDialog import Ui_GitBisectLogBrowserDialog |
27 from .Ui_GitBisectLogBrowserDialog import Ui_GitBisectLogBrowserDialog |
26 |
|
27 from eric7 import Preferences |
|
28 from eric7.Globals import strToQByteArray |
|
29 |
28 |
30 |
29 |
31 class GitBisectLogBrowserDialog(QWidget, Ui_GitBisectLogBrowserDialog): |
30 class GitBisectLogBrowserDialog(QWidget, Ui_GitBisectLogBrowserDialog): |
32 """ |
31 """ |
33 Class implementing a dialog to browse the bisect log history. |
32 Class implementing a dialog to browse the bisect log history. |