Home | History | Annotate | Download | only in idlelib

Lines Matching refs:toc

64         self.toc = []            # pair headers with text indexes for toc
65 self.header = '' # text within header tags for toc
130 self.toc.append((self.header, self.text.index('insert')))
201 "Display html text, scrollbar, and toc."
216 toc = Menubutton(self, text='TOC')
217 drop = Menu(toc, tearoff=False)
218 for lbl, dex in text.parser.toc:
220 toc['menu'] = drop
221 return toc