Mercurial > emacs
annotate lisp/ebuff-menu.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 | c154322a8546 |
| children | 04fb1d3d6992 |
| rev | line source |
|---|---|
|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
1 ;;; ebuff-menu.el --- electric-buffer-list mode |
|
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
2 |
|
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
3 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. |
|
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
4 |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
5 ;; Author: Richard Mlynarik <mly@ai.mit.edu> |
| 475 | 6 |
| 7 ;; This file is part of GNU Emacs. | |
| 8 | |
| 9 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 10 ;; 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
|
11 ;; the Free Software Foundation; either version 2, or (at your option) |
| 475 | 12 ;; any later version. |
| 13 | |
| 14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 17 ;; GNU General Public License for more details. | |
| 18 | |
| 19 ;; You should have received a copy of the GNU General Public License | |
| 20 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
| 21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
| 22 | |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
23 ;;; Commentary: |
|
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
24 |
|
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
25 ;; who says one can't have typeout windows in gnu emacs? |
|
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
26 ;; like ^r select buffer from its emacs lunar or tmacs libraries. |
|
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
27 |
|
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
28 ;;; Code: |
| 475 | 29 |
| 30 (require 'electric) | |
| 31 | |
| 32 ;; this depends on the format of list-buffers (from src/buffer.c) and | |
| 33 ;; on stuff in lisp/buff-menu.el | |
| 34 | |
| 35 (defvar electric-buffer-menu-mode-map nil) | |
| 36 | |
| 37 ;;;###autoload | |
| 38 (defun electric-buffer-list (arg) | |
| 39 "Pops up a buffer describing the set of Emacs buffers. | |
| 40 Vaguely like ITS lunar select buffer; combining typeoutoid buffer | |
| 41 listing with menuoid buffer selection. | |
| 42 | |
| 43 If the very next character typed is a space then the buffer list | |
| 44 window disappears. Otherwise, one may move around in the buffer list | |
| 45 window, marking buffers to be selected, saved or deleted. | |
| 46 | |
| 47 To exit and select a new buffer, type a space when the cursor is on | |
| 48 the appropriate line of the buffer-list window. Other commands are | |
| 49 much like those of buffer-menu-mode. | |
| 50 | |
| 51 Calls value of `electric-buffer-menu-mode-hook' on entry if non-nil. | |
| 52 | |
| 53 \\{electric-buffer-menu-mode-map}" | |
| 54 (interactive "P") | |
| 55 (let (select buffer) | |
| 56 (save-window-excursion | |
| 57 (save-window-excursion (list-buffers arg)) | |
| 58 (setq buffer (window-buffer (Electric-pop-up-window "*Buffer List*"))) | |
| 59 (unwind-protect | |
| 60 (progn | |
| 61 (set-buffer buffer) | |
| 62 (Electric-buffer-menu-mode) | |
| 63 (setq select | |
| 64 (catch 'electric-buffer-menu-select | |
| 65 (message "<<< Press Space to bury the buffer list >>>") | |
|
1607
c154322a8546
* bytecomp.el: Declare unread-command-char an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
919
diff
changeset
|
66 (if (= (setq unread-command-event (read-char)) ?\ ) |
|
c154322a8546
* bytecomp.el: Declare unread-command-char an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
919
diff
changeset
|
67 (progn (setq unread-command-event nil) |
| 475 | 68 (throw 'electric-buffer-menu-select nil))) |
| 69 (let ((first (progn (goto-char (point-min)) | |
| 70 (forward-line 2) | |
| 71 (point))) | |
| 72 (last (progn (goto-char (point-max)) | |
| 73 (forward-line -1) | |
| 74 (point))) | |
| 75 (goal-column 0)) | |
| 76 (goto-char first) | |
| 77 (Electric-command-loop 'electric-buffer-menu-select | |
| 78 nil | |
| 79 t | |
| 80 'electric-buffer-menu-looper | |
| 81 (cons first last)))))) | |
| 82 (set-buffer buffer) | |
| 83 (Buffer-menu-mode) | |
| 84 (bury-buffer buffer) | |
| 85 (message ""))) | |
| 86 (if select | |
| 87 (progn (set-buffer buffer) | |
| 88 (let ((opoint (point-marker))) | |
| 89 (Buffer-menu-execute) | |
| 90 (goto-char (point-min)) | |
| 91 (if (prog1 (search-forward "\n>" nil t) | |
| 92 (goto-char opoint) (set-marker opoint nil)) | |
| 93 (Buffer-menu-select) | |
| 94 (switch-to-buffer (Buffer-menu-buffer t)))))))) | |
| 95 | |
| 96 (defun electric-buffer-menu-looper (state condition) | |
| 97 (cond ((and condition | |
| 98 (not (memq (car condition) '(buffer-read-only | |
| 99 end-of-buffer | |
| 100 beginning-of-buffer)))) | |
| 101 (signal (car condition) (cdr condition))) | |
| 102 ((< (point) (car state)) | |
| 103 (goto-char (point-min)) | |
| 104 (forward-line 2)) | |
| 105 ((> (point) (cdr state)) | |
| 106 (goto-char (point-max)) | |
| 107 (forward-line -1) | |
| 108 (if (pos-visible-in-window-p (point-max)) | |
| 109 (recenter -1))))) | |
| 110 | |
| 111 (put 'Electric-buffer-menu-mode 'mode-class 'special) | |
| 112 (defun Electric-buffer-menu-mode () | |
| 113 "Major mode for editing a list of buffers. | |
| 114 Each line describes one of the buffers in Emacs. | |
| 115 Letters do not insert themselves; instead, they are commands. | |
| 116 \\<electric-buffer-menu-mode-map> | |
| 117 \\[keyboard-quit] or \\[Electric-buffer-menu-quit] -- exit buffer menu, returning to previous window and buffer | |
| 118 configuration. If the very first character typed is a space, it | |
| 119 also has this effect. | |
| 120 \\[Electric-buffer-menu-select] -- select buffer of line point is on. | |
| 121 Also show buffers marked with m in other windows, | |
| 122 deletes buffers marked with \"D\", and saves those marked with \"S\". | |
| 123 \\[Buffer-menu-mark] -- mark buffer to be displayed. | |
| 124 \\[Buffer-menu-not-modified] -- clear modified-flag on that buffer. | |
| 125 \\[Buffer-menu-save] -- mark that buffer to be saved. | |
| 126 \\[Buffer-menu-delete] or \\[Buffer-menu-delete-backwards] -- mark that buffer to be deleted. | |
| 127 \\[Buffer-menu-unmark] -- remove all kinds of marks from current line. | |
| 128 \\[Electric-buffer-menu-mode-view-buffer] -- view buffer, returning when done. | |
| 129 \\[Buffer-menu-backup-unmark] -- back up a line and remove marks. | |
| 130 | |
| 131 \\{electric-buffer-menu-mode-map} | |
| 132 | |
| 133 Entry to this mode via command electric-buffer-list calls the value of | |
| 134 electric-buffer-menu-mode-hook if it is non-nil." | |
| 135 (kill-all-local-variables) | |
| 136 (use-local-map electric-buffer-menu-mode-map) | |
| 137 (setq mode-name "Electric Buffer Menu") | |
| 138 (setq mode-line-buffer-identification "Electric Buffer List") | |
| 139 (make-local-variable 'Helper-return-blurb) | |
| 140 (setq Helper-return-blurb "return to buffer editing") | |
| 141 (setq truncate-lines t) | |
| 142 (setq buffer-read-only t) | |
| 143 (setq major-mode 'Electric-buffer-menu-mode) | |
| 144 (goto-char (point-min)) | |
| 145 (if (search-forward "\n." nil t) (forward-char -1)) | |
| 146 (run-hooks 'electric-buffer-menu-mode-hook)) | |
| 147 | |
| 148 ;; generally the same as Buffer-menu-mode-map | |
| 149 ;; (except we don't indirect to global-map) | |
| 150 (put 'Electric-buffer-menu-undefined 'suppress-keymap t) | |
| 151 (if electric-buffer-menu-mode-map | |
| 152 nil | |
| 153 (let ((map (make-keymap))) | |
| 154 (fillarray map 'Electric-buffer-menu-undefined) | |
| 155 (define-key map "\e" (make-keymap)) | |
| 156 (fillarray (lookup-key map "\e") 'Electric-buffer-menu-undefined) | |
| 157 (define-key map "\C-z" 'suspend-emacs) | |
| 158 (define-key map "v" 'Electric-buffer-menu-mode-view-buffer) | |
|
918
94b50bbd43c3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
917
diff
changeset
|
159 (define-key map (char-to-string help-char) 'Helper-help) |
| 475 | 160 (define-key map "?" 'Helper-describe-bindings) |
| 161 (define-key map "\C-c" nil) | |
| 162 (define-key map "\C-c\C-c" 'Electric-buffer-menu-quit) | |
| 163 (define-key map "\C-]" 'Electric-buffer-menu-quit) | |
| 164 (define-key map "q" 'Electric-buffer-menu-quit) | |
| 165 (define-key map " " 'Electric-buffer-menu-select) | |
| 166 (define-key map "\C-l" 'recenter) | |
| 167 (define-key map "s" 'Buffer-menu-save) | |
| 168 (define-key map "d" 'Buffer-menu-delete) | |
| 169 (define-key map "k" 'Buffer-menu-delete) | |
| 170 (define-key map "\C-d" 'Buffer-menu-delete-backwards) | |
| 171 ;(define-key map "\C-k" 'Buffer-menu-delete) | |
| 172 (define-key map "\177" 'Buffer-menu-backup-unmark) | |
| 173 (define-key map "~" 'Buffer-menu-not-modified) | |
| 174 (define-key map "u" 'Buffer-menu-unmark) | |
| 175 (let ((i ?0)) | |
| 176 (while (<= i ?9) | |
| 177 (define-key map (char-to-string i) 'digit-argument) | |
| 178 (define-key map (concat "\e" (char-to-string i)) 'digit-argument) | |
| 179 (setq i (1+ i)))) | |
| 180 (define-key map "-" 'negative-argument) | |
| 181 (define-key map "\e-" 'negative-argument) | |
| 182 (define-key map "m" 'Buffer-menu-mark) | |
| 183 (define-key map "\C-u" 'universal-argument) | |
| 184 (define-key map "\C-p" 'previous-line) | |
| 185 (define-key map "\C-n" 'next-line) | |
| 186 (define-key map "p" 'previous-line) | |
| 187 (define-key map "n" 'next-line) | |
| 188 (define-key map "\C-v" 'scroll-up) | |
| 189 (define-key map "\ev" 'scroll-down) | |
| 190 (define-key map ">" 'scroll-right) | |
| 191 (define-key map "<" 'scroll-left) | |
| 192 (define-key map "\e\C-v" 'scroll-other-window) | |
| 193 (define-key map "\e>" 'end-of-buffer) | |
| 194 (define-key map "\e<" 'beginning-of-buffer) | |
| 195 (setq electric-buffer-menu-mode-map map))) | |
| 196 | |
| 197 (defun Electric-buffer-menu-exit () | |
| 198 (interactive) | |
|
1607
c154322a8546
* bytecomp.el: Declare unread-command-char an obsolete variable.
Jim Blandy <jimb@redhat.com>
parents:
919
diff
changeset
|
199 (setq unread-command-event last-input-char) |
| 475 | 200 ;; for robustness |
| 201 (condition-case () | |
| 202 (throw 'electric-buffer-menu-select nil) | |
| 203 (error (Buffer-menu-mode) | |
| 204 (other-buffer)))) | |
| 205 | |
| 206 (defun Electric-buffer-menu-select () | |
| 207 "Leave Electric Buffer Menu, selecting buffers and executing changes. | |
| 208 Saves buffers marked \"S\". Deletes buffers marked \"K\". | |
| 209 Selects buffer at point and displays buffers marked \">\" in other windows." | |
| 210 (interactive) | |
| 211 (throw 'electric-buffer-menu-select (point))) | |
| 212 | |
| 213 (defun Electric-buffer-menu-quit () | |
| 214 "Leave Electric Buffer Menu, restoring previous window configuration. | |
| 215 Does not execute select, save, or delete commands." | |
| 216 (interactive) | |
| 217 (throw 'electric-buffer-menu-select nil)) | |
| 218 | |
| 219 (defun Electric-buffer-menu-undefined () | |
| 220 (interactive) | |
| 221 (ding) | |
| 222 (message (if (and (eq (key-binding "\C-c\C-c") 'Electric-buffer-menu-quit) | |
| 223 (eq (key-binding " ") 'Electric-buffer-menu-select) | |
| 919 | 224 (eq (key-binding (char-to-string help-char)) 'Helper-help) |
| 475 | 225 (eq (key-binding "?") 'Helper-describe-bindings)) |
|
916
938f166a0874
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
915
diff
changeset
|
226 (substitute-command-keys "Type C-c C-c to exit, Space to select, \\[Helper-help] for help, ? for commands") |
| 475 | 227 (substitute-command-keys "\ |
| 228 Type \\[Electric-buffer-menu-quit] to exit, \ | |
| 229 \\[Electric-buffer-menu-select] to select, \ | |
| 230 \\[Helper-help] for help, \\[Helper-describe-bindings] for commands."))) | |
| 231 (sit-for 4)) | |
| 232 | |
| 233 (defun Electric-buffer-menu-mode-view-buffer () | |
| 234 "View buffer on current line in Electric Buffer Menu. | |
| 235 Returns to Electric Buffer Menu when done." | |
| 236 (interactive) | |
| 237 (let ((bufnam (Buffer-menu-buffer nil))) | |
| 238 (if bufnam | |
| 239 (view-buffer bufnam) | |
| 240 (ding) | |
| 241 (message "Buffer %s does not exist!" bufnam) | |
| 242 (sit-for 4)))) | |
| 243 | |
|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
475
diff
changeset
|
244 ;;; ebuff-menu.el ends here |
