src/eric7/UI/UserInterface.py

branch
eric7
changeset 11056
cef972a17097
parent 11045
72202235e0bb
child 11063
bb05d1db9286
child 11090
f5f5f5803935
equal deleted inserted replaced
11055:e68bcb2b5ec1 11056:cef972a17097
6579 from eric7.IconEditor.IconEditorWindow import IconEditorWindow 6579 from eric7.IconEditor.IconEditorWindow import IconEditorWindow
6580 6580
6581 dlg = IconEditorWindow(fn, self, fromEric=True, project=self.project) 6581 dlg = IconEditorWindow(fn, self, fromEric=True, project=self.project)
6582 dlg.show() 6582 dlg.show()
6583 6583
6584 @pyqtSlot()
6585 @pyqtSlot(str) 6584 @pyqtSlot(str)
6586 def __showPixmap(self, fn): 6585 def __showPixmap(self, fn):
6587 """ 6586 """
6588 Private slot to show a pixmap in a dialog. 6587 Private slot to show a pixmap in a dialog.
6589 6588
6594 6593
6595 dlg = PixmapDiagram(fn, self) 6594 dlg = PixmapDiagram(fn, self)
6596 if dlg.getStatus(): 6595 if dlg.getStatus():
6597 dlg.show() 6596 dlg.show()
6598 6597
6599 @pyqtSlot()
6600 @pyqtSlot(str) 6598 @pyqtSlot(str)
6601 def __showSvg(self, fn): 6599 def __showSvg(self, fn):
6602 """ 6600 """
6603 Private slot to show a SVG file in a dialog. 6601 Private slot to show a SVG file in a dialog.
6604 6602

eric ide

mercurial