10 import os |
10 import os |
11 |
11 |
12 from PyQt6.QtCore import QObject, QCoreApplication |
12 from PyQt6.QtCore import QObject, QCoreApplication |
13 from PyQt6.QtWidgets import QDialog |
13 from PyQt6.QtWidgets import QDialog |
14 |
14 |
15 from EricWidgets.EricApplication import ericApp |
15 from eric7.EricWidgets.EricApplication import ericApp |
16 |
16 |
17 from UI.DeleteFilesConfirmationDialog import DeleteFilesConfirmationDialog |
17 from eric7.UI.DeleteFilesConfirmationDialog import DeleteFilesConfirmationDialog |
18 |
18 |
19 from Project.ProjectBrowserModel import ( |
19 from eric7.Project.ProjectBrowserModel import ( |
20 ProjectBrowserSimpleDirectoryItem, |
20 ProjectBrowserSimpleDirectoryItem, |
21 ProjectBrowserFileItem, |
21 ProjectBrowserFileItem, |
22 ProjectBrowserDirectoryItem, |
22 ProjectBrowserDirectoryItem, |
23 ) |
23 ) |
24 |
24 |
25 import Preferences |
25 from eric7 import Preferences |
26 |
26 |
27 |
27 |
28 class VcsProjectBrowserHelper(QObject): |
28 class VcsProjectBrowserHelper(QObject): |
29 """ |
29 """ |
30 Class implementing the base class of the VCS project browser helper. |
30 Class implementing the base class of the VCS project browser helper. |