Mercurial > emacs
annotate src/fontset.h @ 92242:4e775ca003e8
*** empty log message ***
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 26 Feb 2008 21:35:04 +0000 |
parents | 606f2d163a64 |
children | 1a920d0cdcb9 |
rev | line source |
---|---|
17052 | 1 /* Header for fontset handler. |
75227
e90d04cd455a
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
74605
diff
changeset
|
2 Copyright (C) 1998, 2001, 2002, 2003, 2004, 2005, |
79759 | 3 2006, 2007, 2008 Free Software Foundation, Inc. |
74605
6ee41fdd69ff
Update AIST copyright years.
Kenichi Handa <handa@m17n.org>
parents:
68651
diff
changeset
|
4 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
79759 | 5 2005, 2006, 2007, 2008 |
67658 | 6 National Institute of Advanced Industrial Science and Technology (AIST) |
7 Registration Number H14PRO021 | |
90409
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
8 Copyright (C) 2003, 2006 |
88376
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
9 National Institute of Advanced Industrial Science and Technology (AIST) |
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
10 Registration Number H13PRO009 |
17052 | 11 |
17071 | 12 This file is part of GNU Emacs. |
13 | |
14 GNU Emacs is free software; you can redistribute it and/or modify | |
15 it under the terms of the GNU General Public License as published by | |
78313
2b9404c2f01f
Remove license from trivial file.
Glenn Morris <rgm@gnu.org>
parents:
75364
diff
changeset
|
16 the Free Software Foundation; either version 3, or (at your option) |
17071 | 17 any later version. |
17052 | 18 |
17071 | 19 GNU Emacs is distributed in the hope that it will be useful, |
20 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
22 GNU General Public License for more details. | |
17052 | 23 |
17071 | 24 You should have received a copy of the GNU General Public License |
25 along with GNU Emacs; see the file COPYING. If not, write to | |
64084 | 26 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
27 Boston, MA 02110-1301, USA. */ | |
17052 | 28 |
29573
2b0359c5b384
(EMACS_FONTSET_H): Renamed from _FONTSET_H.
Kenichi Handa <handa@m17n.org>
parents:
28224
diff
changeset
|
29 #ifndef EMACS_FONTSET_H |
2b0359c5b384
(EMACS_FONTSET_H): Renamed from _FONTSET_H.
Kenichi Handa <handa@m17n.org>
parents:
28224
diff
changeset
|
30 #define EMACS_FONTSET_H |
17052 | 31 |
32 /* This data type is used for the font_table field of window system | |
33 depending data area (e.g. struct x_display_info on X window). */ | |
34 | |
35 struct font_info | |
36 { | |
37 /* Pointer to window system dependent font structure. On X window, | |
38 this value should be coerced to (XFontStruct *). */ | |
39 void *font; | |
40 | |
41 /* Index number of the font. */ | |
42 int font_idx; | |
43 | |
44 /* Name to be used to find the font. */ | |
45 char *name; | |
46 | |
47 /* Full name of the font given by a window system. */ | |
48 char *full_name; | |
49 | |
89574 | 50 /* Charset to encode a character code into a glyph code of the |
51 font. */ | |
17052 | 52 int charset; |
53 | |
40007
80f96f61b87c
(struct font_info) [WINDOWSNT]: Add codepage field.
Andrew Innes <andrewi@gnu.org>
parents:
29896
diff
changeset
|
54 #ifdef WINDOWSNT |
80f96f61b87c
(struct font_info) [WINDOWSNT]: Add codepage field.
Andrew Innes <andrewi@gnu.org>
parents:
29896
diff
changeset
|
55 /* Codepage of characters that will be displayed by the font. */ |
80f96f61b87c
(struct font_info) [WINDOWSNT]: Add codepage field.
Andrew Innes <andrewi@gnu.org>
parents:
29896
diff
changeset
|
56 int codepage; |
80f96f61b87c
(struct font_info) [WINDOWSNT]: Add codepage field.
Andrew Innes <andrewi@gnu.org>
parents:
29896
diff
changeset
|
57 #endif |
80f96f61b87c
(struct font_info) [WINDOWSNT]: Add codepage field.
Andrew Innes <andrewi@gnu.org>
parents:
29896
diff
changeset
|
58 |
17052 | 59 /* Maximum bound width over all existing characters of the font. On |
60 X window, this is same as (font->max_bounds.width) */ | |
61 int size; | |
62 | |
28224
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
63 /* Height of the font. On X window, this is the same as |
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
64 (font->ascent + font->descent). */ |
17052 | 65 int height; |
66 | |
59202
6909d89d7c99
(struct font_info): New members space_width and
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
67 /* Width of the space glyph of the font. */ |
6909d89d7c99
(struct font_info): New members space_width and
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
68 int space_width; |
6909d89d7c99
(struct font_info): New members space_width and
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
69 |
6909d89d7c99
(struct font_info): New members space_width and
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
70 /* Average width of glyphs in the font. */ |
6909d89d7c99
(struct font_info): New members space_width and
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
71 int average_width; |
6909d89d7c99
(struct font_info): New members space_width and
Kenichi Handa <handa@m17n.org>
parents:
52401
diff
changeset
|
72 |
78501 | 73 /* 1 if `vertical-centering-font-regexp' matches this font name. |
28224
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
74 In this case, we render characters at vartical center positions |
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
75 of lines. */ |
26857
cd7f4013a815
(struct font_info): New member vertical_centering.
Kenichi Handa <handa@m17n.org>
parents:
25031
diff
changeset
|
76 int vertical_centering; |
cd7f4013a815
(struct font_info): New member vertical_centering.
Kenichi Handa <handa@m17n.org>
parents:
25031
diff
changeset
|
77 |
88376
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
78 /* Encoding type of the font. The value is one of |
17052 | 79 0, 1, 2, or 3: |
80 0: code points 0x20..0x7F or 0x2020..0x7F7F are used | |
81 1: code points 0xA0..0xFF or 0xA0A0..0xFFFF are used | |
82 2: code points 0x20A0..0x7FFF are used | |
83 3: code points 0xA020..0xFF7F are used | |
28224
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
84 If the member `font_encoder' is not NULL, this member is ignored. |
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
85 */ |
88376
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
86 unsigned char encoding_type; |
17052 | 87 |
88 /* The baseline position of a font is normally `ascent' value of the | |
89 font. However, there exists many fonts which don't set `ascent' | |
90 an appropriate value to be used as baseline position. This is | |
91 typical in such ASCII fonts which are designed to be used with | |
92 Chinese, Japanese, Korean characters. When we use mixture of | |
93 such fonts and normal fonts (having correct `ascent' value), a | |
94 display line gets very ugly. Since we have no way to fix it | |
95 automatically, it is users responsibility to supply well designed | |
96 fonts or correct `ascent' value of fonts. But, the latter | |
97 requires heavy work (modifying all bitmap data in BDF files). | |
98 So, Emacs accepts a private font property | |
99 `_MULE_BASELINE_OFFSET'. If a font has this property, we | |
100 calculate the baseline position by subtracting the value from | |
101 `ascent'. In other words, the value indicates how many bits | |
102 higher we should draw a character of the font than normal ASCII | |
103 text for a better looking. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41053
diff
changeset
|
104 |
17052 | 105 We also have to consider the fact that the concept of `baseline' |
106 differs among languages to which each character belongs. For | |
107 instance, baseline should be at the bottom most position of all | |
108 glyphs for Chinese, Japanese, and Korean. But, many of existing | |
109 fonts for those characters doesn't have correct `ascent' values | |
110 because they are designed to be used with ASCII fonts. To | |
111 display characters of different language on the same line, the | |
112 best way will be to arrange them in the middle of the line. So, | |
113 in such a case, again, we utilize the font property | |
114 `_MULE_BASELINE_OFFSET'. If the value is larger than `ascent' we | |
115 calculate baseline so that a character is arranged in the middle | |
116 of a line. */ | |
117 | |
118 int baseline_offset; | |
119 | |
120 /* Non zero means a character should be composed at a position | |
121 relative to the height (or depth) of previous glyphs in the | |
122 following cases: | |
123 (1) The bottom of the character is higher than this value. In | |
124 this case, the character is drawn above the previous glyphs. | |
125 (2) The top of the character is lower than 0 (i.e. baseline | |
126 height). In this case, the character is drawn beneath the | |
127 previous glyphs. | |
128 | |
17190
6637001cdb4b
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17113
diff
changeset
|
129 This value is taken from a private font property |
17052 | 130 `_MULE_RELATIVE_COMPOSE' which is introduced by Emacs. */ |
131 int relative_compose; | |
132 | |
17113
5579b391ebbc
(Vuse_default_ascent): Extern.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
133 /* Non zero means an ascent value to be used for a character |
5579b391ebbc
(Vuse_default_ascent): Extern.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
134 registered in char-table `use-default-ascent'. */ |
5579b391ebbc
(Vuse_default_ascent): Extern.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
135 int default_ascent; |
5579b391ebbc
(Vuse_default_ascent): Extern.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
136 |
17052 | 137 /* CCL program to calculate code points of the font. */ |
138 struct ccl_program *font_encoder; | |
139 }; | |
140 | |
28224
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
141 /* A value which may appear in the member `encoding' of struch |
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
142 font_info indicating that a font itself doesn't tell which encoding |
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
143 to be used. */ |
21552
14f3ce59e036
(FONT_ENCODING_NOT_DECIDED): The value is changed to 255.
Kenichi Handa <handa@m17n.org>
parents:
20855
diff
changeset
|
144 #define FONT_ENCODING_NOT_DECIDED 255 |
17998
9b98ddd07fe5
(FONT_ENCODING_NOT_DECIDED): New macro.
Kenichi Handa <handa@m17n.org>
parents:
17883
diff
changeset
|
145 |
88376
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
146 enum FONT_SPEC_INDEX |
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
147 { |
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
148 FONT_SPEC_FAMILY_INDEX, |
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
149 FONT_SPEC_WEIGHT_INDEX, |
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
150 FONT_SPEC_SLANT_INDEX, |
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
151 FONT_SPEC_SWIDTH_INDEX, |
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
152 FONT_SPEC_ADSTYLE_INDEX, |
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
153 FONT_SPEC_REGISTRY_INDEX, |
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
154 FONT_SPEC_MAX_INDEX |
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
155 }; |
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
156 |
20318
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
157 /* Forward declaration for prototypes. */ |
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
158 struct frame; |
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
159 |
17052 | 160 /* The following six are window system dependent functions. |
161 Initialization routine of each window system should set appropriate | |
162 functions to these variables. For instance, in case of X window, | |
163 x_term_init does this. */ | |
164 | |
165 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */ | |
20318
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
166 extern struct font_info *(*get_font_info_func) P_ ((struct frame *f, |
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
167 int font_idx)); |
17052 | 168 |
169 /* Return a list of font names which matches PATTERN. See the document of | |
170 `x-list-fonts' for more detail. */ | |
23516
51228e40e623
(list_fonts_func): Fix prototype.
Kenichi Handa <handa@m17n.org>
parents:
21552
diff
changeset
|
171 extern Lisp_Object (*list_fonts_func) P_ ((struct frame *f, |
51228e40e623
(list_fonts_func): Fix prototype.
Kenichi Handa <handa@m17n.org>
parents:
21552
diff
changeset
|
172 Lisp_Object pattern, |
51228e40e623
(list_fonts_func): Fix prototype.
Kenichi Handa <handa@m17n.org>
parents:
21552
diff
changeset
|
173 int size, |
51228e40e623
(list_fonts_func): Fix prototype.
Kenichi Handa <handa@m17n.org>
parents:
21552
diff
changeset
|
174 int maxnames)); |
17052 | 175 |
176 /* Load a font named NAME for frame F and return a pointer to the | |
177 information of the loaded font. If loading is failed, return -1. */ | |
20318
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
178 extern struct font_info *(*load_font_func) P_ ((struct frame *f, |
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
179 char *name, int)); |
17052 | 180 |
181 /* Return a pointer to struct font_info of a font named NAME for frame F. | |
182 If no such font is loaded, return NULL. */ | |
20318
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
183 extern struct font_info *(*query_font_func) P_ ((struct frame *f, char *name)); |
17052 | 184 |
185 /* Additional function for setting fontset or changing fontset | |
186 contents of frame F. This function may change the coordinate of | |
187 the frame. */ | |
20318
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
188 extern void (*set_frame_fontset_func) P_ ((struct frame *f, Lisp_Object arg, |
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
189 Lisp_Object oldval)); |
17052 | 190 |
21552
14f3ce59e036
(FONT_ENCODING_NOT_DECIDED): The value is changed to 255.
Kenichi Handa <handa@m17n.org>
parents:
20855
diff
changeset
|
191 /* To find a CCL program, fs_load_font calls this function. |
14f3ce59e036
(FONT_ENCODING_NOT_DECIDED): The value is changed to 255.
Kenichi Handa <handa@m17n.org>
parents:
20855
diff
changeset
|
192 The argument is a pointer to the struct font_info. |
14f3ce59e036
(FONT_ENCODING_NOT_DECIDED): The value is changed to 255.
Kenichi Handa <handa@m17n.org>
parents:
20855
diff
changeset
|
193 This function set the memer `encoder' of the structure. */ |
14f3ce59e036
(FONT_ENCODING_NOT_DECIDED): The value is changed to 255.
Kenichi Handa <handa@m17n.org>
parents:
20855
diff
changeset
|
194 extern void (*find_ccl_program_func) P_ ((struct font_info *)); |
14f3ce59e036
(FONT_ENCODING_NOT_DECIDED): The value is changed to 255.
Kenichi Handa <handa@m17n.org>
parents:
20855
diff
changeset
|
195 |
88902
8975795eb087
(get_font_repertory_func): New prototype.
Kenichi Handa <handa@m17n.org>
parents:
88376
diff
changeset
|
196 extern Lisp_Object (*get_font_repertory_func) P_ ((struct frame *, |
8975795eb087
(get_font_repertory_func): New prototype.
Kenichi Handa <handa@m17n.org>
parents:
88376
diff
changeset
|
197 struct font_info *)); |
8975795eb087
(get_font_repertory_func): New prototype.
Kenichi Handa <handa@m17n.org>
parents:
88376
diff
changeset
|
198 |
17052 | 199 /* Check if any window system is used now. */ |
20318
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
200 extern void (*check_window_system_func) P_ ((void)); |
17052 | 201 |
28224
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
202 struct face; |
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
203 |
29896
929a27e59f25
(free_face_fontset): Renamed from fs_free_face_fontset.
Dave Love <fx@gnu.org>
parents:
29573
diff
changeset
|
204 extern void free_face_fontset P_ ((FRAME_PTR, struct face *)); |
88376
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
205 extern Lisp_Object fontset_font_pattern P_ ((FRAME_PTR, struct face *, int)); |
28224
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
206 extern int face_suitable_for_char_p P_ ((struct face *, int)); |
89698
2ae6208036bd
(face_for_char): Prototype adjusted.
Kenichi Handa <handa@m17n.org>
parents:
89574
diff
changeset
|
207 extern int face_for_char P_ ((FRAME_PTR, struct face *, int, |
2ae6208036bd
(face_for_char): Prototype adjusted.
Kenichi Handa <handa@m17n.org>
parents:
89574
diff
changeset
|
208 int, Lisp_Object)); |
88902
8975795eb087
(get_font_repertory_func): New prototype.
Kenichi Handa <handa@m17n.org>
parents:
88376
diff
changeset
|
209 extern int make_fontset_for_ascii_face P_ ((FRAME_PTR, int, struct face *)); |
89350
67ece0f80de1
(Qfontset): Don't extern it.
Kenichi Handa <handa@m17n.org>
parents:
88973
diff
changeset
|
210 extern int new_fontset_from_font_name P_ ((Lisp_Object)); |
60510
09ba76deaedd
(set_default_ascii_font): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
59202
diff
changeset
|
211 extern void set_default_ascii_font P_ ((Lisp_Object)); |
88902
8975795eb087
(get_font_repertory_func): New prototype.
Kenichi Handa <handa@m17n.org>
parents:
88376
diff
changeset
|
212 extern struct font_info *fs_load_font P_ ((struct frame *, char *, int)); |
28224
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
213 extern int fs_query_fontset P_ ((Lisp_Object, int)); |
21552
14f3ce59e036
(FONT_ENCODING_NOT_DECIDED): The value is changed to 255.
Kenichi Handa <handa@m17n.org>
parents:
20855
diff
changeset
|
214 EXFUN (Fquery_fontset, 2); |
20318
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
215 extern Lisp_Object list_fontsets P_ ((struct frame *, Lisp_Object, int)); |
17052 | 216 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
41053
diff
changeset
|
217 extern Lisp_Object Vuse_default_ascent; |
19281
5834b16ab7fa
(Vignore_relative_composition): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18541
diff
changeset
|
218 extern Lisp_Object Vignore_relative_composition; |
19449
7574338c92e2
Adjusted for the name change of
Kenichi Handa <handa@m17n.org>
parents:
19281
diff
changeset
|
219 extern Lisp_Object Valternate_fontname_alist; |
28224
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
220 extern Lisp_Object Vfontset_alias_alist; |
26857
cd7f4013a815
(struct font_info): New member vertical_centering.
Kenichi Handa <handa@m17n.org>
parents:
25031
diff
changeset
|
221 extern Lisp_Object Vvertical_centering_font_regexp; |
90508
1a247e569906
(Votf_script_alist): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
90467
diff
changeset
|
222 extern Lisp_Object Votf_script_alist; |
18345
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
223 |
88376
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
224 /* Load a font named FONTNAME on frame F. All fonts for frame F is |
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
225 stored in a table pointed by FONT_TABLE. Return a pointer to the |
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
226 struct font_info of the loaded font. If loading fails, return |
7c109f1a7bcb
(struct font_info): Type of the member encoding_type
Kenichi Handa <handa@m17n.org>
parents:
41053
diff
changeset
|
227 NULL. */ |
18345
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
228 |
88973
6161711538fa
(FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
Kenichi Handa <handa@m17n.org>
parents:
88902
diff
changeset
|
229 #define FS_LOAD_FONT(f, fontname) fs_load_font (f, fontname, -1) |
25031
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
230 |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
231 |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
232 /* Return an immutable id for font_info FONT_INFO on frame F. The |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
233 reason for this macro is hat one cannot hold pointers to font_info |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
234 structures in other data structures, because the table is |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
235 reallocated in x_list_fonts. */ |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
236 |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
237 #define FONT_INFO_ID(F, FONT_INFO) \ |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
238 (FONT_INFO) - (FRAME_X_DISPLAY_INFO ((F))->font_table) |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
239 |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
240 /* Given a font_info id ID, return a pointer to the font_info |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
241 structure on frame F. If ID is invalid, return null. */ |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
242 |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
243 #define FONT_INFO_FROM_ID(F, ID) \ |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
244 (((ID) >= 0 && (ID) < FRAME_X_DISPLAY_INFO ((F))->font_table_size) \ |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
245 ? (FRAME_X_DISPLAY_INFO ((F))->font_table + (ID)) \ |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
246 : 0) |
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
247 |
90409
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
248 #ifdef USE_FONT_BACKEND |
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
249 #define FONT_INFO_FROM_FACE(F, FACE) \ |
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
250 (enable_font_backend ? (FACE)->font_info \ |
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
251 : FONT_INFO_FROM_ID ((F), (FACE)->font_info_id)) |
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
252 #else /* not USE_FONT_BACKEND */ |
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
253 #define FONT_INFO_FROM_FACE(F, FACE) \ |
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
254 FONT_INFO_FROM_ID ((F), (FACE)->font_info_id) |
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
255 #endif /* not USE_FONT_BACKEND */ |
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
256 |
28224
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
257 extern Lisp_Object fontset_name P_ ((int)); |
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
258 extern Lisp_Object fontset_ascii P_ ((int)); |
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
259 extern int fontset_height P_ ((int)); |
04099a17871f
(FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
Kenichi Handa <handa@m17n.org>
parents:
26857
diff
changeset
|
260 |
90409
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
261 #ifdef USE_FONT_BACKEND |
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
262 struct font; |
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
263 extern int face_for_font P_ ((struct frame *, struct font *, struct face *)); |
90467
f1cd4833b97a
(new_fontset_from_font) [USE_FONT_BACKEND]: Prototype
Kenichi Handa <handa@m17n.org>
parents:
90409
diff
changeset
|
264 extern int new_fontset_from_font P_ ((Lisp_Object)); |
90409
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
265 extern struct font *fontset_ascii_font P_ ((FRAME_PTR, int)); |
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
266 #endif /* USE_FONT_BACKEND */ |
0347a454915c
(FONT_INFO_FROM_FACE): New macro.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
267 |
29573
2b0359c5b384
(EMACS_FONTSET_H): Renamed from _FONTSET_H.
Kenichi Handa <handa@m17n.org>
parents:
28224
diff
changeset
|
268 #endif /* EMACS_FONTSET_H */ |
52401 | 269 |
270 /* arch-tag: c27cef7b-3cab-488a-8398-7a4daa96bb77 | |
271 (do not change this comment) */ |