OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AutoCompleteWindow
(Results
1 - 4
of
4
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
AutoComplete.py
21
from idlelib import
AutoCompleteWindow
46
self.
autocompletewindow
= None
55
return
AutoCompleteWindow
.
AutoCompleteWindow
(self.text)
58
if self.
autocompletewindow
:
59
self.
autocompletewindow
.hide_window()
60
self.
autocompletewindow
= None
89
if self.
autocompletewindow
and self.
autocompletewindow
.is_active():
90
self.
autocompletewindow
.complete(
[
all
...]
AutoCompleteWindow.py
8
HIDE_VIRTUAL_EVENT_NAME = "<<
autocompletewindow
-hide>>"
10
KEYPRESS_VIRTUAL_EVENT_NAME = "<<
autocompletewindow
-keypress>>"
16
KEYRELEASE_VIRTUAL_EVENT_NAME = "<<
autocompletewindow
-keyrelease>>"
22
class
AutoCompleteWindow
:
25
# The widget (Text) on which we place the
AutoCompleteWindow
28
self.
autocompletewindow
= self.listbox = self.scrollbar = None
171
self.
autocompletewindow
= acw = Toplevel(self.widget)
224
acw = self.
autocompletewindow
371
return self.
autocompletewindow
is not None
396
self.
autocompletewindow
.unbind(WINCONFIG_SEQUENCE, self.winconfigid
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
AutoComplete.py
21
from idlelib import
AutoCompleteWindow
46
self.
autocompletewindow
= None
55
return
AutoCompleteWindow
.
AutoCompleteWindow
(self.text)
58
if self.
autocompletewindow
:
59
self.
autocompletewindow
.hide_window()
60
self.
autocompletewindow
= None
89
if self.
autocompletewindow
and self.
autocompletewindow
.is_active():
90
self.
autocompletewindow
.complete(
[
all
...]
AutoCompleteWindow.py
8
HIDE_VIRTUAL_EVENT_NAME = "<<
autocompletewindow
-hide>>"
10
KEYPRESS_VIRTUAL_EVENT_NAME = "<<
autocompletewindow
-keypress>>"
16
KEYRELEASE_VIRTUAL_EVENT_NAME = "<<
autocompletewindow
-keyrelease>>"
22
class
AutoCompleteWindow
:
25
# The widget (Text) on which we place the
AutoCompleteWindow
28
self.
autocompletewindow
= self.listbox = self.scrollbar = None
171
self.
autocompletewindow
= acw = Toplevel(self.widget)
224
acw = self.
autocompletewindow
371
return self.
autocompletewindow
is not None
396
self.
autocompletewindow
.unbind(WINCONFIG_SEQUENCE, self.winconfigid
[
all
...]
Completed in 238 milliseconds