XEmacs 21.2.32 "Kastor & Polydeukes".
[chise/xemacs-chise.git.1] / lisp / font-menu.el
1 ;; font-menu.el --- Managing menus of fonts.
2
3 ;; Copyright (C) 1994 Free Software Foundation, Inc.
4 ;; Copyright (C) 1995 Tinker Systems and INS Engineering Corp.
5 ;; Copyright (C) 1997 Sun Microsystems
6
7 ;; Adapted from x-font-menu.el by Andy Piper <andy@xemacs.org>
8
9 ;; This file is part of XEmacs.
10
11 ;; XEmacs is free software; you can redistribute it and/or modify it
12 ;; 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 ;; XEmacs is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 ;; General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with XEmacs; see the file COPYING.  If not, write to the 
23 ;; Free Software Foundation, 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;; This file contains the device-nospecific font menu stuff
27
28 ;;; Commentary:
29 ;;;
30 ;;; Creates three menus, "Font", "Size", and "Weight", and puts them on the
31 ;;; "Options" menu.  The contents of these menus are the superset of those
32 ;;; properties available on any fonts, but only the intersection of the three
33 ;;; sets is selectable at one time.
34 ;;;
35 ;;; Known Problems:
36 ;;; ===============
37 ;;; Items on the Font menu are selectable if and only if that font exists in
38 ;;; the same size and weight as the current font.  This means that some fonts
39 ;;; are simply not reachable from some other fonts - if only one font comes
40 ;;; in only one point size (like "Nil", which comes only in 2), you will never
41 ;;; be able to select it.  It would be better if the items on the Fonts menu
42 ;;; were always selectable, and selecting them would set the size to be the
43 ;;; closest size to the current font's size.
44 ;;;
45 ;;; This attempts to change all other faces in an analogous way to the change
46 ;;; that was made to the default face; if it can't, it will skip over the face.
47 ;;; However, this could leave incongruous font sizes around, which may cause
48 ;;; some nonreversibility problems if further changes are made.  Perhaps it
49 ;;; should remember the initial fonts of all faces, and derive all subsequent
50 ;;; fonts from that initial state.
51 ;;;
52 ;;; xfontsel(1) is a lot more flexible (but probably harder to understand).
53 ;;;
54 ;;; The code to construct menus from all of the x11 fonts available from the
55 ;;; server is autoloaded and executed the very first time that one of the Font
56 ;;; menus is selected on each device.  That is, if XEmacs has frames on two
57 ;;; different devices, then separate font menu information will be maintained
58 ;;; for each X display.  If the font path changes after emacs has already
59 ;;; asked the X server on a particular display for its list of fonts, this
60 ;;; won't notice.  Also, the first time that a font menu is posted on each
61 ;;; display will entail a lengthy delay, but that's better than slowing down
62 ;;; XEmacs startup.  At any time (i.e.: after a font-path change or
63 ;;; immediately after device creation), you can call
64 ;;; `reset-device-font-menus' to rebuild the menus from all currently
65 ;;; available fonts.
66 ;;;
67 ;;; There is knowledge here about the regexp match numbers in
68 ;;; `mswindows-font-regexp' and `mswindows-font-regexp-foundry-and-family' defined in
69 ;;; mswindows-faces.el.
70 ;;;
71 ;;; There are at least three kinds of fonts under X11r5:
72 ;;;
73 ;;; - bitmap fonts, which can be assumed to look as good as possible;
74 ;;; - bitmap fonts which have been (or can be) automatically scaled to
75 ;;;   a new size, and which almost always look awful;
76 ;;; - and true outline fonts, which should look ok at any size, but in
77 ;;;   practice (on at least some systems) look awful at any size, and
78 ;;;   even in theory are unlikely ever to look as good as non-scaled
79 ;;;   bitmap fonts.
80 ;;;
81 ;;; It would be nice to get this code to look for non-scaled bitmap fonts
82 ;;; first, then outline fonts, then scaled bitmap fonts as a last resort.
83 ;;; But it's not clear to me how to tell them apart based on their truenames
84 ;;; and/or the result of XListFonts().  I welcome any and all explanations
85 ;;; of the subtleties involved...
86 ;;;
87 ;;;
88 ;;; If You Think You'Re Seeing A Bug:
89 ;;; =================================
90 ;;; When reporting problems, send the following information:
91 ;;;
92 ;;; - Exactly what behavior you're seeing;
93 ;;; - The output of the `xlsfonts' program;
94 ;;; - The value of the variable `device-fonts-cache';
95 ;;; - The values of the following expressions, both before and after
96 ;;;   making a selection from any of the fonts-related menus:
97 ;;;     (face-font 'default)
98 ;;;     (font-truename   (face-font 'default))
99 ;;;     (font-properties (face-font 'default))
100 ;;; - The values of the following variables after making a selection:
101 ;;;     font-menu-preferred-resolution
102 ;;;     font-menu-registry-encoding
103 ;;;
104 ;;; There is a common misconception that "*-courier-medium-r-*-11-*", also
105 ;;; known as "-adobe-courier-medium-r-normal--11-80-100-100-m-60-iso8859-1",
106 ;;; is an 11-point font.  It is not -- it is an 11-pixel font at 100dpi,
107 ;;; which is an 8-point font (the number after -11- is the size in tenths
108 ;;; of points).  So if you expect to be seeing an "11" entry in the "Size"
109 ;;; menu and are not, this may be why.
110 ;;;
111 ;;; In the real world (aka Solaris), one has to deal with fonts that
112 ;;; appear to be medium-i but are really light-r, and fonts that
113 ;;; resolve to different resolutions depending on the charset:
114 ;;;
115 ;;; (font-instance-truename
116 ;;;  (make-font-instance "-*-mincho-medium-i-normal-*-*-*-*-*-*-*-jisx0201*-*"))
117 ;;; ==>
118 ;;; "-morisawa-ryumin light kl-light-r-normal--10-100-72-72-m-50-jisx0201.1976-0"
119 ;;;
120 ;;; (list-fonts "-dt-interface user-medium-r-normal-s*-*-*-*-*-*-*-*-*")
121 ;;; ==>
122 ;;; ("-dt-interface user-medium-r-normal-s sans-12-120-72-72-m-70-iso8859-1"
123 ;;;  "-dt-interface user-medium-r-normal-s-14-120-75-75-m-120-jisx0208.1983-0"
124 ;;;  "-dt-interface user-medium-r-normal-s-14-120-75-75-m-60-jisx0201.1976-0")
125
126 ;;;###autoload
127 (defcustom font-menu-ignore-scaled-fonts nil
128   "*If non-nil, then the font menu will try to show only bitmap fonts."
129   :type 'boolean
130   :group 'font-menu)
131
132 ;;;###autoload
133 (defcustom font-menu-this-frame-only-p nil
134   "*If non-nil, then changing the default font from the font menu will only
135 affect one frame instead of all frames."
136   :type 'boolean
137   :group 'font-menu)
138
139 (defcustom font-menu-max-items 25
140   "*Maximum number of items in the font menu
141 If number of entries in a menu is larger than this value, split menu
142 into submenus of nearly equal length.  If nil, never split menu into
143 submenus."
144   :group 'font-menu
145   :type '(choice (const :tag "no submenus" nil)
146                  (integer)))
147
148 (defcustom font-menu-submenu-name-format "%-12.12s ... %.12s"
149   "*Format specification of the submenu name.
150 Used by `font-menu-split-long-menu' if the number of entries in a menu is
151 larger than `font-menu-menu-max-items'.
152 This string should contain one %s for the name of the first entry and
153 one %s for the name of the last entry in the submenu.
154 If the value is a function, it should return the submenu name.  The
155 function is be called with two arguments, the names of the first and
156 the last entry in the menu."
157   :group 'font-menu
158   :type '(choice (string :tag "Format string")
159                  (function)))
160
161 (defvar font-menu-preferred-resolution 
162   (make-specifier-and-init 'generic '((global ((mswindows) . ":")
163                                               ((x) . "*-*"))) t)
164   "Preferred horizontal and vertical font menu resolution (e.g. \"75:75\").")
165
166 (defvar font-menu-size-scaling
167   (make-specifier-and-init 'integer '((global ((mswindows) . 1)
168                                               ((x) . 10))) t)
169   "Scale factor used in defining font sizes.")
170
171 ;; only call XListFonts (and parse) once per device.
172 ;; ( (device . [parsed-list-fonts family-menu size-menu weight-menu]) ...)
173 (defvar device-fonts-cache nil)
174
175 (defsubst device-fonts-cache ()
176   (or (cdr (assq (selected-device) device-fonts-cache))
177       (and (reset-device-font-menus (selected-device))
178            (cdr (assq (selected-device) device-fonts-cache)))))
179
180 ;;;###autoload
181 (fset 'install-font-menus 'reset-device-font-menus)
182 (make-obsolete 'install-font-menus 'reset-device-font-menus)
183
184 ;;;###autoload
185 (defun reset-device-font-menus (&optional device debug)
186   "Generates the `Font', `Size', and `Weight' submenus for the Options menu.
187 This is run the first time that a font-menu is needed for each device.
188 If you don't like the lazy invocation of this function, you can add it to
189 `create-device-hook' and that will make the font menus respond more quickly
190 when they are selected for the first time.  If you add fonts to your system, 
191 or if you change your font path, you can call this to re-initialize the menus."
192   (message "Getting list of fonts from server... ")
193   (if (or noninteractive
194           (not (or device (setq device (selected-device)))))
195       nil
196     (call-device-method 'reset-device-font-menus device device debug)
197     (message "Getting list of fonts from server... done.")))
198
199 (defun font-menu-split-long-menu (menu)
200   "Split MENU according to `font-menu-max-items' and add accelerator specs."
201   (let ((len (length menu)))
202     (if (or (null font-menu-max-items)
203             (null (featurep 'lisp-float-type))
204             (<= len font-menu-max-items))
205         (submenu-generate-accelerator-spec menu)
206       ;; Submenu is max 2 entries longer than menu, never shorter, number of
207       ;; entries in submenus differ by at most one (with longer submenus first)
208       (let* ((outer (floor (sqrt len)))
209              (inner (/ len outer))
210              (rest (% len outer))
211              (result nil))
212         (setq menu (reverse menu))
213         (while menu
214           (let ((in inner)
215                 (sub nil)
216                 (to (car menu)))
217             (while (> in 0)
218               (setq in   (1- in)
219                     sub  (cons (car menu) sub)
220                     menu (cdr menu)))
221             (setq result
222                   (cons (cons (if (stringp font-menu-submenu-name-format)
223                                   (format font-menu-submenu-name-format
224                                           (menu-item-strip-accelerator-spec
225                                            (aref (car sub) 0))
226                                           (menu-item-strip-accelerator-spec
227                                            (aref to 0)))
228                                 (funcall font-menu-submenu-name-format
229                                          (menu-item-strip-accelerator-spec
230                                           (aref (car sub) 0))
231                                          (menu-item-strip-accelerator-spec
232                                           (aref to 0))))
233                               (submenu-generate-accelerator-spec sub))
234                         result)
235                   rest  (1+ rest))
236             (if (= rest outer) (setq inner (1+ inner)))))
237         (submenu-generate-accelerator-spec result)))))
238
239 ;;;###autoload
240 (defun font-menu-family-constructor (ignored)
241   (catch 'menu
242     (unless (console-on-window-system-p)
243       (throw 'menu '(["Cannot parse current font" ding nil])))
244     (let* ((dcache (device-fonts-cache))
245            (font-data (font-menu-font-data 'default dcache))
246            (entry  (aref font-data 0))
247            (family (aref font-data 1))
248            (size   (aref font-data 2))
249            (weight (aref font-data 3))
250            f)
251       (unless family
252         (throw 'menu '(["Cannot parse current font" ding nil])))
253       ;; Items on the Font menu are enabled iff that font exists in
254       ;; the same size and weight as the current font (scalable fonts
255       ;; exist in every size).  Only the current font is marked as
256       ;; selected.
257       (font-menu-split-long-menu
258        (mapcar
259         (lambda (item)
260           (setq f (menu-item-strip-accelerator-spec (aref item 0))
261                 entry (vassoc f (aref dcache 0)))
262           (if (and (or (member weight (aref entry 1))
263                        ;; mswindows often allows any weight
264                        (member "" (aref entry 1)))
265                    (or (member size (aref entry 2))
266                        (and (not font-menu-ignore-scaled-fonts)
267                             (member 0 (aref entry 2)))))
268               (enable-menu-item item)
269             (disable-menu-item item))
270           (if (string-equal family f)
271               (select-toggle-menu-item item)
272             (deselect-toggle-menu-item item))
273           item)
274         (aref dcache 1))))))
275
276 (define-device-method* font-menu-font-data)
277
278 ;;;###autoload
279 (defun font-menu-size-constructor (ignored)
280   (catch 'menu
281     (unless (console-on-window-system-p)
282       (throw 'menu '(["Cannot parse current font" ding nil])))
283     (let* ((dcache (device-fonts-cache))
284            (font-data (font-menu-font-data 'default dcache))
285            (entry  (aref font-data 0))
286            (family (aref font-data 1))
287            (size   (aref font-data 2))
288            ;;(weight (aref font-data 3))
289            s)
290       (unless family
291         (throw 'menu '(["Cannot parse current font" ding nil])))
292       ;; Items on the Size menu are enabled iff current font has
293       ;; that size.  Only the size of the current font is selected.
294       ;; (If the current font comes in size 0, it is scalable, and
295       ;; thus has every size.)
296       (mapcar
297        (lambda (item)
298          (setq s (nth 3 (aref item 1)))
299          (if (or (member s (aref entry 2))
300                  (and (not font-menu-ignore-scaled-fonts)
301                       (member 0 (aref entry 2))))
302              (enable-menu-item item)
303            (disable-menu-item item))
304          (if (eq size s)
305              (select-toggle-menu-item item)
306            (deselect-toggle-menu-item item))
307          item)
308        (submenu-generate-accelerator-spec (aref dcache 2))))))
309
310 ;;;###autoload
311 (defun font-menu-weight-constructor (ignored)
312   (catch 'menu
313     (unless (console-on-window-system-p)
314       (throw 'menu '(["Cannot parse current font" ding nil])))
315     (let* ((dcache (device-fonts-cache))
316            (font-data (font-menu-font-data 'default dcache))
317            (entry  (aref font-data 0))
318            (family (aref font-data 1))
319            ;;(size   (aref font-data 2))
320            (weight (aref font-data 3))
321            w)
322       (unless family
323         (throw 'menu '(["Cannot parse current font" ding nil])))
324       ;; Items on the Weight menu are enabled iff current font
325       ;; has that weight.  Only the weight of the current font
326       ;; is selected.
327       (mapcar
328        (lambda (item)
329          (setq w (aref item 0))
330          (if (member w (aref entry 1))
331              (enable-menu-item item)
332            (disable-menu-item item))
333          (if (string-equal weight w)
334              (select-toggle-menu-item item)
335            (deselect-toggle-menu-item item))
336          item)
337        (submenu-generate-accelerator-spec (aref dcache 3))))))
338
339 \f
340 ;;; Changing font sizes
341
342 (defun font-menu-set-font (family weight size)
343   ;; This is what gets run when an item is selected from any of the three
344   ;; fonts menus.  It needs to be rather clever.
345   ;; (size is measured in 10ths of points.)
346   (let* ((dcache (device-fonts-cache))
347          (font-data (font-menu-font-data 'default dcache))
348          (from-family (aref font-data 1))
349          (from-size   (aref font-data 2))
350            (from-weight (aref font-data 3))
351          (from-slant  (aref font-data 4))
352          (face-list-to-change (delq 'default (face-list)))
353          new-default-face-font)
354     (unless from-family
355       (signal 'error '("couldn't parse font name for default face")))
356     (when weight
357       (signal 'error '("Setting weight currently not supported")))
358     (setq new-default-face-font
359           (font-menu-load-font 
360            (or family from-family)
361            (or weight from-weight)
362            (or size   from-size)
363            from-slant
364            (specifier-instance
365             font-menu-preferred-resolution (selected-device))))
366     ;; This is such a gross hack. The border-glyph face under
367     ;; mswindows is in a symbol font. Thus it will not appear in the
368     ;; cache - being a junk family.  What we should do is change the
369     ;; size but not the family, but this is more work than I care to
370     ;; invest at the moment.
371     (when (eq (device-type) 'mswindows)
372       (setq face-list-to-change
373             (delq 'border-glyph face-list-to-change)))
374     (dolist (face face-list-to-change)
375       (when (face-font-instance face)
376         (message "Changing font of `%s'..." face)
377         (condition-case c
378             (font-menu-change-face face
379                                    from-family from-weight from-size
380                                    family      weight      size)
381           (error
382            (display-error c nil)
383            (sit-for 1)))))
384     ;; Set the default face's font after hacking the other faces, so that
385     ;; the frame size doesn't change until we are all done.
386
387     ;; If we need to be frame local we do the changes ourselves.
388     (if font-menu-this-frame-only-p
389     ;;; WMP - we need to honor font-menu-this-frame-only-p here!
390         (set-face-font 'default new-default-face-font
391                        (and font-menu-this-frame-only-p (selected-frame)))
392       ;; OK Let Customize do it.
393       (custom-set-face-update-spec 'default
394                                    (list (list 'type (device-type)))
395                                    (list :family family
396                                          :size (concat
397                                                 (int-to-string
398                                                  (/ (or size from-size)
399                                                     (specifier-instance font-menu-size-scaling
400                                                                         (selected-device))))
401                                                 "pt")))          
402       (message "Font %s" (face-font-name 'default)))))
403
404
405 (defun font-menu-change-face (face
406                               from-family from-weight from-size
407                               to-family   to-weight   to-size)
408   (or (symbolp face) (signal 'wrong-type-argument (list 'symbolp face)))
409   (let* ((dcache (device-fonts-cache))
410          (font-data (font-menu-font-data face dcache))
411          (face-family (aref font-data 1))
412          (face-size   (aref font-data 2))
413          (face-weight (aref font-data 3))
414          (face-slant  (aref font-data 4)))
415
416     (or face-family
417         (signal 'error (list "couldn't parse font name for face" face)))
418
419     ;; If this face matches the old default face in the attribute we
420     ;; are changing, then change it to the new attribute along that
421     ;; dimension.  Also, the face must have its own global attribute.
422     ;; If its value is inherited, we don't touch it.  If any of this
423     ;; is not true, we leave it alone.
424     (when (and (face-font face 'global)
425                (cond 
426                 (to-family (string-equal face-family from-family))
427                 (to-weight (string-equal face-weight from-weight))
428                 (to-size   (=            face-size   from-size))))
429       (set-face-font face
430                      (font-menu-load-font (or to-family face-family)
431                                           (or to-weight face-weight)
432                                           (or to-size   face-size)
433                                           face-slant
434                                           (specifier-instance
435                                            font-menu-preferred-resolution 
436                                            (selected-device)))
437                      (and font-menu-this-frame-only-p
438                           (selected-frame))))))
439
440 (define-device-method font-menu-load-font)
441
442 (defun flush-device-fonts-cache (device)
443   ;; by Stig@hackvan.com
444   (let ((elt (assq device device-fonts-cache)))
445     (and elt
446          (setq device-fonts-cache (delq elt device-fonts-cache)))))
447
448 (add-hook 'delete-device-hook 'flush-device-fonts-cache)
449
450 (provide 'font-menu)
451
452 ;; font-menu ends here