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