Lines Matching refs:self
65 def create_widgets(self):
67 SearchDialogBase.create_widgets(self)
69 self.make_button("Find Next", self.default_command, isdef=True)
71 def default_command(self, event=None):
73 if not self.engine.getprog():
75 self.find_again(self.text)
77 def find_again(self, text):
93 if not self.engine.getpat():
94 self.open(text)
96 if not self.engine.getprog():
98 res = self.engine.search_text(text)
108 self.bell()
114 text.mark_set("insert", self.engine.isback() and first or last)
118 self.bell()
121 def find_selection(self, text):
131 self.engine.setcookedpat(pat)
132 return self.find_again(text)