More changes for itcl.
[bpt/emacs.git] / lisp / help-macro.el
CommitLineData
3aee11cd 1;;; help-macro.el --- Makes command line help such as help-for-help
465fceed 2
d733c5ec 3;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
465fceed
ER
4
5;; Author: Lynn Slater <lrs@indetech.com>
6;; Created: : Mon Oct 1 11:42:39 1990
7;; Adapted-By: ESR
465fceed
ER
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to
23;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24
25;;; Commentary:
26;;
27;; This file supplies the macro make-help-screen which constructs
28;; single character dispatching with browsable help such as that provided
29;; by help-for-help. This can be used to make many modes easier to use; for
30;; example, the Gnu Emacs Empire Tool uses this for every "nested" mode map
31;; called from the main mode map.
32
3aee11cd
ER
33;; The name of this package was changed from help-screen.el to
34;; help-macro.el in order to fit in a 14-character limit.
35
465fceed
ER
36;;-> *********************** Example of use *********************************
37
38;;->(make-help-screen help-for-empire-redistribute-map
39;;-> "c:civ m:mil p:population f:food ?"
40;;-> "You have discovered the GEET redistribution commands
41;;-> From here, you can use the following options:
42;;->
43;;->c Redistribute civs from overfull sectors into connected underfull ones
44;;-> The functions typically named by empire-ideal-civ-fcn control
45;;-> based in part on empire-sector-civ-threshold
46;;->m Redistribute military using levels given by empire-ideal-mil-fcn
47;;->p Redistribute excess population to highways for max pop growth
48;;-> Excess is any sector so full babies will not be born.
49;;->f Even out food on highways to highway min and leave levels
50;;-> This is good to pump max food to all warehouses/dist pts
51;;->
52;;->
53;;->Use \\[help-for-empire-redistribute-map] for help on redistribution.
54;;->Use \\[help-for-empire-extract-map] for help on data extraction.
55;;->Please use \\[describe-key] to find out more about any of the other keys."
56;;-> empire-shell-redistribute-map)
57
58;;-> (define-key c-mp "\C-h" 'help-for-empire-redistribute-map)
59;;-> (define-key c-mp help-character 'help-for-empire-redistribute-map)
60
61;;; Change Log:
62;;
63;; 22-Jan-1991 Lynn Slater x2048
64;; Last Modified: Mon Oct 1 11:43:52 1990 #3 (Lynn Slater)
65;; documented better
66
67;;; Code:
68
dd6a74ce 69(provide 'help-macro)
465fceed
ER
70(require 'backquote)
71
d189e346
RS
72;;;###autoload
73(defvar three-step-help nil
74 "*Non-nil means give more info about Help command in three steps.
75The three steps are simple prompt, prompt with all options,
76and window listing and describing the options.
77A value of nil means skip the middle step, so that
78\\[help-command] \\[help-command] gives the window that lists the options.")
79
465fceed 80(defmacro make-help-screen (fname help-line help-text helped-map)
657a7909
RS
81 "Construct help-menu function name FNAME.
82When invoked, FNAME shows HELP-LINE and reads a command using HELPED-MAP.
e31e7d37 83If the command is the help character, FNAME displays HELP-TEXT
657a7909
RS
84and continues trying to read a command using HELPED-MAP.
85When FNAME finally does get a command, it executes that command
86and then returns."
465fceed
ER
87 (` (defun (, fname) ()
88 (, help-text)
89 (interactive)
90 (let ((line-prompt
ee18da58 91 (substitute-command-keys (, help-line))))
d189e346
RS
92 (if three-step-help
93 (message line-prompt))
0d4720b0 94 (let* ((help-screen (documentation (quote (, fname))))
aaa99cbe
RS
95 ;; We bind overriding-local-map for very small
96 ;; sections, *excluding* where we switch buffers
97 ;; and where we execute the chosen help command.
98 (local-map (make-sparse-keymap))
ee18da58 99 (minor-mode-map-alist nil)
8d2b0a2d
RS
100 (prev-frame (selected-frame))
101 config new-frame key char)
c968e96c
RS
102 (unwind-protect
103 (progn
aaa99cbe
RS
104 (setcdr local-map (, helped-map))
105 (define-key local-map [t] 'undefined)
d189e346 106 (if three-step-help
8902ae9e
RS
107 (progn
108 (setq key (let ((overriding-local-map local-map))
109 (read-key-sequence nil)))
110 ;; Make the HELP key translate to C-h.
111 (if (lookup-key function-key-map key)
112 (setq key (lookup-key function-key-map key)))
113 (setq char (aref key 0)))
d189e346 114 (setq char ??))
c968e96c
RS
115 (if (or (eq char ??) (eq char help-char))
116 (progn
117 (setq config (current-window-configuration))
118 (switch-to-buffer-other-window "*Help*")
8fdae34a
RS
119 (and (fboundp 'make-frame)
120 (not (eq (window-frame (selected-window))
121 prev-frame))
122 (setq new-frame (window-frame (selected-window))
123 config nil))
c968e96c 124 (erase-buffer)
657a7909 125 (insert help-screen)
05d688cf 126 (help-mode)
c968e96c 127 (goto-char (point-min))
d189e346 128 (while (or (memq char (cons help-char '(?? ?\C-v ?\ ?\177 delete ?\M-v)))
8d2b0a2d 129 (eq (car-safe char) 'switch-frame)
ee18da58 130 (equal key "\M-v"))
657a7909
RS
131 (condition-case nil
132 (progn
8d2b0a2d
RS
133 (if (eq (car-safe char) 'switch-frame)
134 (handle-switch-frame char))
657a7909
RS
135 (if (memq char '(?\C-v ?\ ))
136 (scroll-up))
d189e346 137 (if (or (memq char '(?\177 ?\M-v delete))
ee18da58 138 (equal key "\M-v"))
657a7909
RS
139 (scroll-down)))
140 (error nil))
aaa99cbe
RS
141 (let ((cursor-in-echo-area t)
142 (overriding-local-map local-map))
d189e346
RS
143 (setq key (read-key-sequence
144 (format "Type one of the options listed%s: "
145 (if (pos-visible-in-window-p
146 (point-max))
147 "" " or Space to scroll")))
1ca576b5 148 char (aref key 0))))))
657a7909
RS
149 ;; Mouse clicks are not part of the help feature,
150 ;; so reexecute them in the standard environment.
151 (if (listp char)
152 (setq unread-command-events
153 (cons char unread-command-events)
154 config nil)
7ffbe7e2 155 (let ((defn (lookup-key local-map key)))
657a7909
RS
156 (if defn
157 (progn
158 (if config
159 (progn
160 (set-window-configuration config)
161 (setq config nil)))
8d2b0a2d
RS
162 (if new-frame
163 (progn (iconify-frame new-frame)
164 (setq new-frame nil)))
657a7909 165 (call-interactively defn))
c968e96c 166 (ding)))))
8d2b0a2d 167 (if new-frame (iconify-frame new-frame))
c968e96c
RS
168 (if config
169 (set-window-configuration config))))))
465fceed
ER
170 ))
171
3aee11cd 172;;; help-macro.el
465fceed 173