6 """ |
6 """ |
7 Module implementing a dialog to show a list of files which had or still have |
7 Module implementing a dialog to show a list of files which had or still have |
8 conflicts. |
8 conflicts. |
9 """ |
9 """ |
10 |
10 |
11 from PyQt6.QtCore import pyqtSlot, Qt, QPoint |
11 from PyQt6.QtCore import QPoint, Qt, pyqtSlot |
12 from PyQt6.QtWidgets import ( |
12 from PyQt6.QtWidgets import ( |
13 QAbstractButton, |
13 QAbstractButton, |
|
14 QApplication, |
14 QDialogButtonBox, |
15 QDialogButtonBox, |
15 QHeaderView, |
16 QHeaderView, |
16 QTreeWidgetItem, |
17 QTreeWidgetItem, |
17 QApplication, |
|
18 QWidget, |
18 QWidget, |
19 ) |
19 ) |
20 |
20 |
21 from eric7.EricWidgets.EricApplication import ericApp |
21 from eric7.EricWidgets.EricApplication import ericApp |
|
22 from eric7.Utilities import MimeTypes |
22 |
23 |
23 from .Ui_HgConflictsListDialog import Ui_HgConflictsListDialog |
24 from .Ui_HgConflictsListDialog import Ui_HgConflictsListDialog |
24 |
|
25 from eric7.Utilities import MimeTypes |
|
26 |
25 |
27 |
26 |
28 class HgConflictsListDialog(QWidget, Ui_HgConflictsListDialog): |
27 class HgConflictsListDialog(QWidget, Ui_HgConflictsListDialog): |
29 """ |
28 """ |
30 Class implementing a dialog to show a list of files which had or still |
29 Class implementing a dialog to show a list of files which had or still |