Lines Matching refs:acw
185 self.autocompletewindow = acw = Toplevel(self.widget)
186 acw.withdraw()
187 acw.wm_overrideredirect(1)
190 acw.tk.call("::tk::unsupported::MacWindowStyle", "style", acw._w,
194 self.scrollbar = scrollbar = Scrollbar(acw, orient=VERTICAL)
195 self.listbox = listbox = Listbox(acw, yscrollcommand=scrollbar.set,
204 #acw.update_idletasks() # Need for tk8.6.8 on macOS: #40128.
205 acw.lift() # work around bug in Tk 8.5.18+ (issue #24570)
212 self.hideaid = acw.bind(HIDE_VIRTUAL_EVENT_NAME, self.hide_event)
214 acw.event_add(HIDE_VIRTUAL_EVENT_NAME, HIDE_FOCUS_OUT_SEQUENCE)
228 self.winconfigid = acw.bind(WINCONFIG_SEQUENCE, self.winconfig_event)
243 # catch potential TclError exceptions when accessing acw. See: bpo-41611.
249 acw = self.autocompletewindow
256 acw.update()
257 acw_width, acw_height = acw.winfo_width(), acw.winfo_height()
263 # place acw below current line
266 # place acw above current line
268 acw.wm_geometry("+%d+%d" % (new_x, new_y))
269 acw.deiconify()
270 acw.update_idletasks()
279 acw.unbind(WINCONFIG_SEQUENCE, self.winconfigid)
294 # See issue 734176, when user click on menu, acw.focus_get()
304 # acw.focus_get() when click on acw, otherwise it will return
409 # two tabs in a row; insert current selection and close acw