Lines Matching refs:toc
63 self.toc = [] # Pair headers with text indexes for toc.
64 self.header = '' # Text within header tags for toc.
138 self.toc.append((indent+self.header, self.text.index('insert')))
211 "Display html text, scrollbar, and toc."
218 self.toc = toc = self.toc_menu(text)
224 toc.grid(row=0, column=0, sticky='nw')
230 toc = Menubutton(self, text='TOC')
231 drop = Menu(toc, tearoff=False)
232 for lbl, dex in text.parser.toc:
234 toc['menu'] = drop
235 return toc