Mercurial > emacs
annotate lisp/progmodes/cpp.el @ 64699:629afbe74e61
Update copyright for release of 22.1 for progmodes directory.
| author | Nick Roberts <nickrob@snap.net.nz> |
|---|---|
| date | Mon, 01 Aug 2005 08:43:45 +0000 |
| parents | 18a818a2ee7c |
| children | a11fdee52c05 edf295560b5a |
| rev | line source |
|---|---|
|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Jan?k <Pavel@Janik.cz>
parents:
38078
diff
changeset
|
1 ;;; cpp.el --- highlight or hide text according to cpp conditionals |
| 8735 | 2 |
|
64699
629afbe74e61
Update copyright for release of 22.1 for progmodes directory.
Nick Roberts <nickrob@snap.net.nz>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1994, 1995, 2001, 2002, 2003, 2004, 2005 |
|
629afbe74e61
Update copyright for release of 22.1 for progmodes directory.
Nick Roberts <nickrob@snap.net.nz>
parents:
64085
diff
changeset
|
4 ;; Free Software Foundation |
| 8735 | 5 |
| 17981 | 6 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> |
| 8735 | 7 ;; Keywords: c, faces, tools |
| 8 | |
|
8736
fe48762e68de
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8735
diff
changeset
|
9 ;; This file is part of GNU Emacs. |
| 8735 | 10 |
|
8736
fe48762e68de
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8735
diff
changeset
|
11 ;; GNU Emacs is free software; you can redistribute it and/or modify |
| 8735 | 12 ;; it under the terms of the GNU General Public License as published by |
| 13 ;; the Free Software Foundation; either version 2, or (at your option) | |
| 14 ;; any later version. | |
|
8736
fe48762e68de
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8735
diff
changeset
|
15 |
|
fe48762e68de
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8735
diff
changeset
|
16 ;; GNU Emacs is distributed in the hope that it will be useful, |
| 8735 | 17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 ;; GNU General Public License for more details. | |
|
8736
fe48762e68de
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8735
diff
changeset
|
20 |
| 8735 | 21 ;; You should have received a copy of the GNU General Public License |
| 14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
| 64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 24 ;; Boston, MA 02110-1301, USA. | |
| 8735 | 25 |
|
8736
fe48762e68de
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8735
diff
changeset
|
26 ;;; Commentary: |
| 8735 | 27 |
| 28 ;; Parse a text for C preprocessor conditionals, and highlight or hide | |
| 29 ;; the text inside the conditionals as you wish. | |
| 30 | |
|
8740
714588372e06
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8736
diff
changeset
|
31 ;; This package is inspired by Jim Coplien's delta editor for SCCS. |
| 8735 | 32 |
| 33 ;;; Todo: | |
| 34 | |
| 35 ;; Should parse "#if" and "#elif" expressions and merge the faces | |
|
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45431
diff
changeset
|
36 ;; somehow. |
| 8735 | 37 |
| 38 ;; Somehow it is sometimes possible to make changes near a read only | |
| 39 ;; area which you can't undo. Their are other strange effects in that | |
| 40 ;; area. | |
| 41 | |
| 42 ;; The Edit buffer should -- optionally -- appear in its own frame. | |
| 43 | |
| 44 ;; Conditionals seem to be rear-sticky. They shouldn't be. | |
| 45 | |
| 46 ;; Restore window configurations when exiting CPP Edit buffer. | |
| 47 | |
| 48 ;;; Code: | |
| 49 | |
| 50 ;;; Customization: | |
| 19009 | 51 (defgroup cpp nil |
| 52 "Highlight or hide text according to cpp conditionals." | |
|
28467
6ab0eec080f8
Change customization group to `c' from `C'.
Dave Love <fx@gnu.org>
parents:
23271
diff
changeset
|
53 :group 'c |
| 19009 | 54 :prefix "cpp-") |
| 8735 | 55 |
| 19009 | 56 (defcustom cpp-config-file (convert-standard-filename ".cpp.el") |
| 57 "*File name to save cpp configuration." | |
| 58 :type 'file | |
| 59 :group 'cpp) | |
|
13911
3e9e8b468bc1
(cpp-config-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11492
diff
changeset
|
60 |
| 19009 | 61 (defcustom cpp-known-face 'invisible |
| 62 "*Face used for known cpp symbols." | |
| 63 :type 'face | |
| 64 :group 'cpp) | |
| 8735 | 65 |
| 19009 | 66 (defcustom cpp-unknown-face 'highlight |
| 67 "*Face used for unknown cpp symbols." | |
| 68 :type 'face | |
| 69 :group 'cpp) | |
| 8735 | 70 |
|
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45431
diff
changeset
|
71 (defcustom cpp-face-type 'light |
| 8735 | 72 "*Indicate what background face type you prefer. |
| 73 Can be either light or dark for color screens, mono for monochrome | |
|
30541
d5e4d3d5012c
(toplevel): Support faces on tty's.
Eli Zaretskii <eliz@gnu.org>
parents:
28467
diff
changeset
|
74 screens, and none if you don't use a window system and don't have |
|
d5e4d3d5012c
(toplevel): Support faces on tty's.
Eli Zaretskii <eliz@gnu.org>
parents:
28467
diff
changeset
|
75 a color-capable display." |
| 19009 | 76 :options '(light dark mono nil) |
| 77 :type 'symbol | |
| 78 :group 'cpp) | |
| 8735 | 79 |
| 19009 | 80 (defcustom cpp-known-writable t |
| 81 "*Non-nil means you are allowed to modify the known conditionals." | |
| 82 :type 'boolean | |
| 83 :group 'cpp) | |
| 8735 | 84 |
| 19009 | 85 (defcustom cpp-unknown-writable t |
| 86 "*Non-nil means you are allowed to modify the unknown conditionals." | |
| 87 :type 'boolean | |
| 88 :group 'cpp) | |
| 89 | |
| 90 (defcustom cpp-edit-list nil | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
91 "Alist of cpp macros and information about how they should be displayed. |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
92 Each entry is a list with the following elements: |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
93 0. The name of the macro (a string). |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
94 1. Face used for text that is `ifdef' the macro. |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
95 2. Face used for text that is `ifndef' the macro. |
|
50858
54347668e2e9
(cpp-edit-list): Don't quote nil and t in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
49598
diff
changeset
|
96 3. t, nil, or `both' depending on what text may be edited." |
| 19009 | 97 :type '(repeat (list string face face |
| 98 (choice (const t) | |
| 99 (const nil) | |
| 100 (const both)))) | |
| 101 :group 'cpp) | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
102 |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
103 (defvar cpp-overlay-list nil) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
104 ;; List of cpp overlays active in the current buffer. |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
105 (make-variable-buffer-local 'cpp-overlay-list) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
106 |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
107 (defvar cpp-callback-data) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
108 (defvar cpp-state-stack) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
109 |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
110 (defconst cpp-face-type-list |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
111 '(("light color background" . light) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
112 ("dark color background" . dark) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
113 ("monochrome" . mono) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
114 ("tty" . none)) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
115 "Alist of strings and names of the defined face collections.") |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
116 |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
117 (defconst cpp-writable-list |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
118 ;; Names used for the writable property. |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
119 '(("writable" . t) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
120 ("read-only" . nil))) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
121 |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
122 (defvar cpp-button-event nil) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
123 ;; This will be t in the callback for `cpp-make-button'. |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
124 |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
125 (defvar cpp-edit-buffer nil) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
126 ;; Real buffer whose cpp display information we are editing. |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
127 (make-variable-buffer-local 'cpp-edit-buffer) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
128 |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
129 (defconst cpp-branch-list |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
130 ;; Alist of branches. |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
131 '(("false" . nil) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
132 ("true" . t) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
133 ("both" . both))) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
134 |
| 19009 | 135 (defcustom cpp-face-default-list nil |
|
19129
35d85b50c3cb
(cpp-create-bg-face): Don't really make a face.
Richard M. Stallman <rms@gnu.org>
parents:
19009
diff
changeset
|
136 "Alist of faces you can choose from for cpp conditionals. |
|
35d85b50c3cb
(cpp-create-bg-face): Don't really make a face.
Richard M. Stallman <rms@gnu.org>
parents:
19009
diff
changeset
|
137 Each element has the form (STRING . FACE), where STRING |
|
35d85b50c3cb
(cpp-create-bg-face): Don't really make a face.
Richard M. Stallman <rms@gnu.org>
parents:
19009
diff
changeset
|
138 serves as a name (for `cpp-highlight-buffer' only) |
|
35d85b50c3cb
(cpp-create-bg-face): Don't really make a face.
Richard M. Stallman <rms@gnu.org>
parents:
19009
diff
changeset
|
139 and FACE is either a face (a symbol) |
|
35d85b50c3cb
(cpp-create-bg-face): Don't really make a face.
Richard M. Stallman <rms@gnu.org>
parents:
19009
diff
changeset
|
140 or a cons cell (background-color . COLOR)." |
|
35d85b50c3cb
(cpp-create-bg-face): Don't really make a face.
Richard M. Stallman <rms@gnu.org>
parents:
19009
diff
changeset
|
141 :type '(repeat (cons string (choice face (cons (const background-color) string)))) |
| 19009 | 142 :group 'cpp) |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
143 |
| 19009 | 144 (defcustom cpp-face-light-name-list |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
145 '("light gray" "light blue" "light cyan" "light yellow" "light pink" |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
146 "pale green" "beige" "orange" "magenta" "violet" "medium purple" |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
147 "turquoise") |
|
63275
7c5cfb705766
(cpp-face-light-name-list, cpp-face-dark-name-list): Fix spellings in
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
148 "Background colors useful with dark foreground colors." |
| 19009 | 149 :type '(repeat string) |
| 150 :group 'cpp) | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
151 |
| 19009 | 152 (defcustom cpp-face-dark-name-list |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
153 '("dim gray" "blue" "cyan" "yellow" "red" |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
154 "dark green" "brown" "dark orange" "dark khaki" "dark violet" "purple" |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
155 "dark turquoise") |
|
63275
7c5cfb705766
(cpp-face-light-name-list, cpp-face-dark-name-list): Fix spellings in
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
156 "Background colors useful with light foreground colors." |
| 19009 | 157 :type '(repeat string) |
| 158 :group 'cpp) | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
159 |
| 19009 | 160 (defcustom cpp-face-light-list nil |
| 161 "Alist of names and faces to be used for light backgrounds." | |
|
23271
f3d8ff8877ff
(cpp-face-light-list, cpp-face-dark-list): Fix
Andreas Schwab <schwab@suse.de>
parents:
19130
diff
changeset
|
162 :type '(repeat (cons string (choice face |
|
f3d8ff8877ff
(cpp-face-light-list, cpp-face-dark-list): Fix
Andreas Schwab <schwab@suse.de>
parents:
19130
diff
changeset
|
163 (cons (const background-color) string)))) |
| 19009 | 164 :group 'cpp) |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
165 |
| 19009 | 166 (defcustom cpp-face-dark-list nil |
| 167 "Alist of names and faces to be used for dark backgrounds." | |
|
23271
f3d8ff8877ff
(cpp-face-light-list, cpp-face-dark-list): Fix
Andreas Schwab <schwab@suse.de>
parents:
19130
diff
changeset
|
168 :type '(repeat (cons string (choice face |
|
f3d8ff8877ff
(cpp-face-light-list, cpp-face-dark-list): Fix
Andreas Schwab <schwab@suse.de>
parents:
19130
diff
changeset
|
169 (cons (const background-color) string)))) |
| 19009 | 170 :group 'cpp) |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
171 |
| 19009 | 172 (defcustom cpp-face-mono-list |
| 173 '(("bold" . bold) | |
| 174 ("bold-italic" . bold-italic) | |
| 175 ("italic" . italic) | |
| 176 ("underline" . underline)) | |
| 177 "Alist of names and faces to be used for monochrome screens." | |
| 178 :type '(repeat (cons string face)) | |
| 179 :group 'cpp) | |
| 180 | |
| 181 (defcustom cpp-face-none-list | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
182 '(("default" . default) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
183 ("invisible" . invisible)) |
| 19009 | 184 "Alist of names and faces available even if you don't use a window system." |
| 185 :type '(repeat (cons string face)) | |
| 186 :group 'cpp) | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
187 |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
188 (defvar cpp-face-all-list |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
189 (append cpp-face-light-list |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
190 cpp-face-dark-list |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
191 cpp-face-mono-list |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
192 cpp-face-none-list) |
|
13974
37cfc82fe02d
(cpp-unknown-face, cpp-face-mono-list, cpp-face-all-list):
Karl Heuer <kwzh@gnu.org>
parents:
13911
diff
changeset
|
193 "All faces used for highlighting text inside cpp conditionals.") |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
194 |
| 8735 | 195 ;;; Parse Buffer: |
| 196 | |
| 197 (defvar cpp-parse-symbols nil | |
| 198 "List of cpp macros used in the local buffer.") | |
| 199 (make-variable-buffer-local 'cpp-parse-symbols) | |
| 200 | |
| 201 (defconst cpp-parse-regexp | |
| 202 ;; Regexp matching all tokens needed to find conditionals. | |
| 203 (concat | |
| 204 "'\\|\"\\|/\\*\\|//\\|" | |
| 205 "\\(^[ \t]*#[ \t]*\\(ifdef\\|ifndef\\|if\\|" | |
| 206 "elif\\|else\\|endif\\)\\b\\)")) | |
| 207 | |
| 208 ;;;###autoload | |
| 8741 | 209 (defun cpp-highlight-buffer (arg) |
| 210 "Highlight C code according to preprocessor conditionals. | |
| 211 This command pops up a buffer which you should edit to specify | |
| 212 what kind of highlighting to use, and the criteria for highlighting. | |
|
11456
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
213 A prefix arg suppresses display of that buffer." |
| 8735 | 214 (interactive "P") |
|
19129
35d85b50c3cb
(cpp-create-bg-face): Don't really make a face.
Richard M. Stallman <rms@gnu.org>
parents:
19009
diff
changeset
|
215 (unless (or (eq t buffer-invisibility-spec) |
|
35d85b50c3cb
(cpp-create-bg-face): Don't really make a face.
Richard M. Stallman <rms@gnu.org>
parents:
19009
diff
changeset
|
216 (memq 'cpp buffer-invisibility-spec)) |
|
18071
bcdf720abb1a
(cpp-highlight-buffer): Make sure
Richard M. Stallman <rms@gnu.org>
parents:
17981
diff
changeset
|
217 (add-to-invisibility-spec 'cpp)) |
| 8735 | 218 (setq cpp-parse-symbols nil) |
| 219 (cpp-parse-reset) | |
| 220 (if (null cpp-edit-list) | |
| 221 (cpp-edit-load)) | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
222 (let (cpp-state-stack) |
| 8735 | 223 (save-excursion |
| 224 (goto-char (point-min)) | |
| 225 (cpp-progress-message "Parsing...") | |
| 226 (while (re-search-forward cpp-parse-regexp nil t) | |
| 227 (cpp-progress-message "Parsing...%d%%" | |
| 228 (/ (* 100 (- (point) (point-min))) (buffer-size))) | |
| 229 (let ((match (buffer-substring (match-beginning 0) (match-end 0)))) | |
| 230 (cond ((or (string-equal match "'") | |
| 231 (string-equal match "\"")) | |
| 232 (goto-char (match-beginning 0)) | |
| 233 (condition-case nil | |
| 234 (forward-sexp) | |
| 235 (error (cpp-parse-error | |
| 236 "Unterminated string or character")))) | |
| 237 ((string-equal match "/*") | |
| 238 (or (search-forward "*/" nil t) | |
| 239 (error "Unterminated comment"))) | |
| 240 ((string-equal match "//") | |
| 241 (skip-chars-forward "^\n\r")) | |
| 242 (t | |
| 243 (end-of-line 1) | |
| 244 (let ((from (match-beginning 1)) | |
| 245 (to (1+ (point))) | |
| 246 (type (buffer-substring (match-beginning 2) | |
| 247 (match-end 2))) | |
| 248 (expr (buffer-substring (match-end 1) (point)))) | |
| 249 (cond ((string-equal type "ifdef") | |
| 250 (cpp-parse-open t expr from to)) | |
| 251 ((string-equal type "ifndef") | |
| 252 (cpp-parse-open nil expr from to)) | |
| 253 ((string-equal type "if") | |
| 254 (cpp-parse-open t expr from to)) | |
| 255 ((string-equal type "elif") | |
| 256 (let (cpp-known-face cpp-unknown-face) | |
| 257 (cpp-parse-close from to)) | |
| 258 (cpp-parse-open t expr from to)) | |
| 259 ((string-equal type "else") | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
260 (or cpp-state-stack |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
261 (cpp-parse-error "Top level #else")) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
262 (let ((entry (list (not (nth 0 (car cpp-state-stack))) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
263 (nth 1 (car cpp-state-stack)) |
| 8735 | 264 from to))) |
| 265 (cpp-parse-close from to) | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
266 (setq cpp-state-stack (cons entry cpp-state-stack)))) |
| 8735 | 267 ((string-equal type "endif") |
| 268 (cpp-parse-close from to)) | |
| 269 (t | |
| 270 (cpp-parse-error "Parser error")))))))) | |
| 271 (message "Parsing...done")) | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
272 (if cpp-state-stack |
| 8735 | 273 (save-excursion |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
274 (goto-char (nth 3 (car cpp-state-stack))) |
| 8735 | 275 (cpp-parse-error "Unclosed conditional")))) |
| 276 (or arg | |
| 277 (null cpp-parse-symbols) | |
| 278 (cpp-parse-edit))) | |
| 279 | |
| 280 (defun cpp-parse-open (branch expr begin end) | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
281 "Push information about conditional-beginning onto `cpp-state-stack'." |
|
11456
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
282 ;; Discard comments within this line. |
| 8735 | 283 (while (string-match "\\b[ \t]*/\\*.*\\*/[ \t]*\\b" expr) |
| 284 (setq expr (concat (substring expr 0 (match-beginning 0)) | |
| 285 (substring expr (match-end 0))))) | |
|
11456
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
286 ;; If a comment starts on this line and continues past, discard it. |
|
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
287 (if (string-match "\\b[ \t]*/\\*" expr) |
|
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
288 (setq expr (substring expr 0 (match-beginning 0)))) |
|
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
289 ;; Delete any C++ comment from the line. |
| 8735 | 290 (if (string-match "\\b[ \t]*\\(//.*\\)?$" expr) |
| 291 (setq expr (substring expr 0 (match-beginning 0)))) | |
| 292 (while (string-match "[ \t]+" expr) | |
| 293 (setq expr (concat (substring expr 0 (match-beginning 0)) | |
| 294 (substring expr (match-end 0))))) | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
295 (setq cpp-state-stack (cons (list branch expr begin end) cpp-state-stack)) |
| 8735 | 296 (or (member expr cpp-parse-symbols) |
| 297 (setq cpp-parse-symbols | |
| 298 (cons expr cpp-parse-symbols))) | |
| 299 (if (assoc expr cpp-edit-list) | |
| 300 (cpp-make-known-overlay begin end) | |
| 301 (cpp-make-unknown-overlay begin end))) | |
| 302 | |
| 303 (defun cpp-parse-close (from to) | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
304 ;; Pop top of cpp-state-stack and create overlay. |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
305 (let ((entry (assoc (nth 1 (car cpp-state-stack)) cpp-edit-list)) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
306 (branch (nth 0 (car cpp-state-stack))) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
307 (begin (nth 2 (car cpp-state-stack))) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
308 (end (nth 3 (car cpp-state-stack)))) |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
309 (setq cpp-state-stack (cdr cpp-state-stack)) |
| 8735 | 310 (if entry |
| 311 (let ((face (nth (if branch 1 2) entry)) | |
| 312 (read-only (eq (not branch) (nth 3 entry))) | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
313 (priority (length cpp-state-stack)) |
| 8735 | 314 (overlay (make-overlay end from))) |
| 315 (cpp-make-known-overlay from to) | |
| 316 (setq cpp-overlay-list (cons overlay cpp-overlay-list)) | |
| 317 (if priority (overlay-put overlay 'priority priority)) | |
| 318 (cond ((eq face 'invisible) | |
| 319 (cpp-make-overlay-hidden overlay)) | |
| 320 ((eq face 'default)) | |
| 321 (t | |
| 322 (overlay-put overlay 'face face))) | |
| 323 (if read-only | |
| 324 (cpp-make-overlay-read-only overlay) | |
| 325 (cpp-make-overlay-sticky overlay))) | |
| 326 (cpp-make-unknown-overlay from to)))) | |
| 327 | |
| 328 (defun cpp-parse-error (error) | |
| 329 ;; Error message issued by the cpp parser. | |
|
14417
2b2e0cef30d5
(cpp-parse-error): Fix error format string.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
330 (error "%s at line %d" error (count-lines (point-min) (point)))) |
| 8735 | 331 |
| 332 (defun cpp-parse-reset () | |
| 333 "Reset display of cpp conditionals to normal." | |
| 334 (interactive) | |
| 335 (while cpp-overlay-list | |
| 336 (delete-overlay (car cpp-overlay-list)) | |
| 337 (setq cpp-overlay-list (cdr cpp-overlay-list)))) | |
| 338 | |
| 339 ;;;###autoload | |
| 340 (defun cpp-parse-edit () | |
| 341 "Edit display information for cpp conditionals." | |
| 342 (interactive) | |
| 343 (or cpp-parse-symbols | |
|
11456
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
344 (cpp-highlight-buffer t)) |
| 8735 | 345 (let ((buffer (current-buffer))) |
| 346 (pop-to-buffer "*CPP Edit*") | |
| 347 (cpp-edit-mode) | |
| 348 (setq cpp-edit-buffer buffer) | |
| 349 (cpp-edit-reset))) | |
| 350 | |
| 351 ;;; Overlays: | |
| 352 | |
| 353 (defun cpp-make-known-overlay (start end) | |
| 354 ;; Create an overlay for a known cpp command from START to END. | |
| 355 (let ((overlay (make-overlay start end))) | |
| 356 (if (eq cpp-known-face 'invisible) | |
| 357 (cpp-make-overlay-hidden overlay) | |
| 358 (or (eq cpp-known-face 'default) | |
| 359 (overlay-put overlay 'face cpp-known-face)) | |
| 360 (if cpp-known-writable | |
| 361 () | |
| 362 (overlay-put overlay 'modification-hooks '(cpp-signal-read-only)) | |
| 363 (overlay-put overlay 'insert-in-front-hooks '(cpp-signal-read-only)))) | |
| 364 (setq cpp-overlay-list (cons overlay cpp-overlay-list)))) | |
| 365 | |
| 366 (defun cpp-make-unknown-overlay (start end) | |
| 367 ;; Create an overlay for an unknown cpp command from START to END. | |
| 368 (let ((overlay (make-overlay start end))) | |
| 369 (cond ((eq cpp-unknown-face 'invisible) | |
| 370 (cpp-make-overlay-hidden overlay)) | |
| 371 ((eq cpp-unknown-face 'default)) | |
|
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45431
diff
changeset
|
372 (t |
| 8735 | 373 (overlay-put overlay 'face cpp-unknown-face))) |
| 374 (if cpp-unknown-writable | |
| 375 () | |
| 376 (overlay-put overlay 'modification-hooks '(cpp-signal-read-only)) | |
| 377 (overlay-put overlay 'insert-in-front-hooks '(cpp-signal-read-only))) | |
| 378 (setq cpp-overlay-list (cons overlay cpp-overlay-list)))) | |
| 379 | |
| 380 (defun cpp-make-overlay-hidden (overlay) | |
| 381 ;; Make overlay hidden and intangible. | |
|
18071
bcdf720abb1a
(cpp-highlight-buffer): Make sure
Richard M. Stallman <rms@gnu.org>
parents:
17981
diff
changeset
|
382 (overlay-put overlay 'invisible 'cpp) |
|
11492
2e09c796bf70
(cpp-edit-reset): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
11480
diff
changeset
|
383 (overlay-put overlay 'modification-hooks '(cpp-signal-read-only)) |
|
2e09c796bf70
(cpp-edit-reset): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
11480
diff
changeset
|
384 (overlay-put overlay 'insert-in-front-hooks '(cpp-signal-read-only))) |
| 8735 | 385 |
| 386 (defun cpp-make-overlay-read-only (overlay) | |
| 387 ;; Make overlay read only. | |
| 388 (overlay-put overlay 'modification-hooks '(cpp-signal-read-only)) | |
| 389 (overlay-put overlay 'insert-in-front-hooks '(cpp-signal-read-only)) | |
| 390 (overlay-put overlay 'insert-behind-hooks '(cpp-signal-read-only))) | |
| 391 | |
| 392 (defun cpp-make-overlay-sticky (overlay) | |
| 393 ;; Make OVERLAY grow when you insert text at either end. | |
| 394 (overlay-put overlay 'insert-in-front-hooks '(cpp-grow-overlay)) | |
| 395 (overlay-put overlay 'insert-behind-hooks '(cpp-grow-overlay))) | |
| 396 | |
|
11492
2e09c796bf70
(cpp-edit-reset): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
11480
diff
changeset
|
397 (defun cpp-signal-read-only (overlay after start end &optional len) |
| 8735 | 398 ;; Only allow deleting the whole overlay. |
| 399 ;; Trying to change a read-only overlay. | |
|
11492
2e09c796bf70
(cpp-edit-reset): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
11480
diff
changeset
|
400 (if (and (not after) |
|
2e09c796bf70
(cpp-edit-reset): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
11480
diff
changeset
|
401 (or (< (overlay-start overlay) start) |
|
2e09c796bf70
(cpp-edit-reset): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
11480
diff
changeset
|
402 (> (overlay-end overlay) end))) |
| 8735 | 403 (error "This text is read only"))) |
| 404 | |
|
11492
2e09c796bf70
(cpp-edit-reset): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
11480
diff
changeset
|
405 (defun cpp-grow-overlay (overlay after start end &optional len) |
| 8735 | 406 ;; Make OVERLAY grow to contain range START to END. |
|
11492
2e09c796bf70
(cpp-edit-reset): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
11480
diff
changeset
|
407 (if after |
|
2e09c796bf70
(cpp-edit-reset): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
11480
diff
changeset
|
408 (move-overlay overlay |
|
2e09c796bf70
(cpp-edit-reset): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
11480
diff
changeset
|
409 (min start (overlay-start overlay)) |
|
2e09c796bf70
(cpp-edit-reset): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
11480
diff
changeset
|
410 (max end (overlay-end overlay))))) |
| 8735 | 411 |
| 412 ;;; Edit Buffer: | |
| 413 | |
| 414 (defvar cpp-edit-map nil) | |
| 415 ;; Keymap for `cpp-edit-mode'. | |
| 416 | |
| 417 (if cpp-edit-map | |
| 418 () | |
| 419 (setq cpp-edit-map (make-keymap)) | |
| 420 (suppress-keymap cpp-edit-map) | |
| 421 (define-key cpp-edit-map [ down-mouse-2 ] 'cpp-push-button) | |
| 422 (define-key cpp-edit-map [ mouse-2 ] 'ignore) | |
| 423 (define-key cpp-edit-map " " 'scroll-up) | |
| 424 (define-key cpp-edit-map "\C-?" 'scroll-down) | |
| 425 (define-key cpp-edit-map [ delete ] 'scroll-down) | |
| 426 (define-key cpp-edit-map "\C-c\C-c" 'cpp-edit-apply) | |
| 427 (define-key cpp-edit-map "a" 'cpp-edit-apply) | |
| 428 (define-key cpp-edit-map "A" 'cpp-edit-apply) | |
| 429 (define-key cpp-edit-map "r" 'cpp-edit-reset) | |
| 430 (define-key cpp-edit-map "R" 'cpp-edit-reset) | |
| 431 (define-key cpp-edit-map "s" 'cpp-edit-save) | |
| 432 (define-key cpp-edit-map "S" 'cpp-edit-save) | |
| 433 (define-key cpp-edit-map "l" 'cpp-edit-load) | |
| 434 (define-key cpp-edit-map "L" 'cpp-edit-load) | |
| 435 (define-key cpp-edit-map "h" 'cpp-edit-home) | |
| 436 (define-key cpp-edit-map "H" 'cpp-edit-home) | |
| 437 (define-key cpp-edit-map "b" 'cpp-edit-background) | |
| 438 (define-key cpp-edit-map "B" 'cpp-edit-background) | |
| 439 (define-key cpp-edit-map "k" 'cpp-edit-known) | |
| 440 (define-key cpp-edit-map "K" 'cpp-edit-known) | |
| 441 (define-key cpp-edit-map "u" 'cpp-edit-unknown) | |
| 442 (define-key cpp-edit-map "u" 'cpp-edit-unknown) | |
| 443 (define-key cpp-edit-map "t" 'cpp-edit-true) | |
| 444 (define-key cpp-edit-map "T" 'cpp-edit-true) | |
| 445 (define-key cpp-edit-map "f" 'cpp-edit-false) | |
| 446 (define-key cpp-edit-map "F" 'cpp-edit-false) | |
| 447 (define-key cpp-edit-map "w" 'cpp-edit-write) | |
| 448 (define-key cpp-edit-map "W" 'cpp-edit-write) | |
| 449 (define-key cpp-edit-map "X" 'cpp-edit-toggle-known) | |
| 450 (define-key cpp-edit-map "x" 'cpp-edit-toggle-known) | |
| 451 (define-key cpp-edit-map "Y" 'cpp-edit-toggle-unknown) | |
| 452 (define-key cpp-edit-map "y" 'cpp-edit-toggle-unknown) | |
| 453 (define-key cpp-edit-map "q" 'bury-buffer) | |
| 454 (define-key cpp-edit-map "Q" 'bury-buffer)) | |
| 455 | |
| 456 (defvar cpp-edit-symbols nil) | |
| 457 ;; Symbols defined in the edit buffer. | |
| 458 (make-variable-buffer-local 'cpp-edit-symbols) | |
| 459 | |
| 460 (defun cpp-edit-mode () | |
| 8741 | 461 "Major mode for editing the criteria for highlighting cpp conditionals. |
|
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45431
diff
changeset
|
462 Click on objects to change them. |
| 8735 | 463 You can also use the keyboard accelerators indicated like this: [K]ey." |
| 464 (kill-all-local-variables) | |
| 465 (buffer-disable-undo) | |
| 466 (auto-save-mode -1) | |
| 467 (setq buffer-read-only t) | |
| 468 (setq major-mode 'cpp-edit-mode) | |
| 469 (setq mode-name "CPP Edit") | |
| 470 (use-local-map cpp-edit-map)) | |
| 471 | |
| 472 (defun cpp-edit-apply () | |
| 473 "Apply edited display information to original buffer." | |
| 474 (interactive) | |
| 475 (cpp-edit-home) | |
|
11456
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
476 (cpp-highlight-buffer t)) |
| 8735 | 477 |
| 478 (defun cpp-edit-reset () | |
| 479 "Reset display information from original buffer." | |
| 480 (interactive) | |
| 481 (let ((buffer (current-buffer)) | |
| 482 (buffer-read-only nil) | |
| 483 (start (window-start)) | |
| 484 (pos (point)) | |
| 485 symbols) | |
| 486 (set-buffer cpp-edit-buffer) | |
| 487 (setq symbols cpp-parse-symbols) | |
| 488 (set-buffer buffer) | |
| 489 (setq cpp-edit-symbols symbols) | |
| 490 (erase-buffer) | |
| 491 (insert "CPP Display Information for `") | |
| 492 (cpp-make-button (buffer-name cpp-edit-buffer) 'cpp-edit-home) | |
|
19130
0c228cae75b5
(cpp-edit-reset): Add a close-quote after the file name.
Richard M. Stallman <rms@gnu.org>
parents:
19129
diff
changeset
|
493 (insert "'\n\nClick mouse-2 on item you want to change or use\n" |
|
11456
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
494 "or switch to this buffer and type the keyboard equivalents.\n" |
|
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
495 "Keyboard equivalents are indicated with brackets like [T]his.\n\n") |
|
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
496 (cpp-make-button "[H]ome (display the C file)" 'cpp-edit-home) |
|
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
497 (insert " ") |
|
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
498 (cpp-make-button "[A]pply new settings" 'cpp-edit-apply) |
|
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
499 (insert "\n") |
|
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
500 (cpp-make-button "[S]ave settings" 'cpp-edit-save) |
|
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
501 (insert " ") |
|
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
502 (cpp-make-button "[L]oad settings" 'cpp-edit-load) |
|
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
503 (insert "\n\n") |
|
0950bf9c8d06
(cpp-parse-open): Delete comments that go past end of line.
Richard M. Stallman <rms@gnu.org>
parents:
8741
diff
changeset
|
504 |
| 8735 | 505 (insert "[B]ackground: ") |
| 506 (cpp-make-button (car (rassq cpp-face-type cpp-face-type-list)) | |
| 507 'cpp-edit-background) | |
| 508 (insert "\n[K]nown conditionals: ") | |
| 509 (cpp-make-button (cpp-face-name cpp-known-face) | |
| 510 'cpp-edit-known nil t) | |
| 511 (insert " [X] ") | |
| 512 (cpp-make-button (car (rassq cpp-known-writable cpp-writable-list)) | |
| 513 'cpp-edit-toggle-known) | |
| 514 (insert "\n[U]nknown conditionals: ") | |
| 515 (cpp-make-button (cpp-face-name cpp-unknown-face) | |
| 516 'cpp-edit-unknown nil t) | |
| 517 (insert " [Y] ") | |
| 518 (cpp-make-button (car (rassq cpp-unknown-writable cpp-writable-list)) | |
| 519 'cpp-edit-toggle-unknown) | |
| 520 (insert (format "\n\n\n%39s: %14s %14s %7s\n\n" "Expression" | |
| 521 "[T]rue Face" "[F]alse Face" "[W]rite")) | |
| 522 (while symbols | |
| 523 (let* ((symbol (car symbols)) | |
| 524 (entry (assoc symbol cpp-edit-list)) | |
| 525 (true (nth 1 entry)) | |
| 526 (false (nth 2 entry)) | |
| 527 (write (if entry (nth 3 entry) 'both))) | |
| 528 (setq symbols (cdr symbols)) | |
| 529 | |
| 530 (if (and entry ; Make default entries unknown. | |
| 531 (or (null true) (eq true 'default)) | |
| 532 (or (null false) (eq false 'default)) | |
| 533 (eq write 'both)) | |
| 534 (setq cpp-edit-list (delq entry cpp-edit-list) | |
| 535 entry nil)) | |
|
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45431
diff
changeset
|
536 |
|
11492
2e09c796bf70
(cpp-edit-reset): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
11480
diff
changeset
|
537 (if (> (length symbol) 39) |
| 8735 | 538 (insert (substring symbol 0 39) ": ") |
| 539 (insert (format "%39s: " symbol))) | |
| 540 | |
| 541 (cpp-make-button (cpp-face-name true) | |
| 542 'cpp-edit-true symbol t 14) | |
| 543 (insert " ") | |
| 544 (cpp-make-button (cpp-face-name false) | |
| 545 'cpp-edit-false symbol t 14) | |
| 546 (insert " ") | |
| 547 (cpp-make-button (car (rassq write cpp-branch-list)) | |
| 548 'cpp-edit-write symbol nil 6) | |
| 549 (insert "\n"))) | |
| 550 (insert "\n\n") | |
| 551 (set-window-start nil start) | |
| 552 (goto-char pos))) | |
| 553 | |
| 554 (defun cpp-edit-load () | |
| 555 "Load cpp configuration." | |
| 556 (interactive) | |
|
16681
58b38425b463
(cpp-edit-load): Don't load anything if init-file-user is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14417
diff
changeset
|
557 (cond ((null init-file-user) |
|
58b38425b463
(cpp-edit-load): Don't load anything if init-file-user is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14417
diff
changeset
|
558 ;; If -q was specified, don't load any init files. |
|
58b38425b463
(cpp-edit-load): Don't load anything if init-file-user is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14417
diff
changeset
|
559 nil) |
|
58b38425b463
(cpp-edit-load): Don't load anything if init-file-user is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14417
diff
changeset
|
560 ((file-readable-p cpp-config-file) |
|
13911
3e9e8b468bc1
(cpp-config-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11492
diff
changeset
|
561 (load-file cpp-config-file)) |
|
3e9e8b468bc1
(cpp-config-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11492
diff
changeset
|
562 ((file-readable-p (concat "~/" cpp-config-file)) |
|
3e9e8b468bc1
(cpp-config-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11492
diff
changeset
|
563 (load-file cpp-config-file))) |
|
8740
714588372e06
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8736
diff
changeset
|
564 (if (eq major-mode 'cpp-edit-mode) |
|
714588372e06
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
8736
diff
changeset
|
565 (cpp-edit-reset))) |
| 8735 | 566 |
| 567 (defun cpp-edit-save () | |
|
16681
58b38425b463
(cpp-edit-load): Don't load anything if init-file-user is nil.
Richard M. Stallman <rms@gnu.org>
parents:
14417
diff
changeset
|
568 "Save the current cpp configuration in a file." |
| 8735 | 569 (interactive) |
| 570 (require 'pp) | |
| 571 (save-excursion | |
| 572 (set-buffer cpp-edit-buffer) | |
|
13911
3e9e8b468bc1
(cpp-config-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11492
diff
changeset
|
573 (let ((buffer (find-file-noselect cpp-config-file))) |
| 8735 | 574 (set-buffer buffer) |
| 575 (erase-buffer) | |
| 576 (pp (list 'setq 'cpp-known-face | |
| 577 (list 'quote cpp-known-face)) buffer) | |
| 578 (pp (list 'setq 'cpp-unknown-face | |
| 579 (list 'quote cpp-unknown-face)) buffer) | |
| 580 (pp (list 'setq 'cpp-face-type | |
| 581 (list 'quote cpp-face-type)) buffer) | |
| 582 (pp (list 'setq 'cpp-known-writable | |
| 583 (list 'quote cpp-known-writable)) buffer) | |
| 584 (pp (list 'setq 'cpp-unknown-writable | |
| 585 (list 'quote cpp-unknown-writable)) buffer) | |
| 586 (pp (list 'setq 'cpp-edit-list | |
| 587 (list 'quote cpp-edit-list)) buffer) | |
|
13911
3e9e8b468bc1
(cpp-config-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
11492
diff
changeset
|
588 (write-file cpp-config-file)))) |
| 8735 | 589 |
| 590 (defun cpp-edit-home () | |
| 591 "Switch back to original buffer." | |
| 592 (interactive) | |
| 593 (if cpp-button-event | |
| 594 (read-event)) | |
| 595 (pop-to-buffer cpp-edit-buffer)) | |
| 596 | |
| 597 (defun cpp-edit-background () | |
| 598 "Change default face collection." | |
| 599 (interactive) | |
| 600 (call-interactively 'cpp-choose-default-face) | |
| 601 (cpp-edit-reset)) | |
| 602 | |
| 603 (defun cpp-edit-known () | |
| 604 "Select default for known conditionals." | |
| 605 (interactive) | |
| 606 (setq cpp-known-face (cpp-choose-face "Known face" cpp-known-face)) | |
| 607 (cpp-edit-reset)) | |
| 608 | |
| 609 (defun cpp-edit-unknown () | |
| 610 "Select default for unknown conditionals." | |
| 611 (interactive) | |
| 612 (setq cpp-unknown-face (cpp-choose-face "Unknown face" cpp-unknown-face)) | |
| 613 (cpp-edit-reset)) | |
| 614 | |
| 615 (defun cpp-edit-toggle-known (arg) | |
| 616 "Toggle writable status for known conditionals. | |
| 617 With optional argument ARG, make them writable iff ARG is positive." | |
| 618 (interactive "@P") | |
| 619 (if (or (and (null arg) cpp-known-writable) | |
| 620 (<= (prefix-numeric-value arg) 0)) | |
| 621 (setq cpp-known-writable nil) | |
| 622 (setq cpp-known-writable t)) | |
| 623 (cpp-edit-reset)) | |
| 624 | |
| 625 (defun cpp-edit-toggle-unknown (arg) | |
| 626 "Toggle writable status for unknown conditionals. | |
| 627 With optional argument ARG, make them writable iff ARG is positive." | |
| 628 (interactive "@P") | |
| 629 (if (or (and (null arg) cpp-unknown-writable) | |
| 630 (<= (prefix-numeric-value arg) 0)) | |
| 631 (setq cpp-unknown-writable nil) | |
| 632 (setq cpp-unknown-writable t)) | |
| 633 (cpp-edit-reset)) | |
| 634 | |
| 635 (defun cpp-edit-true (symbol face) | |
| 636 "Select SYMBOL's true FACE used for highlighting taken conditionals." | |
| 637 (interactive | |
| 638 (let ((symbol (cpp-choose-symbol))) | |
| 639 (list symbol | |
| 640 (cpp-choose-face "True face" | |
| 641 (nth 1 (assoc symbol cpp-edit-list)))))) | |
| 642 (setcar (nthcdr 1 (cpp-edit-list-entry-get-or-create symbol)) face) | |
| 643 (cpp-edit-reset)) | |
| 644 | |
| 645 (defun cpp-edit-false (symbol face) | |
| 646 "Select SYMBOL's false FACE used for highlighting untaken conditionals." | |
| 647 (interactive | |
| 648 (let ((symbol (cpp-choose-symbol))) | |
| 649 (list symbol | |
|
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
45431
diff
changeset
|
650 (cpp-choose-face "False face" |
| 8735 | 651 (nth 2 (assoc symbol cpp-edit-list)))))) |
| 652 (setcar (nthcdr 2 (cpp-edit-list-entry-get-or-create symbol)) face) | |
| 653 (cpp-edit-reset)) | |
| 654 | |
| 655 (defun cpp-edit-write (symbol branch) | |
| 656 "Set which branches of SYMBOL should be writable to BRANCH. | |
| 657 BRANCH should be either nil (false branch), t (true branch) or 'both." | |
| 658 (interactive (list (cpp-choose-symbol) (cpp-choose-branch))) | |
| 659 (setcar (nthcdr 3 (cpp-edit-list-entry-get-or-create symbol)) branch) | |
| 660 (cpp-edit-reset)) | |
| 661 | |
| 662 (defun cpp-edit-list-entry-get-or-create (symbol) | |
| 663 ;; Return the entry for SYMBOL in `cpp-edit-list'. | |
| 664 ;; If it does not exist, create it. | |
| 665 (let ((entry (assoc symbol cpp-edit-list))) | |
| 666 (or entry | |
| 667 (setq entry (list symbol nil nil 'both nil) | |
| 668 cpp-edit-list (cons entry cpp-edit-list))) | |
| 669 entry)) | |
| 670 | |
| 671 ;;; Prompts: | |
| 672 | |
| 673 (defun cpp-choose-symbol () | |
| 674 ;; Choose a symbol if called from keyboard, otherwise use the one clicked on. | |
| 675 (if cpp-button-event | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
676 cpp-callback-data |
|
45431
7505ed4a9b60
(cpp-choose-symbol): Don't cons unnecessarily.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
40955
diff
changeset
|
677 (completing-read "Symbol: " cpp-edit-symbols nil t))) |
| 8735 | 678 |
| 679 (defun cpp-choose-branch () | |
| 680 ;; Choose a branch, either nil, t, or both. | |
| 681 (if cpp-button-event | |
| 682 (x-popup-menu cpp-button-event | |
| 683 (list "Branch" (cons "Branch" cpp-branch-list))) | |
| 684 (cdr (assoc (completing-read "Branch: " cpp-branch-list nil t) | |
| 685 cpp-branch-list)))) | |
| 686 | |
| 687 (defun cpp-choose-face (prompt default) | |
|
40955
eb0bdaed72a8
(cpp-choose-face): Fix typo.
Pavel Jan?k <Pavel@Janik.cz>
parents:
38436
diff
changeset
|
688 ;; Choose a face from cpp-face-default-list. |
| 8735 | 689 ;; PROMPT is what to say to the user. |
| 690 ;; DEFAULT is the default face. | |
| 691 (or (if cpp-button-event | |
| 692 (x-popup-menu cpp-button-event | |
| 693 (list prompt (cons prompt cpp-face-default-list))) | |
| 694 (let ((name (car (rassq default cpp-face-default-list)))) | |
| 695 (cdr (assoc (completing-read (if name | |
| 696 (concat prompt | |
| 697 " (default " name "): ") | |
| 698 (concat prompt ": ")) | |
| 699 cpp-face-default-list nil t) | |
| 700 cpp-face-all-list)))) | |
| 701 default)) | |
| 702 | |
| 703 (defun cpp-choose-default-face (type) | |
| 704 ;; Choose default face list for screen of TYPE. | |
| 705 ;; Type must be one of the types defined in `cpp-face-type-list'. | |
| 706 (interactive (list (if cpp-button-event | |
| 707 (x-popup-menu cpp-button-event | |
| 708 (list "Screen type" | |
| 709 (cons "Screen type" | |
| 710 cpp-face-type-list))) | |
| 711 (cdr (assoc (completing-read "Screen type: " | |
| 712 cpp-face-type-list | |
| 713 nil t) | |
| 714 cpp-face-type-list))))) | |
| 715 (cond ((null type)) | |
| 716 ((eq type 'light) | |
| 717 (if cpp-face-light-list | |
| 718 () | |
| 719 (setq cpp-face-light-list | |
| 720 (mapcar 'cpp-create-bg-face cpp-face-light-name-list)) | |
| 721 (setq cpp-face-all-list | |
| 722 (append cpp-face-all-list cpp-face-light-list))) | |
| 723 (setq cpp-face-type 'light) | |
| 724 (setq cpp-face-default-list | |
| 725 (append cpp-face-light-list cpp-face-none-list))) | |
| 726 ((eq type 'dark) | |
| 727 (if cpp-face-dark-list | |
| 728 () | |
| 729 (setq cpp-face-dark-list | |
| 730 (mapcar 'cpp-create-bg-face cpp-face-dark-name-list)) | |
| 731 (setq cpp-face-all-list | |
| 732 (append cpp-face-all-list cpp-face-dark-list))) | |
| 733 (setq cpp-face-type 'dark) | |
| 734 (setq cpp-face-default-list | |
| 735 (append cpp-face-dark-list cpp-face-none-list))) | |
| 736 ((eq type 'mono) | |
| 737 (setq cpp-face-type 'mono) | |
| 738 (setq cpp-face-default-list | |
| 739 (append cpp-face-mono-list cpp-face-none-list))) | |
| 740 (t | |
| 741 (setq cpp-face-type 'none) | |
| 742 (setq cpp-face-default-list cpp-face-none-list)))) | |
| 743 | |
| 744 ;;; Buttons: | |
| 745 | |
| 746 (defun cpp-make-button (name callback &optional data face padding) | |
| 747 ;; Create a button at point. | |
| 748 ;; NAME is the name of the button. | |
| 749 ;; CALLBACK is the function to call when the button is pushed. | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
750 ;; DATA will be made available to CALLBACK |
|
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
751 ;;in the free variable cpp-callback-data. |
| 8735 | 752 ;; FACE means that NAME is the name of a face in `cpp-face-all-list'. |
| 753 ;; PADDING means NAME will be right justified at that length. | |
| 754 (let ((name (format "%s" name)) | |
| 755 from to) | |
| 756 (cond ((null padding) | |
| 757 (setq from (point)) | |
| 758 (insert name)) | |
| 759 ((> (length name) padding) | |
| 760 (setq from (point)) | |
| 761 (insert (substring name 0 padding))) | |
| 762 (t | |
| 763 (insert (make-string (- padding (length name)) ? )) | |
| 764 (setq from (point)) | |
| 765 (insert name))) | |
| 766 (setq to (point)) | |
| 767 (setq face | |
| 768 (if face | |
| 769 (let ((check (cdr (assoc name cpp-face-all-list)))) | |
| 770 (if (memq check '(default invisible)) | |
| 771 'bold | |
| 772 check)) | |
| 773 'bold)) | |
| 774 (add-text-properties from to | |
| 775 (append (list 'face face) | |
| 776 '(mouse-face highlight) | |
|
38078
8bc0292b0367
(cpp-make-button): Add help-echo to mouse-highlighted text.
Eli Zaretskii <eliz@gnu.org>
parents:
30541
diff
changeset
|
777 '(help-echo "mouse-2: change/use this item") |
| 8735 | 778 (list 'cpp-callback callback) |
| 779 (if data (list 'cpp-data data)))))) | |
| 780 | |
| 781 (defun cpp-push-button (event) | |
| 782 ;; Pushed a CPP button. | |
| 783 (interactive "@e") | |
| 784 (set-buffer (window-buffer (posn-window (event-start event)))) | |
| 785 (let ((pos (posn-point (event-start event)))) | |
|
11480
5865f4bc9521
(cpp-edit-list): Move definition toward start of file.
Richard M. Stallman <rms@gnu.org>
parents:
11456
diff
changeset
|
786 (let ((cpp-callback-data (get-text-property pos 'cpp-data)) |
| 8735 | 787 (fun (get-text-property pos 'cpp-callback)) |
| 788 (cpp-button-event event)) | |
| 789 (cond (fun | |
| 790 (call-interactively (get-text-property pos 'cpp-callback))) | |
| 791 ((lookup-key global-map [ down-mouse-2]) | |
| 792 (call-interactively (lookup-key global-map [ down-mouse-2]))))))) | |
| 793 | |
| 794 ;;; Faces: | |
| 795 | |
| 796 (defun cpp-create-bg-face (color) | |
| 797 ;; Create entry for face with background COLOR. | |
|
19129
35d85b50c3cb
(cpp-create-bg-face): Don't really make a face.
Richard M. Stallman <rms@gnu.org>
parents:
19009
diff
changeset
|
798 (cons color (cons 'background-color color))) |
| 8735 | 799 |
|
30541
d5e4d3d5012c
(toplevel): Support faces on tty's.
Eli Zaretskii <eliz@gnu.org>
parents:
28467
diff
changeset
|
800 (cpp-choose-default-face |
|
d5e4d3d5012c
(toplevel): Support faces on tty's.
Eli Zaretskii <eliz@gnu.org>
parents:
28467
diff
changeset
|
801 (if (or window-system (display-color-p)) cpp-face-type 'none)) |
| 8735 | 802 |
| 803 (defun cpp-face-name (face) | |
| 804 ;; Return the name of FACE from `cpp-face-all-list'. | |
| 805 (let ((entry (rassq (if face face 'default) cpp-face-all-list))) | |
| 806 (if entry | |
| 807 (car entry) | |
| 808 (format "<%s>" face)))) | |
| 809 | |
| 810 ;;; Utilities: | |
| 811 | |
| 812 (defvar cpp-progress-time 0) | |
| 813 ;; Last time we issued a progress message. | |
| 814 | |
| 815 (defun cpp-progress-message (&rest args) | |
| 816 ;; Report progress at most once a second. Take same ARGS as `message'. | |
| 817 (let ((time (nth 1 (current-time)))) | |
| 818 (if (= time cpp-progress-time) | |
| 819 () | |
| 820 (setq cpp-progress-time time) | |
| 821 (apply 'message args)))) | |
| 822 | |
| 823 (provide 'cpp) | |
| 824 | |
| 52401 | 825 ;;; arch-tag: fb7d433d-745d-495a-96f0-86908ab63f74 |
| 8735 | 826 ;;; cpp.el ends here |
