Lines Matching refs:window
9 def add(self, window): argument
10 window.after_idle(self.call_callbacks)
11 self.dict[str(window)] = window
13 def delete(self, window): argument
15 del self.dict[str(window)]
24 window = self.dict[key]
26 title = window.get_title()
29 list.append((title, window))
31 for title, window in list:
32 menu.add_command(label=title, command=window.wakeup)
73 def update_windowlist_registry(self, window): argument