QScintilla/ShellWindow.py

changeset 6387
a168b5f26a14
parent 6358
1a274e1ef9c0
child 6576
ea60ea85067a
equal deleted inserted replaced
6386:91dc4fa9bc9c 6387:a168b5f26a14
958 def __showFind(self): 958 def __showFind(self):
959 """ 959 """
960 Private method to display the search widget. 960 Private method to display the search widget.
961 """ 961 """
962 txt = self.__shell.selectedText() 962 txt = self.__shell.selectedText()
963 self.showFind(txt)
964
965 def showFind(self, txt=""):
966 """
967 Public method to display the search widget.
968
969 @param txt text to be shown in the combo
970 @type str
971 """
963 self.__searchWidget.showFind(txt) 972 self.__searchWidget.showFind(txt)
964 973
965 def activeWindow(self): 974 def activeWindow(self):
966 """ 975 """
967 Public method to get a reference to the active shell. 976 Public method to get a reference to the active shell.

eric ide

mercurial