Lines Matching refs:menu
16 Select a demoscript from the example menu.
22 size can be changed from the menu and with Control/Command '-'/'+'.
43 While the EVENTLOOP is running, the examples menu is disabled.
137 # so that our menu bar appears.
156 self.mBar.add_cascade(menu=self.makeLoadDemoMenu(self.mBar),
158 self.mBar.add_cascade(menu=self.makeFontMenu(self.mBar),
160 self.mBar.add_cascade(menu=self.makeHelpMenu(self.mBar),
162 root['menu'] = self.mBar
201 "Choose example from menu", "black")
295 menu = Menu(master)
300 menu.add_command(label=entry, underline=0,
302 return menu
305 menu = Menu(master)
306 menu.add_command(label="Decrease (C-'-')", command=self.decrease_size,
308 menu.add_command(label="Increase (C-'+')", command=self.increase_size,
310 menu.add_separator()
315 menu.add_command(label=str(size), underline=0,
317 return menu
320 menu = Menu(master)
325 menu.add_command(label=help_label, font=menufont, command=show)
326 return menu