Lines Matching full:selected
28 # *any* objects to be displayed and selected, not just strings.
55 # - 'selected' option to radiolist dialog; clicking "Cancel" is now
159 The selected object is returned, or None if the dialog was canceled.
174 Returns a list of the selected objects.
175 Returns an empty list if nothing was selected.
198 if c == 0: # Nothing was selected
203 def radiolist(self, text, height=15, width=54, list=[], selected=0): argument
205 Return the selected object.
206 Returns empty string if no choice was selected.
208 selected -- the selected item (must be between 1 and len(list)
214 if selected:
215 i, item, tmp = triples[selected - 1]
216 triples[selected - 1] = (i, item, 'on')
328 "Peanut Butter and Jelly", "Grilled cheese"], selected=4)