Searched refs:listbox (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython2/Lib/idlelib/ |
D | ScrolledList.py | 15 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 …]
|
D | AutoCompleteWindow.py | 28 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 …]
|
D | ToolTip.py | 74 listbox = Listbox(self.tipwindow, background="#ffffe0") 75 listbox.pack() 77 listbox.insert(END, item)
|
D | Debugger.py | 435 index = self.listbox.index("active") 439 index = self.listbox.index("active")
|
D | NEWS.txt | 704 - 'syntax' patch adds improved calltips and a new class attribute listbox.
|
/external/python/cpython2/Demo/tix/samples/ |
D | PanedWin.py | 42 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/ |
D | tkman.py | 86 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/ |
D | tixwidgets.py | 199 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/ |
D | main_wnd.cc | 60 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/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_import/ |
D | tpmtoken_import_openssl.cnf | 184 # This will be displayed in Netscape's comment listbox.
|
/external/python/cpython2/Doc/library/ |
D | tix.rst | 130 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
|
D | ttk.rst | 316 | height | Specifies the height of the pop-down listbox, in rows. | 336 | | drop-down listbox. |
|
/external/python/cpython2/Misc/ |
D | HISTORY | 11318 - Added new listbox and canvas methods: {xview,yview}_{scroll,moveto}.)
|