Update years in copyright notice; nfc.
[bpt/emacs.git] / lisp / fringe.el
CommitLineData
02f4566a
SJ
1;;; fringe.el --- change fringes appearance in various ways
2
aaef169d 3;; Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
02f4566a
SJ
4
5;; Author: Simon Josefsson <simon@josefsson.org>
6;; Maintainer: FSF
7;; Keywords: frames
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
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.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
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.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
02f4566a
SJ
25
26;;; Commentary:
27
28;; This file contains helpful functions for customizing the appearance
29;; of the fringe.
30
31;; The code is influenced by scroll-bar.el and avoid.el. The author
32;; gratefully acknowledge comments and suggestions made by Miles
33;; Bader, Eli Zaretski, Richard Stallman, Pavel Janík and others which
34;; improved this package.
35
36;;; Code:
37
41e1c123
KS
38(defgroup fringe nil
39 "Window fringes."
bf247b6e 40 :version "22.1"
41e1c123
KS
41 :group 'frames)
42
c3c6c23c
KS
43;; Standard fringe bitmaps
44
822c2a0a
KS
45(defmacro fringe-bitmap-p (symbol)
46 "Return non-nil if SYMBOL is a fringe bitmap."
47 `(get ,symbol 'fringe))
48
49(defvar fringe-bitmaps)
50
3c3202f0
KS
51(unless (or (not (boundp 'fringe-bitmaps))
52 (get 'left-truncation 'fringe))
822c2a0a
KS
53 (let ((bitmaps '(left-truncation right-truncation
54 up-arrow down-arrow
55 continued-line continuation-line
56 overlay-arrow
57 top-left-angle top-right-angle
58 bottom-left-angle bottom-right-angle
59 left-bracket right-bracket
60 filled-box-cursor hollow-box-cursor hollow-square
61 bar-cursor hbar-cursor
62 empty-line))
63 (bn 2))
64 (while bitmaps
65 (push (car bitmaps) fringe-bitmaps)
66 (put (car bitmaps) 'fringe bn)
67 (setq bitmaps (cdr bitmaps)
68 bn (1+ bn)))))
c3c6c23c
KS
69
70
71;; Control presence of fringes
72
02f4566a
SJ
73(defvar fringe-mode)
74
75(defun set-fringe-mode-1 (ignore value)
76 "Call `set-fringe-mode' with VALUE.
77See `fringe-mode' for valid values and their effect.
78This is usually invoked when setting `fringe-mode' via customize."
79 (set-fringe-mode value))
80
81(defun set-fringe-mode (value)
82 "Set `fringe-mode' to VALUE and put the new value into effect.
83See `fringe-mode' for possible values and their effect."
84 (setq fringe-mode value)
85
86 ;; Apply it to default-frame-alist.
87 (let ((parameter (assq 'left-fringe default-frame-alist)))
88 (if (consp parameter)
608d30f7
SJ
89 (setcdr parameter (if (consp fringe-mode)
90 (car fringe-mode)
91 fringe-mode))
02f4566a
SJ
92 (setq default-frame-alist
93 (cons (cons 'left-fringe (if (consp fringe-mode)
94 (car fringe-mode)
95 fringe-mode))
96 default-frame-alist))))
97 (let ((parameter (assq 'right-fringe default-frame-alist)))
98 (if (consp parameter)
608d30f7
SJ
99 (setcdr parameter (if (consp fringe-mode)
100 (cdr fringe-mode)
101 fringe-mode))
02f4566a
SJ
102 (setq default-frame-alist
103 (cons (cons 'right-fringe (if (consp fringe-mode)
104 (cdr fringe-mode)
105 fringe-mode))
106 default-frame-alist))))
107
108 ;; Apply it to existing frames.
109 (let ((frames (frame-list)))
110 (while frames
111 (modify-frame-parameters
112 (car frames)
113 (list (cons 'left-fringe (if (consp fringe-mode)
114 (car fringe-mode)
115 fringe-mode))
116 (cons 'right-fringe (if (consp fringe-mode)
117 (cdr fringe-mode)
118 fringe-mode))))
119 (setq frames (cdr frames)))))
120
efa0a47a
RS
121;; For initialization of fringe-mode, take account of changes
122;; made explicitly to default-frame-alist.
123(defun fringe-mode-initialize (symbol value)
124 (let* ((left-pair (assq 'left-fringe default-frame-alist))
125 (right-pair (assq 'right-fringe default-frame-alist))
126 (left (cdr left-pair))
127 (right (cdr right-pair)))
128 (if (or left-pair right-pair)
129 ;; If there's something in default-frame-alist for fringes,
130 ;; don't change it, but reflect that into the value of fringe-mode.
131 (progn
132 (setq fringe-mode (cons left right))
133 (if (equal fringe-mode '(nil . nil))
134 (setq fringe-mode nil))
135 (if (equal fringe-mode '(0 . 0))
136 (setq fringe-mode 0)))
137 ;; Otherwise impose the user-specified value of fringe-mode.
138 (custom-initialize-reset symbol value))))
139
60e3dd14 140;;;###autoload
02f4566a
SJ
141(defcustom fringe-mode nil
142 "*Specify appearance of fringes on all frames.
143This variable can be nil (the default) meaning the fringes should have
144the default width (8 pixels), it can be an integer value specifying
145the width of both left and right fringe (where 0 means no fringe), or
146a cons cell where car indicates width of left fringe and cdr indicates
147width of right fringe (where again 0 can be used to indicate no
148fringe).
149To set this variable in a Lisp program, use `set-fringe-mode' to make
150it take real effect.
151Setting the variable with a customization buffer also takes effect.
152If you only want to modify the appearance of the fringe in one frame,
feed81e9 153you can use the interactive function `set-fringe-style'."
02f4566a
SJ
154 :type '(choice (const :tag "Default width" nil)
155 (const :tag "No fringes" 0)
156 (const :tag "Only right" (0 . nil))
157 (const :tag "Only left" (nil . 0))
158 (const :tag "Half width" (5 . 5))
255866b7 159 (const :tag "Minimal" (1 . 1))
02f4566a
SJ
160 (integer :tag "Specific width")
161 (cons :tag "Different left/right sizes"
162 (integer :tag "Left width")
163 (integer :tag "Right width")))
41e1c123 164 :group 'fringe
02f4566a 165 :require 'fringe
efa0a47a 166 :initialize 'fringe-mode-initialize
02f4566a
SJ
167 :set 'set-fringe-mode-1)
168
169(defun fringe-query-style (&optional all-frames)
170 "Query user for fringe style.
171Returns values suitable for left-fringe and right-fringe frame parameters.
172If ALL-FRAMES, the negation of the fringe values in
173`default-frame-alist' is used when user enters the empty string.
174Otherwise the negation of the fringe value in the currently selected
175frame parameter is used."
176 (let ((mode (intern (completing-read
feed81e9
JL
177 (concat
178 "Select fringe mode for "
179 (if all-frames "all frames" "selected frame")
180 " (type ? for list): ")
02f4566a 181 '(("none") ("default") ("left-only")
19c8fe75 182 ("right-only") ("half") ("minimal"))
02f4566a
SJ
183 nil t))))
184 (cond ((eq mode 'none) 0)
185 ((eq mode 'default) nil)
186 ((eq mode 'left-only) '(nil . 0))
187 ((eq mode 'right-only) '(0 . nil))
188 ((eq mode 'half) '(5 . 5))
19c8fe75 189 ((eq mode 'minimal) '(1 . 1))
02f4566a
SJ
190 ((eq mode (intern ""))
191 (if (eq 0 (cdr (assq 'left-fringe
192 (if all-frames
193 default-frame-alist
194 (frame-parameters (selected-frame))))))
195 nil
196 0)))))
197
198;;;###autoload
199(defun fringe-mode (&optional mode)
1c907043 200 "Set the default appearance of fringes on all frames.
af15cfe8 201
1c907043
LK
202When called interactively, query the user for MODE. Valid values
203for MODE include `none', `default', `left-only', `right-only',
204`minimal' and `half'.
af15cfe8
LK
205
206When used in a Lisp program, MODE can be a cons cell where the
207integer in car specifies the left fringe width and the integer in
208cdr specifies the right fringe width. MODE can also be a single
209integer that specifies both the left and the right fringe width.
1c907043
LK
210If a fringe width specification is nil, that means to use the
211default width (8 pixels). This command may round up the left and
212right width specifications to ensure that their sum is a multiple
213of the character width of a frame. It never rounds up a fringe
214width of 0.
af15cfe8
LK
215
216Fringe widths set by `set-window-fringes' override the default
217fringe widths set by this command. This command applies to all
218frames that exist and frames to be created in the future. If you
219want to set the default appearance of fringes on the selected
220frame only, see the command `set-fringe-style'."
02f4566a
SJ
221 (interactive (list (fringe-query-style 'all-frames)))
222 (set-fringe-mode mode))
223
224;;;###autoload
225(defun set-fringe-style (&optional mode)
1c907043 226 "Set the default appearance of fringes on the selected frame.
af15cfe8 227
1c907043
LK
228When called interactively, query the user for MODE. Valid values
229for MODE include `none', `default', `left-only', `right-only',
230`minimal' and `half'.
af15cfe8
LK
231
232When used in a Lisp program, MODE can be a cons cell where the
233integer in car specifies the left fringe width and the integer in
234cdr specifies the right fringe width. MODE can also be a single
235integer that specifies both the left and the right fringe width.
1c907043
LK
236If a fringe width specification is nil, that means to use the
237default width (8 pixels). This command may round up the left and
238right width specifications to ensure that their sum is a multiple
239of the character width of a frame. It never rounds up a fringe
240width of 0.
af15cfe8
LK
241
242Fringe widths set by `set-window-fringes' override the default
243fringe widths set by this command. If you want to set the
244default appearance of fringes on all frames, see the command
245`fringe-mode'."
02f4566a
SJ
246 (interactive (list (fringe-query-style)))
247 (modify-frame-parameters
248 (selected-frame)
249 (list (cons 'left-fringe (if (consp mode) (car mode) mode))
250 (cons 'right-fringe (if (consp mode) (cdr mode) mode)))))
251
9fd76d04
MY
252(defsubst fringe-columns (side &optional real)
253 "Return the width, measured in columns, of the fringe area on SIDE.
254If optional argument REAL is non-nil, return a real floating point
255number instead of a rounded integer value.
256SIDE must be the symbol `left' or `right'."
257 (funcall (if real '/ 'ceiling)
258 (or (funcall (if (eq side 'left) 'car 'cadr)
259 (window-fringes))
260 0)
261 (float (frame-char-width))))
822c2a0a 262
02f4566a
SJ
263(provide 'fringe)
264
ab5796a9 265;;; arch-tag: 6611ef60-0869-47ed-8b93-587ee7d3ff5d
02f4566a 266;;; fringe.el ends here