Mercurial > emacs
annotate lisp/ehelp.el @ 1717:aa7d6d57504b
* frame.h (struct frame): New fields `can_have_scrollbars' and
`has_vertical_scrollbars'.
(FRAME_CAN_HAVE_SCROLLBARS, FRAME_HAS_VERTICAL_SCROLLBARS): New
accessors, for both the MULTI_FRAME and non-MULTI_FRAME.
(VERTICAL_SCROLLBAR_WIDTH, WINDOW_VERTICAL_SCROLLBAR,
WINDOW_VERTICAL_SCROLLBAR_COLUMN,
WINDOW_VERTICAL_SCROLLBAR_HEIGHT): New macros.
* window.h (struct window): New field `vertical_scrollbar'.
* xterm.h (struct x_display): vertical_scrollbars,
judge_timestamp, vertical_scrollbar_extra: New fields.
(struct scrollbar): New struct.
(VERTICAL_SCROLLBAR_PIXEL_WIDTH, VERTICAL_SCROLLBAR_PIXEL_HEIGHT,
VERTICAL_SCROLLBAR_LEFT_BORDER, VERTICAL_SCROLLBAR_RIGHT_BORDER,
VERTICAL_SCROLLBAR_TOP_BORDER, VERTICAL_SCROLLBAR_BOTTOM_BORDER,
CHAR_TO_PIXEL_WIDTH, CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_WIDTH,
PIXEL_TO_CHAR_HEIGHT): New accessors and macros.
* frame.c (make_frame): Initialize the `can_have_scrollbars' and
`has_vertical_scrollbars' fields of the frame.
* term.c (term_init): Note that TERMCAP terminals don't support
scrollbars.
(mouse_position_hook): Document new args.
(set_vertical_scrollbar_hook, condemn_scrollbars_hook,
redeem_scrollbar_hook, judge_scrollbars_hook): New hooks.
* termhooks.h: Declare and document them.
(enum scrollbar_part): New type.
(struct input_event): Describe the new form of the scrollbar_click
event type. Change `part' from a Lisp_Object to an enum
scrollbar_part. Add a new field `scrollbar'.
* keyboard.c (kbd_buffer_get_event): Pass appropriate new
parameters to *mouse_position_hook, and make_lispy_movement.
* xfns.c (x_set_vertical_scrollbar): New function.
(x_figure_window_size): Use new macros to calculate frame size.
(Fx_create_frame): Note that X Windows frames do support scroll
bars. Default to "yes".
* xterm.c: #include <X11/cursorfont.h> and "window.h".
(x_vertical_scrollbar_cursor): New variable.
(x_term_init): Initialize it.
(last_mouse_bar, last_mouse_bar_frame, last_mouse_part,
last_mouse_scroll_range_start, last_mouse_scroll_range_end): New
variables.
(XTmouse_position): Use them to return scrollbar movement events.
Take new arguments, for that purpose.
(x_window_to_scrollbar, x_scrollbar_create,
x_scrollbar_set_handle, x_scrollbar_remove, x_scrollbar_move,
XTset_scrollbar, XTcondemn_scrollbars, XTredeem_scrollbar,
XTjudge_scrollbars, x_scrollbar_expose,
x_scrollbar_background_expose, x_scrollbar_handle_click,
x_scrollbar_handle_motion): New functions to implement scrollbars.
(x_term_init): Set the termhooks.h hooks to point to them.
(x_set_window_size): Use new macros to calculate frame size. Set
vertical_scrollbar_extra field.
(x_make_frame_visible): Use the frame accessor
FRAME_HAS_VERTICAL_SCROLLBARS to decide if we need to map the
frame's subwindows as well.
(XTread_socket): Use new size-calculation macros from xterm.h when
processing ConfigureNotify events.
(x_wm_set_size_hint): Use PIXEL_TO_CHAR_WIDTH and
PIXEL_TO_CHAR_HEIGHT macros.
* ymakefile (xdisp.o): This now depends on termhooks.h.
(xterm.o): This now depends on window.h.
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Thu, 24 Dec 1992 06:17:18 +0000 |
| parents | e198e33a4c09 |
| children | 04fb1d3d6992 |
| rev | line source |
|---|---|
|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; ehelp.el --- bindings for electric-help mode |
|
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
|
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
3 ;; Copyright (C) 1986 Free Software Foundation, Inc. |
|
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
5 ;; Maintainer: FSF |
|
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: help, extensions |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
7 |
| 36 | 8 ;; This file is part of GNU Emacs. |
| 9 | |
| 10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 11 ;; it under the terms of the GNU General Public License as published by | |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
| 36 | 13 ;; any later version. |
| 14 | |
| 15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 18 ;; GNU General Public License for more details. | |
| 19 | |
| 20 ;; You should have received a copy of the GNU General Public License | |
| 21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
| 22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
| 23 | |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
24 ;;; Code: |
|
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
25 |
| 36 | 26 (require 'electric) |
| 27 (defvar electric-help-map () | |
| 200 | 28 "Keymap defining commands available in `electric-help-mode'.") |
| 36 | 29 |
| 30 (put 'electric-help-undefined 'suppress-keymap t) | |
| 31 (if electric-help-map | |
| 32 () | |
| 33 (let ((map (make-keymap))) | |
| 923 | 34 (fillarray (car (cdr map)) 'electric-help-undefined) |
| 36 | 35 (define-key map (char-to-string meta-prefix-char) (copy-keymap map)) |
| 36 (define-key map (char-to-string help-char) 'electric-help-help) | |
| 37 (define-key map "?" 'electric-help-help) | |
| 38 (define-key map " " 'scroll-up) | |
| 39 (define-key map "\^?" 'scroll-down) | |
| 40 (define-key map "." 'beginning-of-buffer) | |
| 41 (define-key map "<" 'beginning-of-buffer) | |
| 42 (define-key map ">" 'end-of-buffer) | |
| 43 ;(define-key map "\C-g" 'electric-help-exit) | |
| 44 (define-key map "q" 'electric-help-exit) | |
| 45 (define-key map "Q" 'electric-help-exit) | |
| 46 ;;a better key than this? | |
| 47 (define-key map "r" 'electric-help-retain) | |
| 48 | |
| 49 (setq electric-help-map map))) | |
| 50 | |
| 51 (defun electric-help-mode () | |
| 200 | 52 "`with-electric-help' temporarily places its buffer in this mode. |
| 53 \(On exit from `with-electric-help', the buffer is put in `default-major-mode'.)" | |
| 36 | 54 (setq buffer-read-only t) |
| 55 (setq mode-name "Help") | |
| 56 (setq major-mode 'help) | |
| 57 (setq mode-line-buffer-identification '(" Help: %b")) | |
| 58 (use-local-map electric-help-map) | |
| 59 ;; this is done below in with-electric-help | |
| 60 ;(run-hooks 'electric-help-mode-hook) | |
| 61 ) | |
| 62 | |
| 63 (defun with-electric-help (thunk &optional buffer noerase) | |
| 200 | 64 "Arguments are THUNK &optional BUFFER NOERASE. BUFFER defaults to \"*Help*\" |
| 65 THUNK is a function of no arguments which is called to initialize | |
| 66 the contents of BUFFER. BUFFER will be erased before THUNK is called unless | |
| 67 NOERASE is non-nil. THUNK will be called with `standard-output' bound to | |
| 68 the buffer specified by BUFFER | |
| 36 | 69 |
| 70 After THUNK has been called, this function \"electrically\" pops up a window | |
| 71 in which BUFFER is displayed and allows the user to scroll through that buffer | |
| 72 in electric-help-mode. | |
| 200 | 73 When the user exits (with `electric-help-exit', or otherwise) the help |
| 74 buffer's window disappears (i.e., we use `save-window-excursion') | |
| 75 BUFFER is put into `default-major-mode' (or `fundamental-mode') when we exit" | |
| 36 | 76 (setq buffer (get-buffer-create (or buffer "*Help*"))) |
| 77 (let ((one (one-window-p t)) | |
| 160 | 78 (config (current-window-configuration)) |
| 79 (bury nil)) | |
| 80 (unwind-protect | |
| 81 (save-excursion | |
| 82 (if one (goto-char (window-start (selected-window)))) | |
| 83 (let ((pop-up-windows t)) | |
| 84 (pop-to-buffer buffer)) | |
| 85 (save-excursion | |
| 86 (set-buffer buffer) | |
| 87 (electric-help-mode) | |
| 88 (setq buffer-read-only nil) | |
| 89 (or noerase (erase-buffer))) | |
| 90 (let ((standard-output buffer)) | |
| 91 (if (not (funcall thunk)) | |
| 92 (progn | |
| 93 (set-buffer buffer) | |
| 94 (set-buffer-modified-p nil) | |
| 95 (goto-char (point-min)) | |
| 96 (if one (shrink-window-if-larger-than-buffer (selected-window)))))) | |
| 97 (set-buffer buffer) | |
| 98 (run-hooks 'electric-help-mode-hook) | |
| 99 (if (eq (car-safe (electric-help-command-loop)) | |
| 100 'retain) | |
| 101 (setq config (current-window-configuration)) | |
| 102 (setq bury t))) | |
| 103 (message "") | |
| 104 (set-buffer buffer) | |
| 105 (setq buffer-read-only nil) | |
| 106 (condition-case () | |
| 107 (funcall (or default-major-mode 'fundamental-mode)) | |
| 108 (error nil)) | |
| 109 (set-window-configuration config) | |
| 110 (if bury | |
| 111 (progn | |
| 112 ;;>> Perhaps this shouldn't be done. | |
| 113 ;; so that when we say "Press space to bury" we mean it | |
| 114 (replace-buffer-in-windows buffer) | |
| 115 ;; must do this outside of save-window-excursion | |
| 116 (bury-buffer buffer)))))) | |
| 36 | 117 |
| 118 (defun electric-help-command-loop () | |
| 119 (catch 'exit | |
| 120 (if (pos-visible-in-window-p (point-max)) | |
| 121 (progn (message "<<< Press Space to bury the help buffer >>>") | |
|
1608
e198e33a4c09
* bytecomp.el: Declare unread-command-char an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
923
diff
changeset
|
122 (if (= (setq unread-command-event (read-char)) ?\ ) |
|
e198e33a4c09
* bytecomp.el: Declare unread-command-char an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
923
diff
changeset
|
123 (progn (setq unread-command-event nil) |
| 36 | 124 (throw 'exit t))))) |
| 125 (let (up down both neither | |
| 126 (standard (and (eq (key-binding " ") | |
| 127 'scroll-up) | |
| 128 (eq (key-binding "\^?") | |
| 129 'scroll-down) | |
| 130 (eq (key-binding "Q") | |
| 131 'electric-help-exit) | |
| 132 (eq (key-binding "q") | |
| 133 'electric-help-exit)))) | |
| 134 (Electric-command-loop | |
| 135 'exit | |
| 136 (function (lambda () | |
| 137 (let ((min (pos-visible-in-window-p (point-min))) | |
| 138 (max (pos-visible-in-window-p (point-max)))) | |
| 139 (cond ((and min max) | |
| 140 (cond (standard "Press Q to exit ") | |
| 141 (neither) | |
| 142 (t (setq neither (substitute-command-keys "Press \\[scroll-up] to exit "))))) | |
| 143 (min | |
| 144 (cond (standard "Press SPC to scroll, Q to exit ") | |
| 145 (up) | |
| 146 (t (setq up (substitute-command-keys "Press \\[scroll-up] to scroll; \\[electric-help-exit] to exit "))))) | |
| 147 (max | |
| 148 (cond (standard "Press DEL to scroll back, Q to exit ") | |
| 149 (down) | |
| 150 (t (setq down (substitute-command-keys "Press \\[scroll-down] to scroll back, \\[scroll-up] to exit "))))) | |
| 151 (t | |
| 152 (cond (standard "Press SPC to scroll, DEL to scroll back, Q to exit ") | |
| 153 (both) | |
| 154 (t (setq both (substitute-command-keys "Press \\[scroll-up] to scroll, \\[scroll-down] to scroll back, \\[electric-help-exit] to exit "))))))))) | |
| 155 t)))) | |
| 156 | |
| 157 | |
| 158 | |
| 159 ;(defun electric-help-scroll-up (arg) | |
| 160 ; ">>>Doc" | |
| 161 ; (interactive "P") | |
| 162 ; (if (and (null arg) (pos-visible-in-window-p (point-max))) | |
| 163 ; (electric-help-exit) | |
| 164 ; (scroll-up arg))) | |
| 165 | |
| 166 (defun electric-help-exit () | |
| 167 ">>>Doc" | |
| 168 (interactive) | |
| 169 (throw 'exit t)) | |
| 170 | |
| 171 (defun electric-help-retain () | |
| 200 | 172 "Exit `electric-help', retaining the current window/buffer configuration. |
| 36 | 173 \(The *Help* buffer will not be selected, but \\[switch-to-buffer-other-window] RET |
| 174 will select it.)" | |
| 175 (interactive) | |
| 176 (throw 'exit '(retain))) | |
| 177 | |
| 178 | |
| 179 (defun electric-help-undefined () | |
| 180 (interactive) | |
| 181 (error "%s is undefined -- Press %s to exit" | |
| 182 (mapconcat 'single-key-description (this-command-keys) " ") | |
| 183 (if (eq (key-binding "Q") 'electric-help-exit) | |
| 184 "Q" | |
| 185 (substitute-command-keys "\\[electric-help-exit]")))) | |
| 186 | |
| 187 | |
| 188 ;>>> this needs to be hairified (recursive help, anybody?) | |
| 189 (defun electric-help-help () | |
| 190 (interactive) | |
| 191 (if (and (eq (key-binding "Q") 'electric-help-exit) | |
| 192 (eq (key-binding " ") 'scroll-up) | |
| 193 (eq (key-binding "\^?") 'scroll-down)) | |
| 194 (message "SPC scrolls forward, DEL scrolls back, Q exits and burys help buffer") | |
| 195 ;; to give something for user to look at while slow substitute-cmd-keys | |
| 196 ;; grinds away | |
| 197 (message "Help...") | |
| 198 (message "%s" (substitute-command-keys "\\[scroll-up] scrolls forward, \\[scroll-down] scrolls back, \\[electric-help-exit] exits."))) | |
| 199 (sit-for 2)) | |
| 200 | |
| 201 | |
| 202 (defun electric-helpify (fun) | |
| 203 (let ((name "*Help*")) | |
| 204 (if (save-window-excursion | |
| 205 ;; kludge-o-rama | |
| 206 (let* ((p (symbol-function 'print-help-return-message)) | |
| 207 (b (get-buffer name)) | |
| 208 (m (buffer-modified-p b))) | |
| 209 (and b (not (get-buffer-window b)) | |
| 210 (setq b nil)) | |
| 211 (unwind-protect | |
| 212 (progn | |
| 213 (message "%s..." (capitalize (symbol-name fun))) | |
| 214 ;; with-output-to-temp-buffer marks the buffer as unmodified. | |
| 215 ;; kludging excessively and relying on that as some sort | |
| 216 ;; of indication leads to the following abomination... | |
| 217 ;;>> This would be doable without such icky kludges if either | |
| 218 ;;>> (a) there were a function to read the interactive | |
| 219 ;;>> args for a command and return a list of those args. | |
| 220 ;;>> (To which one would then just apply the command) | |
| 221 ;;>> (The only problem with this is that interactive-p | |
| 222 ;;>> would break, but that is such a misfeature in | |
| 223 ;;>> any case that I don't care) | |
| 224 ;;>> It is easy to do this for emacs-lisp functions; | |
| 225 ;;>> the only problem is getting the interactive spec | |
| 226 ;;>> for subrs | |
| 227 ;;>> (b) there were a function which returned a | |
| 228 ;;>> modification-tick for a buffer. One could tell | |
| 229 ;;>> whether a buffer had changed by whether the | |
| 230 ;;>> modification-tick were different. | |
| 231 ;;>> (Presumably there would have to be a way to either | |
| 232 ;;>> restore the tick to some previous value, or to | |
| 233 ;;>> suspend updating of the tick in order to allow | |
| 234 ;;>> things like momentary-string-display) | |
| 235 (and b | |
| 236 (save-excursion | |
| 237 (set-buffer b) | |
| 238 (set-buffer-modified-p t))) | |
| 239 (fset 'print-help-return-message 'ignore) | |
| 240 (call-interactively fun) | |
| 241 (and (get-buffer name) | |
| 242 (get-buffer-window (get-buffer name)) | |
| 243 (or (not b) | |
| 244 (not (eq b (get-buffer name))) | |
| 245 (not (buffer-modified-p b))))) | |
| 246 (fset 'print-help-return-message p) | |
| 247 (and b (buffer-name b) | |
| 248 (save-excursion | |
| 249 (set-buffer b) | |
| 250 (set-buffer-modified-p m)))))) | |
| 251 (with-electric-help 'ignore name t)))) | |
| 252 | |
| 253 | |
| 254 (defun electric-describe-key () | |
| 255 (interactive) | |
| 256 (electric-helpify 'describe-key)) | |
| 257 | |
| 258 (defun electric-describe-mode () | |
| 259 (interactive) | |
| 260 (electric-helpify 'describe-mode)) | |
| 261 | |
| 262 (defun electric-view-lossage () | |
| 263 (interactive) | |
| 264 (electric-helpify 'view-lossage)) | |
| 265 | |
| 266 ;(defun electric-help-for-help () | |
| 267 ; "See help-for-help" | |
| 268 ; (interactive) | |
| 269 ; ) | |
| 270 | |
| 271 (defun electric-describe-function () | |
| 272 (interactive) | |
| 273 (electric-helpify 'describe-function)) | |
| 274 | |
| 275 (defun electric-describe-variable () | |
| 276 (interactive) | |
| 277 (electric-helpify 'describe-variable)) | |
| 278 | |
| 279 (defun electric-describe-bindings () | |
| 280 (interactive) | |
| 281 (electric-helpify 'describe-bindings)) | |
| 282 | |
| 283 (defun electric-describe-syntax () | |
| 284 (interactive) | |
| 285 (electric-helpify 'describe-syntax)) | |
| 286 | |
| 287 (defun electric-command-apropos () | |
| 288 (interactive) | |
| 289 (electric-helpify 'command-apropos)) | |
| 290 | |
| 291 ;(define-key help-map "a" 'electric-command-apropos) | |
| 292 | |
| 293 | |
| 294 | |
| 295 ;;;; ehelp-map | |
| 296 | |
| 297 (defvar ehelp-map ()) | |
| 298 (if ehelp-map | |
| 299 nil | |
| 300 (let ((map (copy-keymap help-map))) | |
| 301 (substitute-key-definition 'describe-key 'electric-describe-key map) | |
| 302 (substitute-key-definition 'describe-mode 'electric-describe-mode map) | |
| 303 (substitute-key-definition 'view-lossage 'electric-view-lossage map) | |
| 304 (substitute-key-definition 'describe-function 'electric-describe-function map) | |
| 305 (substitute-key-definition 'describe-variable 'electric-describe-variable map) | |
| 306 (substitute-key-definition 'describe-bindings 'electric-describe-bindings map) | |
| 307 (substitute-key-definition 'describe-syntax 'electric-describe-syntax map) | |
| 308 | |
| 309 (setq ehelp-map map) | |
| 310 (fset 'ehelp-command map))) | |
| 311 | |
| 312 ;; Do (define-key global-map "\C-h" 'ehelp-command) if you want to win | |
| 584 | 313 |
| 314 (provide 'ehelp) | |
| 315 | |
|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
316 ;;; ehelp.el ends here |
