Project/ProjectResourcesBrowser.py

changeset 97
c4086afea02b
parent 55
b5c84934de9c
child 245
de5c4effc747
equal deleted inserted replaced
96:9624a110667d 97:c4086afea02b
6 """ 6 """
7 Module implementing a class used to display the resources part of the project. 7 Module implementing a class used to display the resources part of the project.
8 """ 8 """
9 9
10 import os 10 import os
11 import sys
12 import shutil
13 11
14 from PyQt4.QtCore import * 12 from PyQt4.QtCore import *
15 from PyQt4.QtGui import * 13 from PyQt4.QtGui import *
16 14
17 from E5Gui.E5Application import e5App 15 from E5Gui.E5Application import e5App
20 ProjectBrowserSimpleDirectoryItem, ProjectBrowserDirectoryItem, \ 18 ProjectBrowserSimpleDirectoryItem, ProjectBrowserDirectoryItem, \
21 ProjectBrowserResourceType 19 ProjectBrowserResourceType
22 from .ProjectBaseBrowser import ProjectBaseBrowser 20 from .ProjectBaseBrowser import ProjectBaseBrowser
23 21
24 from UI.DeleteFilesConfirmationDialog import DeleteFilesConfirmationDialog 22 from UI.DeleteFilesConfirmationDialog import DeleteFilesConfirmationDialog
25 import UI.PixmapCache
26 23
27 import Preferences 24 import Preferences
28 import Utilities 25 import Utilities
29
30 from eric5config import getConfig
31 26
32 class ProjectResourcesBrowser(ProjectBaseBrowser): 27 class ProjectResourcesBrowser(ProjectBaseBrowser):
33 """ 28 """
34 A class used to display the resources part of the project. 29 A class used to display the resources part of the project.
35 30

eric ide

mercurial