1 /* ftxfont.c -- FreeType font driver on X (without using XFT).
2 Copyright (C) 2006-2015 Free Software Foundation, Inc.
3 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011
4 National Institute of Advanced Industrial Science and Technology (AIST)
5 Registration Number H13PRO009
7 This file is part of GNU Emacs.
9 GNU Emacs is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
27 #include "dispextern.h"
30 #include "blockinput.h"
31 #include "character.h"
36 /* FTX font driver. */
38 struct font_driver ftxfont_driver
;
40 struct ftxfont_frame_data
42 /* Background and foreground colors. */
44 /* GCs interpolating the above colors. gcs[0] is for a color
45 closest to BACKGROUND, and gcs[5] is for a color closest to
48 struct ftxfont_frame_data
*next
;
52 /* Return an array of 6 GCs for antialiasing. */
55 ftxfont_get_gcs (struct frame
*f
, unsigned long foreground
, unsigned long background
)
60 struct ftxfont_frame_data
*data
= font_get_frame_data (f
, Qftx
);
61 struct ftxfont_frame_data
*prev
= NULL
, *this = NULL
, *new;
65 for (this = data
; this; prev
= this, this = this->next
)
67 if (this->colors
[0].pixel
< background
)
69 if (this->colors
[0].pixel
> background
)
71 if (this->colors
[1].pixel
< foreground
)
73 if (this->colors
[1].pixel
> foreground
)
79 new = xmalloc (sizeof *new);
83 font_put_frame_data (f
, Qftx
, new);
85 new->colors
[0].pixel
= background
;
86 new->colors
[1].pixel
= foreground
;
89 XQueryColors (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
), new->colors
, 2);
90 for (i
= 1; i
< 7; i
++)
92 /* Interpolate colors linearly. Any better algorithm? */
94 = (new->colors
[1].red
* i
+ new->colors
[0].red
* (8 - i
)) / 8;
96 = (new->colors
[1].green
* i
+ new->colors
[0].green
* (8 - i
)) / 8;
98 = (new->colors
[1].blue
* i
+ new->colors
[0].blue
* (8 - i
)) / 8;
99 if (! x_alloc_nearest_color (f
, FRAME_X_COLORMAP (f
), &color
))
101 xgcv
.foreground
= color
.pixel
;
102 new->gcs
[i
- 1] = XCreateGC (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
103 GCForeground
, &xgcv
);
110 for (i
--; i
>= 0; i
--)
111 XFreeGC (FRAME_X_DISPLAY (f
), new->gcs
[i
]);
114 prev
->next
= new->next
;
116 font_put_frame_data (f
, Qftx
, new->next
);
124 ftxfont_draw_bitmap (struct frame
*f
, GC gc_fore
, GC
*gcs
, struct font
*font
,
125 unsigned int code
, int x
, int y
, XPoint
*p
, int size
,
128 struct font_bitmap bitmap
;
132 if (ftfont_driver
.get_bitmap (font
, code
, &bitmap
, size
> 0x100 ? 1 : 8) < 0)
136 for (i
= 0, b
= bitmap
.buffer
; i
< bitmap
.rows
;
137 i
++, b
+= bitmap
.pitch
)
139 for (j
= 0; j
< bitmap
.width
; j
++)
140 if (b
[j
/ 8] & (1 << (7 - (j
% 8))))
142 p
[n
[0]].x
= x
+ bitmap
.left
+ j
;
143 p
[n
[0]].y
= y
- bitmap
.top
+ i
;
146 XDrawPoints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
147 gc_fore
, p
, size
, CoordModeOrigin
);
152 if (flush
&& n
[0] > 0)
153 XDrawPoints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
154 gc_fore
, p
, n
[0], CoordModeOrigin
);
158 for (i
= 0, b
= bitmap
.buffer
; i
< bitmap
.rows
;
159 i
++, b
+= bitmap
.pitch
)
161 for (j
= 0; j
< bitmap
.width
; j
++)
163 int idx
= (bitmap
.bits_per_pixel
== 1
164 ? ((b
[j
/ 8] & (1 << (7 - (j
% 8)))) ? 6 : -1)
169 XPoint
*pp
= p
+ size
* idx
;
171 pp
[n
[idx
]].x
= x
+ bitmap
.left
+ j
;
172 pp
[n
[idx
]].y
= y
- bitmap
.top
+ i
;
173 if (++(n
[idx
]) == size
)
175 XDrawPoints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
176 idx
== 6 ? gc_fore
: gcs
[idx
], pp
, size
,
185 for (i
= 0; i
< 6; i
++)
187 XDrawPoints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
188 gcs
[i
], p
+ 0x100 * i
, n
[i
], CoordModeOrigin
);
190 XDrawPoints (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
191 gc_fore
, p
+ 0x600, n
[6], CoordModeOrigin
);
195 if (ftfont_driver
.free_bitmap
)
196 ftfont_driver
.free_bitmap (font
, &bitmap
);
198 return bitmap
.advance
;
202 ftxfont_draw_background (struct frame
*f
, struct font
*font
, GC gc
, int x
, int y
,
207 XGetGCValues (FRAME_X_DISPLAY (f
), gc
,
208 GCForeground
| GCBackground
, &xgcv
);
209 XSetForeground (FRAME_X_DISPLAY (f
), gc
, xgcv
.background
);
210 XFillRectangle (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
), gc
,
211 x
, y
- FONT_BASE (font
), width
, FONT_HEIGHT (font
));
212 XSetForeground (FRAME_X_DISPLAY (f
), gc
, xgcv
.foreground
);
216 ftxfont_list (struct frame
*f
, Lisp_Object spec
)
218 Lisp_Object list
= ftfont_driver
.list (f
, spec
), tail
;
220 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
221 ASET (XCAR (tail
), FONT_TYPE_INDEX
, Qftx
);
226 ftxfont_match (struct frame
*f
, Lisp_Object spec
)
228 Lisp_Object entity
= ftfont_driver
.match (f
, spec
);
230 if (VECTORP (entity
))
231 ASET (entity
, FONT_TYPE_INDEX
, Qftx
);
236 ftxfont_open (struct frame
*f
, Lisp_Object entity
, int pixel_size
)
238 Lisp_Object font_object
;
241 font_object
= ftfont_driver
.open (f
, entity
, pixel_size
);
242 if (NILP (font_object
))
244 font
= XFONT_OBJECT (font_object
);
245 font
->driver
= &ftxfont_driver
;
250 ftxfont_close (struct font
*font
)
252 ftfont_driver
.close (font
);
256 ftxfont_draw (struct glyph_string
*s
, int from
, int to
, int x
, int y
,
257 bool with_background
)
259 struct frame
*f
= s
->f
;
260 struct face
*face
= s
->face
;
261 struct font
*font
= s
->font
;
270 n
[0] = n
[1] = n
[2] = n
[3] = n
[4] = n
[5] = n
[6] = 0;
273 SAFE_NALLOCA (code
, 1, len
);
276 ftxfont_draw_background (f
, font
, s
->gc
, x
, y
, s
->width
);
277 for (i
= 0; i
< len
; i
++)
278 code
[i
] = ((XCHAR2B_BYTE1 (s
->char2b
+ from
+ i
) << 8)
279 | XCHAR2B_BYTE2 (s
->char2b
+ from
+ i
));
281 if (face
->gc
== s
->gc
)
283 gcs
= ftxfont_get_gcs (f
, face
->foreground
, face
->background
);
288 unsigned long mask
= GCForeground
| GCBackground
;
290 XGetGCValues (FRAME_X_DISPLAY (f
), s
->gc
, mask
, &xgcv
);
291 gcs
= ftxfont_get_gcs (f
, xgcv
.foreground
, xgcv
.background
);
297 for (i
= 0; i
< 6; i
++)
298 XSetClipRectangles (FRAME_X_DISPLAY (f
), gcs
[i
], 0, 0,
299 s
->clip
, s
->num_clips
, Unsorted
);
301 for (i
= 0; i
< len
; i
++)
303 xadvance
= ftxfont_draw_bitmap (f
, s
->gc
, gcs
, font
, code
[i
], x
, y
,
304 p
, 0x100, n
, i
+ 1 == len
);
305 x
+= (s
->padding_p
? 1 : xadvance
);
308 for (i
= 0; i
< 6; i
++)
309 XSetClipMask (FRAME_X_DISPLAY (f
), gcs
[i
], None
);
313 /* We can't draw with antialiasing.
314 s->gc should already have a proper clipping setting. */
315 for (i
= 0; i
< len
; i
++)
317 xadvance
= ftxfont_draw_bitmap (f
, s
->gc
, NULL
, font
, code
[i
], x
, y
,
318 p
, 0x700, n
, i
+ 1 == len
);
319 x
+= (s
->padding_p
? 1 : xadvance
);
330 ftxfont_end_for_frame (struct frame
*f
)
332 struct ftxfont_frame_data
*data
= font_get_frame_data (f
, Qftx
);
337 struct ftxfont_frame_data
*next
= data
->next
;
340 for (i
= 0; i
< 6; i
++)
341 XFreeGC (FRAME_X_DISPLAY (f
), data
->gcs
[i
]);
346 font_put_frame_data (f
, Qftx
, NULL
);
353 syms_of_ftxfont (void)
355 DEFSYM (Qftx
, "ftx");
357 ftxfont_driver
= ftfont_driver
;
358 ftxfont_driver
.type
= Qftx
;
359 ftxfont_driver
.list
= ftxfont_list
;
360 ftxfont_driver
.match
= ftxfont_match
;
361 ftxfont_driver
.open
= ftxfont_open
;
362 ftxfont_driver
.close
= ftxfont_close
;
363 ftxfont_driver
.draw
= ftxfont_draw
;
364 ftxfont_driver
.end_for_frame
= ftxfont_end_for_frame
;
365 register_font_driver (&ftxfont_driver
, NULL
);