• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/progmodes/

Lines Matching +defs:menu +defs:item

36 ;; and added a menu. Brian D. Carlstrom <bdc@ai.mit.edu> combined the IRIX
126 (defun gud-tool-bar-item-visible-no-fringe ()
138 (easy-mmode-defmap gud-menu-map
140 ([tooltips] menu-item "Toggle GUD tooltips" gud-tooltip-mode
148 ([run] menu-item "Run" gud-run
151 ([go] menu-item (if gdb-active-process "Continue" "Run") gud-go
154 ([stop] menu-item "Stop" gud-stop-subjob
158 ([until] menu-item "Continue to selection" gud-until
161 (gud-tool-bar-item-visible-no-fringe)))
162 ([remove] menu-item "Remove Breakpoint" gud-remove
164 :visible (gud-tool-bar-item-visible-no-fringe))
165 ([tbreak] menu-item "Temporary Breakpoint" gud-tbreak
169 ([break] menu-item "Set Breakpoint" gud-break
171 :visible (gud-tool-bar-item-visible-no-fringe))
172 ([up] menu-item "Up Stack" gud-up
176 ([down] menu-item "Down Stack" gud-down
180 ([pp] menu-item "Print S-expression" gud-pp
187 ([print*] menu-item "Print Dereference" gud-pstar
190 ([print] menu-item "Print Expression" gud-print
192 ([watch] menu-item "Watch Expression" gud-watch
195 ([finish] menu-item "Finish Function" gud-finish
199 ([stepi] menu-item "Step Instruction" gud-stepi
202 ([nexti] menu-item "Next Instruction" gud-nexti
205 ([step] menu-item "Step Line" gud-step
207 ([next] menu-item "Next Line" gud-next
209 ([cont] menu-item "Continue" gud-cont
217 `(([menu-bar debug] . ("Gud" . ,gud-menu-map)))
218 ;; Get tool bar like functionality from the menu bar on a text only
221 `(([menu-bar down]
223 ([menu-bar up]
225 ([menu-bar finish]
227 ([menu-bar step]
229 ([menu-bar next]
231 ([menu-bar until] menu-item
234 ([menu-bar cont] menu-item
237 ([menu-bar run] menu-item
240 ([menu-bar go] menu-item
244 ([menu-bar stop] menu-item
248 ([menu-bar print]
250 ([menu-bar tools] . undefined)
251 ([menu-bar buffer] . undefined)
252 ([menu-bar options] . undefined)
253 ([menu-bar edit] . undefined)
254 ([menu-bar file] . undefined))))
289 (tool-bar-local-item-from-menu
315 ;; Copy `gud-minor-mode' to the found buffer to turn on the menu.
419 (defun gud-speedbar-item-info ()
439 (speedbar-add-expansion-list '("GUD" gud-speedbar-menu-items
445 '("GUD" (speedbar-item-info . gud-speedbar-item-info)
448 (defvar gud-speedbar-menu-items
462 "Additional menu items to add to the speedbar frame.")
2147 "Parse the classpath list and convert each item to an absolute pathname."