Mercurial > emacs
annotate lisp/lpr.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 | b2a50ea75eea |
| children | 10e417efb12a |
| rev | line source |
|---|---|
|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
1 ;;; lpr.el --- print Emacs buffer on line printer. |
|
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
2 |
|
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
3 ;; Copyright (C) 1985, 1988, 1992 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:
659
diff
changeset
|
5 ;; Maintainer: FSF |
|
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: unix |
|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
7 |
| 155 | 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:
659
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
| 155 | 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:
659
diff
changeset
|
24 ;;; Code: |
| 155 | 25 |
| 269 | 26 ;;;###autoload |
|
1671
b2a50ea75eea
* lpr.el (lpr-switches, lpr-command): Make these defvars, not
Jim Blandy <jimb@redhat.com>
parents:
1615
diff
changeset
|
27 (defvar lpr-switches nil |
|
1615
21e2defc55c0
* lpr.el (lpr-command, lpr-switches): Removed strings starting
Jim Blandy <jimb@redhat.com>
parents:
1463
diff
changeset
|
28 "*List of strings to pass as extra switch args to lpr when it is invoked.") |
| 155 | 29 |
| 1068 | 30 ;;;###autoload |
|
1671
b2a50ea75eea
* lpr.el (lpr-switches, lpr-command): Make these defvars, not
Jim Blandy <jimb@redhat.com>
parents:
1615
diff
changeset
|
31 (defvar lpr-command |
|
1615
21e2defc55c0
* lpr.el (lpr-command, lpr-switches): Removed strings starting
Jim Blandy <jimb@redhat.com>
parents:
1463
diff
changeset
|
32 (if (memq system-type '(usg-unix-v dgux-unix hpux silicon-graphics-unix)) |
|
21e2defc55c0
* lpr.el (lpr-command, lpr-switches): Removed strings starting
Jim Blandy <jimb@redhat.com>
parents:
1463
diff
changeset
|
33 "lp" "lpr") |
|
21e2defc55c0
* lpr.el (lpr-command, lpr-switches): Removed strings starting
Jim Blandy <jimb@redhat.com>
parents:
1463
diff
changeset
|
34 "*Shell command for printing a file") |
| 155 | 35 |
| 36 (defvar print-region-function nil | |
| 37 "Function to call to print the region on a printer. | |
|
216
2c663336acaf
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
155
diff
changeset
|
38 See definition of `print-region-1' for calling conventions.") |
| 155 | 39 |
| 256 | 40 ;;;###autoload |
| 155 | 41 (defun lpr-buffer () |
| 42 "Print buffer contents as with Unix command `lpr'. | |
| 43 `lpr-switches' is a list of extra switches (strings) to pass to lpr." | |
| 44 (interactive) | |
| 45 (print-region-1 (point-min) (point-max) lpr-switches nil)) | |
| 46 | |
| 256 | 47 ;;;###autoload |
| 155 | 48 (defun print-buffer () |
| 49 "Print buffer contents as with Unix command `lpr -p'. | |
| 50 `lpr-switches' is a list of extra switches (strings) to pass to lpr." | |
| 51 (interactive) | |
| 52 (print-region-1 (point-min) (point-max) lpr-switches t)) | |
| 53 | |
| 256 | 54 ;;;###autoload |
| 155 | 55 (defun lpr-region (start end) |
| 56 "Print region contents as with Unix command `lpr'. | |
| 57 `lpr-switches' is a list of extra switches (strings) to pass to lpr." | |
| 58 (interactive "r") | |
| 59 (print-region-1 start end lpr-switches nil)) | |
| 60 | |
| 256 | 61 ;;;###autoload |
| 155 | 62 (defun print-region (start end) |
| 63 "Print region contents as with Unix command `lpr -p'. | |
| 64 `lpr-switches' is a list of extra switches (strings) to pass to lpr." | |
| 65 (interactive "r") | |
| 66 (print-region-1 start end lpr-switches t)) | |
| 67 | |
| 68 (defun print-region-1 (start end switches page-headers) | |
| 69 (let ((name (concat (buffer-name) " Emacs buffer")) | |
| 70 (width tab-width)) | |
| 71 (save-excursion | |
| 72 (message "Spooling...") | |
| 73 (if (/= tab-width 8) | |
| 74 (progn | |
| 75 (print-region-new-buffer start end) | |
| 76 (setq tab-width width) | |
| 77 (untabify (point-min) (point-max)))) | |
| 78 (if page-headers | |
| 79 (if (eq system-type 'usg-unix-v) | |
| 80 (progn | |
| 922 | 81 (print-region-new-buffer start end) |
| 155 | 82 (call-process-region start end "pr" t t nil)) |
| 83 ;; On BSD, use an option to get page headers. | |
| 84 (setq switches (cons "-p" switches)))) | |
| 85 (apply (or print-region-function 'call-process-region) | |
| 86 (nconc (list start end lpr-command | |
| 87 nil nil nil) | |
| 88 (nconc (and (eq system-type 'berkeley-unix) | |
| 89 (list "-J" name "-T" name)) | |
| 90 switches))) | |
| 91 (message "Spooling...done")))) | |
| 92 | |
| 93 ;; This function copies the text between start and end | |
| 94 ;; into a new buffer, makes that buffer current, | |
| 95 ;; and sets start and end to the buffer bounds. | |
| 96 ;; start and end are used free. | |
| 922 | 97 (defun print-region-new-buffer (start end) |
| 155 | 98 (or (string= (buffer-name) " *spool temp*") |
| 99 (let ((oldbuf (current-buffer))) | |
| 100 (set-buffer (get-buffer-create " *spool temp*")) | |
| 101 (widen) (erase-buffer) | |
| 102 (insert-buffer-substring oldbuf start end) | |
| 103 (setq start (point-min) end (point-max))))) | |
|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
104 |
|
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
617
diff
changeset
|
105 ;;; lpr.el ends here |
