Project/ProjectInterfacesBrowser.py

changeset 2408
dc3a7c9d8f6e
parent 2302
f29e9405c851
child 2525
8b507a9a2d40
child 2540
f346433ea963
equal deleted inserted replaced
2407:b98cc8ee1142 2408:dc3a7c9d8f6e
21 ProjectBrowserInterfaceType 21 ProjectBrowserInterfaceType
22 from .ProjectBaseBrowser import ProjectBaseBrowser 22 from .ProjectBaseBrowser import ProjectBaseBrowser
23 23
24 from UI.BrowserModel import BrowserFileItem, BrowserClassItem, BrowserMethodItem, \ 24 from UI.BrowserModel import BrowserFileItem, BrowserClassItem, BrowserMethodItem, \
25 BrowserClassAttributeItem 25 BrowserClassAttributeItem
26 from UI.DeleteFilesConfirmationDialog import DeleteFilesConfirmationDialog
27 import UI.PixmapCache 26 import UI.PixmapCache
28 27
29 import Preferences 28 import Preferences
30 import Utilities 29 import Utilities
31 30
384 fn2 = itm.fileName() 383 fn2 = itm.fileName()
385 fullNames.append(fn2) 384 fullNames.append(fn2)
386 fn = self.project.getRelativePath(fn2) 385 fn = self.project.getRelativePath(fn2)
387 files.append(fn) 386 files.append(fn)
388 387
388 from UI.DeleteFilesConfirmationDialog import DeleteFilesConfirmationDialog
389 dlg = DeleteFilesConfirmationDialog(self.parent(), 389 dlg = DeleteFilesConfirmationDialog(self.parent(),
390 self.trUtf8("Delete interfaces"), 390 self.trUtf8("Delete interfaces"),
391 self.trUtf8("Do you really want to delete these interfaces from" 391 self.trUtf8("Do you really want to delete these interfaces from"
392 " the project?"), 392 " the project?"),
393 files) 393 files)

eric ide

mercurial