Mercurial > emacs
annotate lisp/progmodes/awk-mode.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 | 213978acbc1e |
| children | 2c7997f249eb |
| rev | line source |
|---|---|
|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
257
diff
changeset
|
1 ;;; awk-mode.el --- AWK code editing commands for Emacs |
|
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
257
diff
changeset
|
2 |
| 845 | 3 ;; Copyright (C) 1988 Free Software Foundation, Inc. |
| 4 | |
|
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
5 ;; Maintainer: FSF |
|
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
6 ;; Keyword: unix, languages |
|
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
7 |
| 257 | 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 | |
|
811
e694e0879463
*** 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) |
| 257 | 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 | |
|
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
24 ;;; Code: |
| 257 | 25 |
| 26 (defvar awk-mode-syntax-table nil | |
| 27 "Syntax table in use in Awk-mode buffers.") | |
| 28 | |
| 29 (if awk-mode-syntax-table | |
| 30 () | |
| 31 (setq awk-mode-syntax-table (make-syntax-table)) | |
| 32 (modify-syntax-entry ?\\ "\\" awk-mode-syntax-table) | |
| 33 (modify-syntax-entry ?\n "> " emacs-lisp-mode-syntax-table) | |
| 34 (modify-syntax-entry ?\f "> " emacs-lisp-mode-syntax-table) | |
| 35 (modify-syntax-entry ?\# "< " emacs-lisp-mode-syntax-table) | |
| 36 (modify-syntax-entry ?/ "." awk-mode-syntax-table) | |
| 37 (modify-syntax-entry ?* "." awk-mode-syntax-table) | |
| 38 (modify-syntax-entry ?+ "." awk-mode-syntax-table) | |
| 39 (modify-syntax-entry ?- "." awk-mode-syntax-table) | |
| 40 (modify-syntax-entry ?= "." awk-mode-syntax-table) | |
| 41 (modify-syntax-entry ?% "." awk-mode-syntax-table) | |
| 42 (modify-syntax-entry ?< "." awk-mode-syntax-table) | |
| 43 (modify-syntax-entry ?> "." awk-mode-syntax-table) | |
| 44 (modify-syntax-entry ?& "." awk-mode-syntax-table) | |
| 45 (modify-syntax-entry ?| "." awk-mode-syntax-table) | |
| 46 (modify-syntax-entry ?\' "\"" awk-mode-syntax-table)) | |
| 47 | |
| 48 (defvar awk-mode-abbrev-table nil | |
| 49 "Abbrev table in use in Awk-mode buffers.") | |
| 50 (define-abbrev-table 'awk-mode-abbrev-table ()) | |
| 51 | |
| 52 ;;;###autoload | |
| 53 (defun awk-mode () | |
| 54 "Major mode for editing AWK code. | |
| 55 This is much like C mode except for the syntax of comments. It uses | |
| 56 the same keymap as C mode and has the same variables for customizing | |
| 57 indentation. It has its own abbrev table and its own syntax table. | |
| 58 | |
| 59 Turning on AWK mode calls the value of the variable `awk-mode-hook' | |
| 60 with no args, if that value is non-nil." | |
| 61 (interactive) | |
| 62 (kill-all-local-variables) | |
| 63 (use-local-map c-mode-map) | |
| 64 (setq major-mode 'awk-mode) | |
| 65 (setq mode-name "AWK") | |
| 66 (setq local-abbrev-table awk-mode-abbrev-table) | |
| 67 (set-syntax-table awk-mode-syntax-table) | |
| 68 (make-local-variable 'paragraph-start) | |
| 69 (setq paragraph-start (concat "^$\\|" page-delimiter)) | |
| 70 (make-local-variable 'paragraph-separate) | |
| 71 (setq paragraph-separate paragraph-start) | |
| 72 (make-local-variable 'paragraph-ignore-fill-prefix) | |
| 73 (setq paragraph-ignore-fill-prefix t) | |
| 74 (make-local-variable 'indent-line-function) | |
| 75 (setq indent-line-function 'awk-indent-line) | |
| 76 (make-local-variable 'require-final-newline) | |
| 77 (setq require-final-newline t) | |
| 78 (make-local-variable 'comment-start) | |
| 79 (setq comment-start "# ") | |
| 80 (make-local-variable 'comment-end) | |
| 81 (setq comment-end "") | |
| 82 (make-local-variable 'comment-column) | |
| 83 (setq comment-column 32) | |
| 84 (make-local-variable 'comment-start-skip) | |
| 85 (setq comment-start-skip "#+ *") | |
| 86 (make-local-variable 'comment-indent-hook) | |
| 87 (setq comment-indent-hook 'c-comment-indent) | |
| 88 (run-hooks 'awk-mode-hook)) | |
|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
257
diff
changeset
|
89 |
|
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
257
diff
changeset
|
90 ;;; awk-mode.el ends here |
