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