eric7/UI/Browser.py

branch
eric7
changeset 8614
4a3a68e51b92
parent 8358
144a6b854f70
child 8881
54e42bc2437a
equal deleted inserted replaced
8613:2af21036b293 8614:4a3a68e51b92
682 Private slot to handle the Find in directory popup menu entry. 682 Private slot to handle the Find in directory popup menu entry.
683 """ 683 """
684 index = self.currentIndex() 684 index = self.currentIndex()
685 searchDir = self.model().item(index).dirName() 685 searchDir = self.model().item(index).dirName()
686 686
687 ericApp().getObject("UserInterface").showFindFilesDialog( 687 ericApp().getObject("UserInterface").showFindFilesWidget(
688 searchDir=searchDir) 688 searchDir=searchDir)
689 689
690 def __replaceInDirectory(self): 690 def __replaceInDirectory(self):
691 """ 691 """
692 Private slot to handle the Find&Replace in directory popup menu entry. 692 Private slot to handle the Find&Replace in directory popup menu entry.
693 """ 693 """
694 index = self.currentIndex() 694 index = self.currentIndex()
695 searchDir = self.model().item(index).dirName() 695 searchDir = self.model().item(index).dirName()
696 696
697 ericApp().getObject("UserInterface").showReplaceFilesDialog( 697 ericApp().getObject("UserInterface").showReplaceFilesWidget(
698 searchDir=searchDir) 698 searchDir=searchDir)
699 699
700 def handleProgramChange(self, fn): 700 def handleProgramChange(self, fn):
701 """ 701 """
702 Public slot to handle the programChange signal. 702 Public slot to handle the programChange signal.

eric ide

mercurial