Home
last modified time | relevance | path

Searched refs:listbox (Results 1 – 22 of 22) sorted by relevance

/external/python/cpython2/Lib/idlelib/
DScrolledList.py15 self.listbox = listbox = Listbox(frame, exportselection=0,
18 listbox.configure(options)
19 listbox.pack(expand=1, fill="both")
21 vbar["command"] = listbox.yview
22 listbox["yscrollcommand"] = vbar.set
24 listbox.bind("<ButtonRelease-1>", self.click_event)
25 listbox.bind("<Double-ButtonRelease-1>", self.double_click_event)
27 listbox.bind("<ButtonPress-2>", self.popup_event)
28 listbox.bind("<Control-Button-1>", self.popup_event)
30 listbox.bind("<ButtonPress-3>", self.popup_event)
[all …]
DAutoCompleteWindow.py28 self.autocompletewindow = self.listbox = self.scrollbar = None
116 cursel = int(self.listbox.curselection()[0])
118 self.listbox.see(cursel)
134 self.listbox.configure(selectbackground=self.origselbackground,
137 self.listbox.configure(selectbackground=self.listbox.cget("bg"),
138 selectforeground=self.listbox.cget("fg"))
143 self.listbox.delete(0, END)
145 self.listbox.insert(END, item)
146 self.listbox.select_set(self._binary_search(self.start))
186 self.listbox = listbox = Listbox(acw, yscrollcommand=scrollbar.set,
[all …]
DToolTip.py74 listbox = Listbox(self.tipwindow, background="#ffffe0")
75 listbox.pack()
77 listbox.insert(END, item)
DDebugger.py435 index = self.listbox.index("active")
439 index = self.listbox.index("active")
DNEWS.txt704 - 'syntax' patch adds improved calltips and a new class attribute listbox.
/external/python/cpython3/Lib/idlelib/
Dscrolledlist.py18 self.listbox = listbox = Listbox(frame, exportselection=0,
21 listbox.configure(options)
22 listbox.pack(expand=1, fill="both")
24 vbar["command"] = listbox.yview
25 listbox["yscrollcommand"] = vbar.set
27 listbox.bind("<ButtonRelease-1>", self.click_event)
28 listbox.bind("<Double-ButtonRelease-1>", self.double_click_event)
30 listbox.bind("<ButtonPress-2>", self.popup_event)
31 listbox.bind("<Control-Button-1>", self.popup_event)
33 listbox.bind("<ButtonPress-3>", self.popup_event)
[all …]
Dautocomplete_w.py33 self.autocompletewindow = self.listbox = self.scrollbar = None
121 cursel = int(self.listbox.curselection()[0])
123 self.listbox.see(cursel)
139 self.listbox.configure(selectbackground=self.origselbackground,
142 self.listbox.configure(selectbackground=self.listbox.cget("bg"),
143 selectforeground=self.listbox.cget("fg"))
148 self.listbox.delete(0, END)
150 self.listbox.insert(END, item)
151 self.listbox.select_set(self._binary_search(self.start))
191 self.listbox = listbox = Listbox(acw, yscrollcommand=scrollbar.set,
[all …]
Ddebugger.py438 index = self.listbox.index("active")
442 index = self.listbox.index("active")
DNEWS2x.txt201 - 'syntax' patch adds improved calltips and a new class attribute listbox.
/external/python/cpython2/Demo/tix/samples/
DPanedWin.py42 list.listbox['width'] = 80
43 list.listbox['height'] = 5
48 list.listbox.insert(Tix.END, " 12324 Re: Tkinter is good for your health")
49 list.listbox.insert(Tix.END, "+ 12325 Re: Tkinter is good for your health")
50 …list.listbox.insert(Tix.END, "+ 12326 Re: Tix is even better for your health (Was: Tkinter is good…
51 …list.listbox.insert(Tix.END, " 12327 Re: Tix is even better for your health (Was: Tkinter is good…
52 …list.listbox.insert(Tix.END, "+ 12328 Re: Tix is even better for your health (Was: Tkinter is good…
53 …list.listbox.insert(Tix.END, " 12329 Re: Tix is even better for your health (Was: Tkinter is good…
54 …list.listbox.insert(Tix.END, "+ 12330 Re: Tix is even better for your health (Was: Tkinter is good…
56 text.text['bg'] = list.listbox['bg']
/external/python/cpython2/Demo/tkinter/guido/
Dtkman.py86 self.listbox = Listbox(self.rightsubframe, name='listbox',
89 self.listbox.pack(expand=1, fill=BOTH)
125 self.listbox.bind('<Double-1>', self.listbox_cb)
156 selection = self.listbox.curselection()
158 name = self.listbox.get(selection[0])
179 self.listbox.delete(0, AtEnd())
183 self.listbox.insert(AtEnd(), item)
186 n = self.listbox.size()
188 return self.listbox.get(0)
/external/python/cpython2/Demo/tix/
Dtixwidgets.py199 b1.slistbox.listbox['height'] = 3
201 b2.slistbox.listbox['height'] = 3
502 list.listbox.insert(Tix.END, 'Alabama')
503 list.listbox.insert(Tix.END, 'California')
504 list.listbox.insert(Tix.END, 'Montana')
505 list.listbox.insert(Tix.END, 'New Jersey')
506 list.listbox.insert(Tix.END, 'New York')
507 list.listbox.insert(Tix.END, 'Pennsylvania')
508 list.listbox.insert(Tix.END, 'Washington')
642 list.listbox.insert(Tix.END, " 12324 Re: Tkinter is good for your health")
[all …]
/external/webrtc/webrtc/examples/peerconnection/client/
Dmain_wnd.cc60 void AddListBoxItem(HWND listbox, const std::string& str, LPARAM item_data) { in AddListBoxItem() argument
61 LRESULT index = ::SendMessageA(listbox, LB_ADDSTRING, 0, in AddListBoxItem()
63 ::SendMessageA(listbox, LB_SETITEMDATA, index, item_data); in AddListBoxItem()
/external/grpc-grpc-java/testing/src/main/resources/certs/
Dopenssl.cnf190 # This will be displayed in Netscape's comment listbox.
297 # This will be displayed in Netscape's comment listbox.
/external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_import/
Dtpmtoken_import_openssl.cnf184 # This will be displayed in Netscape's comment listbox.
/external/python/cpython3/Doc/library/
Dtkinter.tix.rst118 choice by either typing in the entry subwidget or selecting from the listbox
355 :class:`TList` widget are similar to the entries in the Tk listbox widget. The
Dtkinter.ttk.rst328 | height | Specifies the height of the pop-down listbox, in rows. |
347 | | drop-down listbox. |
/external/python/cpython2/Doc/library/
Dtix.rst130 choice by either typing in the entry subwidget or selecting from the listbox
367 :class:`TList` widget are similar to the entries in the Tk listbox widget. The
Dttk.rst316 | height | Specifies the height of the pop-down listbox, in rows. |
336 | | drop-down listbox. |
/external/ImageMagick/www/assets/
Dmagick.css6 …pe=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow…
/external/python/cpython2/Misc/
DHISTORY11318 - Added new listbox and canvas methods: {xview,yview}_{scroll,moveto}.)
/external/python/cpython3/Misc/
DHISTORY28697 - Added new listbox and canvas methods: {xview,yview}_{scroll,moveto}.)