Lines Matching full:list
42 As with most command-line tools list of options can be obtained with '--help':
593 self.list = tk.Listbox(
600 self.list['foreground'] = 'Blue'
601 self.list['background'] = 'Gray95'
603 self.list['selectbackground'] = self.list['background']
604 self.list['selectforeground'] = self.list['foreground']
605 self.list.pack(fill=tk.BOTH, expand=1, padx=20, ipadx=2)
639 self.list['takefocus'] = 1
640 self.list.focus_set()
672 self.list.itemconfig(idx, {'bg' : self.list['foreground']})
673 self.list.itemconfig(idx, {'fg' : self.list['background']})
678 active_idx = self.list.index(tk.ACTIVE)
694 self.list.activate(idx)
695 self.list.see(idx)
756 Given first MenuNode of nodes list at some level in menu hierarchy,
771 # to be shown in the same list with their texts indented
772 if (n.list is not None
776 self._collect_list_entries(n.list, indent=indent + 1)
782 # Refresh list entries' attributes
789 # at the bottom of the list, even if previously it was in center
790 scroll_offset = self.list.yview()[0]
794 self.list.delete(0, tk.END)
795 self.list.insert(0, *self.shown_entries)
798 self.list.yview_moveto(scroll_offset)
803 self.list.activate(0)
815 if node.list is not None:
816 self.all_entries = self._collect_list_entries(node.list)
847 self.list.focus_set()
865 self.list.focus_set()
903 self.list.focus_set()
932 self.list.focus_set()
984 node = self.kconfig.top_node.list
998 if node.list:
999 node = node.list