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