Beispiel #1
0
 def find_event(self, event=None):
     if not self.tag_ranges("sel"):
         found = self.tag_ranges("found")
         if found:
             self.tag_add("sel", found[0], found[1])
         else:
             self.tag_add("sel", "1.0", "1.0+1c")
     SearchDialog.find(self)
     return "break"
Beispiel #2
0
 def find_again_event(self, event=None):
     SearchDialog.find_again(self)
     return "break"
Beispiel #3
0
 def find_selection_event(self, event=None):
     """Perform find selection operation."""
     SearchDialog.find_selection(self)
     return "break"
Beispiel #4
0
 def find_again_event(self, event=None):
     """Perform find again operation."""
     SearchDialog.find_again(self)
     return "break"
Beispiel #5
0
 def find_selection_event(self, event=None):
     SearchDialog.find_selection(self)
     return "break"
Beispiel #6
0
 def find_selection_event(self, event=None):
     SearchDialog.find_selection(self)
     return "break"
Beispiel #7
0
 def find_again_event(self, event=None):
     SearchDialog.find_again(self)
     return "break"
 def find_selection_event(self, event):
     SearchDialog.find_selection(self.text)
     return 'break'
 def find_again_event(self, event):
     SearchDialog.find_again(self.text)
     return 'break'
Beispiel #10
0
 def setUp(self):
     self.engine = se.SearchEngine(self.root)
     self.dialog = sd.SearchDialog(self.root, self.engine)
     self.text = tk.Text(self.root)
     self.text.insert('1.0', 'Hello World!')