Mercurial > emacs
annotate src/fontset.h @ 25166:e8ec0085ff7b
(Buffer-menu-mode-map): Add V for Buffer-menu-View.
(Buffer-menu-mode): Doc fix.
(Buffer-menu-view): New command.
(Buffer-menu-view-other-window): New command.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 03 Aug 1999 17:38:59 +0000 |
| parents | c4a2a30142bd |
| children | cd7f4013a815 |
| rev | line source |
|---|---|
| 17052 | 1 /* Header for fontset handler. |
|
18341
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
17998
diff
changeset
|
2 Copyright (C) 1995, 1997 Electrotechnical Laboratory, JAPAN. |
|
33e78cc7f058
Change copyright notices.
Richard M. Stallman <rms@gnu.org>
parents:
17998
diff
changeset
|
3 Licensed to the Free Software Foundation. |
| 17052 | 4 |
| 17071 | 5 This file is part of GNU Emacs. |
| 6 | |
| 7 GNU Emacs is free software; you can redistribute it and/or modify | |
| 8 it under the terms of the GNU General Public License as published by | |
| 9 the Free Software Foundation; either version 2, or (at your option) | |
| 10 any later version. | |
| 17052 | 11 |
| 17071 | 12 GNU Emacs is distributed in the hope that it will be useful, |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 17052 | 16 |
| 17071 | 17 You should have received a copy of the GNU General Public License |
| 18 along with GNU Emacs; see the file COPYING. If not, write to | |
| 19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 20 Boston, MA 02111-1307, USA. */ | |
| 17052 | 21 |
| 22 #ifndef _FONTSET_H | |
| 23 #define _FONTSET_H | |
| 24 | |
| 25 /* This data type is used for the font_table field of window system | |
| 26 depending data area (e.g. struct x_display_info on X window). */ | |
| 27 | |
| 28 struct font_info | |
| 29 { | |
| 30 /* Pointer to window system dependent font structure. On X window, | |
| 31 this value should be coerced to (XFontStruct *). */ | |
| 32 void *font; | |
| 33 | |
| 34 /* Index number of the font. */ | |
| 35 int font_idx; | |
| 36 | |
| 37 /* Name to be used to find the font. */ | |
| 38 char *name; | |
| 39 | |
| 40 /* Full name of the font given by a window system. */ | |
| 41 char *full_name; | |
| 42 | |
| 43 /* Charset of characters displayed by the font. */ | |
| 44 int charset; | |
| 45 | |
| 46 /* Maximum bound width over all existing characters of the font. On | |
| 47 X window, this is same as (font->max_bounds.width) */ | |
| 48 int size; | |
| 49 | |
| 50 /* Height of the font. On X window, this is same as (font->ascent | |
| 51 + font->descent). */ | |
| 52 int height; | |
| 53 | |
| 54 /* Encodings of the font indexed by CHARSET. The value an integer | |
| 55 0, 1, 2, or 3: | |
| 56 0: code points 0x20..0x7F or 0x2020..0x7F7F are used | |
| 57 1: code points 0xA0..0xFF or 0xA0A0..0xFFFF are used | |
| 58 2: code points 0x20A0..0x7FFF are used | |
| 59 3: code points 0xA020..0xFF7F are used | |
| 60 For instance, ASCII and Latin-1 characters may use the same font | |
| 61 but different code points (ASCII uses 0x20..0x7F and Latin-1 uses | |
| 62 0xA0..0xFF). | |
| 63 | |
| 64 If the value can't be decided from information of the font, we | |
| 65 consult `font-encoding-alist' to get of the corresponding charset | |
| 66 whose default value is defined in lisp/fontset.el. Since there's | |
| 67 no charset whose id is 1, we use encoding[1] to store the | |
| 68 encoding information decided by the font itself. */ | |
|
17883
8173865f80ce
Change the declaration o encoding
Kenichi Handa <handa@m17n.org>
parents:
17881
diff
changeset
|
69 unsigned char encoding[MAX_CHARSET + 1]; |
| 17052 | 70 |
| 71 /* The baseline position of a font is normally `ascent' value of the | |
| 72 font. However, there exists many fonts which don't set `ascent' | |
| 73 an appropriate value to be used as baseline position. This is | |
| 74 typical in such ASCII fonts which are designed to be used with | |
| 75 Chinese, Japanese, Korean characters. When we use mixture of | |
| 76 such fonts and normal fonts (having correct `ascent' value), a | |
| 77 display line gets very ugly. Since we have no way to fix it | |
| 78 automatically, it is users responsibility to supply well designed | |
| 79 fonts or correct `ascent' value of fonts. But, the latter | |
| 80 requires heavy work (modifying all bitmap data in BDF files). | |
| 81 So, Emacs accepts a private font property | |
| 82 `_MULE_BASELINE_OFFSET'. If a font has this property, we | |
| 83 calculate the baseline position by subtracting the value from | |
| 84 `ascent'. In other words, the value indicates how many bits | |
| 85 higher we should draw a character of the font than normal ASCII | |
| 86 text for a better looking. | |
| 87 | |
| 88 We also have to consider the fact that the concept of `baseline' | |
| 89 differs among languages to which each character belongs. For | |
| 90 instance, baseline should be at the bottom most position of all | |
| 91 glyphs for Chinese, Japanese, and Korean. But, many of existing | |
| 92 fonts for those characters doesn't have correct `ascent' values | |
| 93 because they are designed to be used with ASCII fonts. To | |
| 94 display characters of different language on the same line, the | |
| 95 best way will be to arrange them in the middle of the line. So, | |
| 96 in such a case, again, we utilize the font property | |
| 97 `_MULE_BASELINE_OFFSET'. If the value is larger than `ascent' we | |
| 98 calculate baseline so that a character is arranged in the middle | |
| 99 of a line. */ | |
| 100 | |
| 101 int baseline_offset; | |
| 102 | |
| 103 /* Non zero means a character should be composed at a position | |
| 104 relative to the height (or depth) of previous glyphs in the | |
| 105 following cases: | |
| 106 (1) The bottom of the character is higher than this value. In | |
| 107 this case, the character is drawn above the previous glyphs. | |
| 108 (2) The top of the character is lower than 0 (i.e. baseline | |
| 109 height). In this case, the character is drawn beneath the | |
| 110 previous glyphs. | |
| 111 | |
|
17190
6637001cdb4b
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17113
diff
changeset
|
112 This value is taken from a private font property |
| 17052 | 113 `_MULE_RELATIVE_COMPOSE' which is introduced by Emacs. */ |
| 114 int relative_compose; | |
| 115 | |
|
17113
5579b391ebbc
(Vuse_default_ascent): Extern.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
116 /* 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
|
117 registered in char-table `use-default-ascent'. */ |
|
5579b391ebbc
(Vuse_default_ascent): Extern.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
118 int default_ascent; |
|
5579b391ebbc
(Vuse_default_ascent): Extern.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
119 |
| 17052 | 120 /* CCL program to calculate code points of the font. */ |
| 121 struct ccl_program *font_encoder; | |
| 122 }; | |
| 123 | |
|
17998
9b98ddd07fe5
(FONT_ENCODING_NOT_DECIDED): New macro.
Kenichi Handa <handa@m17n.org>
parents:
17883
diff
changeset
|
124 /* A value which may appear in the member encoding of struch font_info |
|
9b98ddd07fe5
(FONT_ENCODING_NOT_DECIDED): New macro.
Kenichi Handa <handa@m17n.org>
parents:
17883
diff
changeset
|
125 indicating that a font itself doesn't tell which encoding to be |
|
9b98ddd07fe5
(FONT_ENCODING_NOT_DECIDED): New macro.
Kenichi Handa <handa@m17n.org>
parents:
17883
diff
changeset
|
126 used. */ |
|
21552
14f3ce59e036
(FONT_ENCODING_NOT_DECIDED): The value is changed to 255.
Kenichi Handa <handa@m17n.org>
parents:
20855
diff
changeset
|
127 #define FONT_ENCODING_NOT_DECIDED 255 |
|
17998
9b98ddd07fe5
(FONT_ENCODING_NOT_DECIDED): New macro.
Kenichi Handa <handa@m17n.org>
parents:
17883
diff
changeset
|
128 |
| 17052 | 129 #define FONT_NOT_OPENED -1 |
| 130 #define FONT_NOT_FOUND -2 | |
| 131 | |
| 132 struct fontset_info | |
| 133 { | |
| 134 /* Name of the fontset. */ | |
| 135 char *name; | |
| 136 | |
| 137 /* Size of the fontset. This is the same as the size of ASCII font | |
| 138 of this fontset. */ | |
| 139 int size; | |
| 140 | |
| 141 /* Height of the tallest font in the fontset. */ | |
| 142 int height; | |
| 143 | |
| 144 /* Table of font name for each character set. */ | |
|
17190
6637001cdb4b
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17113
diff
changeset
|
145 char *fontname[MAX_CHARSET + 1]; |
| 17052 | 146 |
| 147 /* Table of index numbers of fonts indexed by charset. If a font is | |
| 148 not yet loaded, the value is -1 (FONT_NOT_OPENED). If font | |
| 149 loading is failed, the value is -2 (FONT_NOT_FOUND). */ | |
|
17190
6637001cdb4b
Adjusted for the change of MAX_CHARSET.
Kenichi Handa <handa@m17n.org>
parents:
17113
diff
changeset
|
150 int font_indexes[MAX_CHARSET + 1]; |
| 17052 | 151 }; |
| 152 | |
| 153 /* This data type is used for the fontset_data field of struct frame. */ | |
| 154 | |
| 155 struct fontset_data | |
| 156 { | |
| 157 /* A table of pointers to all the fontsets. */ | |
| 158 struct fontset_info **fontset_table; | |
| 159 | |
| 160 /* The current capacity of fontset_table. */ | |
| 161 int fontset_table_size; | |
| 162 | |
| 163 /* The number of fontsets actually stored in fontset_table. | |
| 164 fontset_table[n] is used and valid iff 0 <= n < n_fontsets. | |
| 165 0 <= n_fontsets <= fontset_table_size. */ | |
| 166 int n_fontsets; | |
| 167 }; | |
| 168 | |
|
20318
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
169 /* Forward declaration for prototypes. */ |
|
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
170 struct frame; |
|
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
171 |
| 17052 | 172 /* The following six are window system dependent functions. |
| 173 Initialization routine of each window system should set appropriate | |
| 174 functions to these variables. For instance, in case of X window, | |
| 175 x_term_init does this. */ | |
| 176 | |
| 177 /* 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
|
178 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
|
179 int font_idx)); |
| 17052 | 180 |
| 181 /* Return a list of font names which matches PATTERN. See the document of | |
| 182 `x-list-fonts' for more detail. */ | |
|
23516
51228e40e623
(list_fonts_func): Fix prototype.
Kenichi Handa <handa@m17n.org>
parents:
21552
diff
changeset
|
183 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
|
184 Lisp_Object pattern, |
|
51228e40e623
(list_fonts_func): Fix prototype.
Kenichi Handa <handa@m17n.org>
parents:
21552
diff
changeset
|
185 int size, |
|
51228e40e623
(list_fonts_func): Fix prototype.
Kenichi Handa <handa@m17n.org>
parents:
21552
diff
changeset
|
186 int maxnames)); |
| 17052 | 187 |
| 188 /* Load a font named NAME for frame F and return a pointer to the | |
| 189 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
|
190 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
|
191 char *name, int)); |
| 17052 | 192 |
| 193 /* Return a pointer to struct font_info of a font named NAME for frame F. | |
| 194 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
|
195 extern struct font_info *(*query_font_func) P_ ((struct frame *f, char *name)); |
| 17052 | 196 |
| 197 /* Additional function for setting fontset or changing fontset | |
| 198 contents of frame F. This function may change the coordinate of | |
| 199 the frame. */ | |
|
20318
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
200 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
|
201 Lisp_Object oldval)); |
| 17052 | 202 |
|
21552
14f3ce59e036
(FONT_ENCODING_NOT_DECIDED): The value is changed to 255.
Kenichi Handa <handa@m17n.org>
parents:
20855
diff
changeset
|
203 /* 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
|
204 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
|
205 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
|
206 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
|
207 |
| 17052 | 208 /* 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
|
209 extern void (*check_window_system_func) P_ ((void)); |
| 17052 | 210 |
|
20318
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
211 extern struct fontset_data *alloc_fontset_data P_ ((void)); |
|
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
212 extern void free_fontset_data P_ ((struct fontset_data *)); |
|
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
213 extern struct font_info *fs_load_font P_ ((struct frame *, struct font_info *, |
|
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
214 int, char *, int)); |
|
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
215 extern int fs_query_fontset P_ ((struct frame *, char *)); |
|
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
216 extern int fs_register_fontset P_ ((struct frame *, Lisp_Object)); |
|
21552
14f3ce59e036
(FONT_ENCODING_NOT_DECIDED): The value is changed to 255.
Kenichi Handa <handa@m17n.org>
parents:
20855
diff
changeset
|
217 EXFUN (Fquery_fontset, 2); |
|
20318
1507c5324f4c
Add prototypes and more function declarations.
Andreas Schwab <schwab@suse.de>
parents:
19449
diff
changeset
|
218 extern Lisp_Object list_fontsets P_ ((struct frame *, Lisp_Object, int)); |
| 17052 | 219 extern Lisp_Object Vglobal_fontset_alist; |
|
25031
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
220 struct frame; |
|
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
221 int fs_query_fontset P_ ((struct frame *f, char *name)); |
| 17052 | 222 |
| 223 extern Lisp_Object Qfontset; | |
|
17113
5579b391ebbc
(Vuse_default_ascent): Extern.
Kenichi Handa <handa@m17n.org>
parents:
17071
diff
changeset
|
224 extern Lisp_Object Vuse_default_ascent; |
|
19281
5834b16ab7fa
(Vignore_relative_composition): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18541
diff
changeset
|
225 extern Lisp_Object Vignore_relative_composition; |
|
19449
7574338c92e2
Adjusted for the name change of
Kenichi Handa <handa@m17n.org>
parents:
19281
diff
changeset
|
226 extern Lisp_Object Valternate_fontname_alist; |
|
17330
35bd2f60d22a
(Vhighlight_wrong_size_font, Vclip_large_size_font): Extern them.
Kenichi Handa <handa@m17n.org>
parents:
17192
diff
changeset
|
227 extern Lisp_Object Vhighlight_wrong_size_font; |
|
35bd2f60d22a
(Vhighlight_wrong_size_font, Vclip_large_size_font): Extern them.
Kenichi Handa <handa@m17n.org>
parents:
17192
diff
changeset
|
228 extern Lisp_Object Vclip_large_size_font; |
| 17052 | 229 |
|
18345
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
230 extern int font_idx_temp; |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
231 |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
232 /* Load a font named FONTNAME for displaying CHARSET on frame F. |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
233 All fonts for frame F is stored in a table pointed by FONT_TABLE. |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
234 Return a pointer to the struct font_info of the loaded font. |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
235 If loading fails, return 0; |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
236 If FONTNAME is NULL, the name is taken from the information of FONTSET. |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
237 If FONTSET is given, try to load a font whose size matches that of |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
238 FONTSET, and, the font index is stored in the table for FONTSET. */ |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
239 |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
240 #define FS_LOAD_FONT(f, font_table, charset, fontname, fontset) \ |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
241 (fontset >= 0 && fontset < FRAME_FONTSET_DATA (f)->n_fontsets \ |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
242 && (font_idx_temp = (FRAME_FONTSET_DATA (f) \ |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
243 ->fontset_table[fontset]->font_indexes[charset]), \ |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
244 font_idx_temp >= 0) \ |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
245 ? font_table + font_idx_temp \ |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
246 : fs_load_font (f, font_table, charset, fontname, fontset)) |
|
6e93b01c3883
(font_idx_temp): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
18341
diff
changeset
|
247 |
|
25031
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
248 extern Lisp_Object Vfontset_alias_alist; |
|
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
249 extern Lisp_Object Vglobal_fontset_alist; |
|
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
250 |
|
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
251 |
|
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
252 /* 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
|
253 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
|
254 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
|
255 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
|
256 |
|
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
257 #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
|
258 (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
|
259 |
|
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
260 /* 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
|
261 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
|
262 |
|
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
263 #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
|
264 (((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
|
265 ? (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
|
266 : 0) |
|
c4a2a30142bd
(FONT_INFO_ID): Build an ID from a font_info pointer.
Gerd Moellmann <gerd@gnu.org>
parents:
23516
diff
changeset
|
267 |
| 18541 | 268 #endif /* _FONTSET_H */ |
