Mercurial > emacs
annotate src/ftxfont.c @ 91207:c814dfe04708
(w32font.o): Depend on w32font.h.
| author | Jason Rumney <jasonr@gnu.org> |
|---|---|
| date | Sat, 08 Dec 2007 01:48:02 +0000 |
| parents | 785637bd05d0 |
| children | b5ae11e33e41 |
| rev | line source |
|---|---|
| 90400 | 1 /* ftxfont.c -- FreeType font driver on X (without using XFT). |
| 2 Copyright (C) 2006 Free Software Foundation, Inc. | |
| 3 Copyright (C) 2006 | |
| 4 National Institute of Advanced Industrial Science and Technology (AIST) | |
| 5 Registration Number H13PRO009 | |
| 6 | |
| 7 This file is part of GNU Emacs. | |
| 8 | |
| 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 2, or (at your option) | |
| 12 any later version. | |
| 13 | |
| 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. | |
| 18 | |
| 19 You should have received a copy of the GNU General Public License | |
| 20 along with GNU Emacs; see the file COPYING. If not, write to | |
| 21 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |
| 22 Boston, MA 02110-1301, USA. */ | |
| 23 | |
| 24 #include <config.h> | |
| 25 #include <stdio.h> | |
| 26 #include <X11/Xlib.h> | |
| 27 | |
| 28 #include "lisp.h" | |
| 29 #include "dispextern.h" | |
| 30 #include "xterm.h" | |
| 31 #include "frame.h" | |
| 32 #include "blockinput.h" | |
| 33 #include "character.h" | |
| 34 #include "charset.h" | |
| 35 #include "fontset.h" | |
| 36 #include "font.h" | |
| 37 | |
| 38 /* FTX font driver. */ | |
| 39 | |
| 40 static Lisp_Object Qftx; | |
| 41 | |
| 42 /* Prototypes for helper function. */ | |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
43 static GC *ftxfont_get_gcs P_ ((FRAME_PTR, unsigned long, unsigned long)); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
44 static int ftxfont_draw_bitmap P_ ((FRAME_PTR, GC, GC *, struct font *, |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
45 unsigned, int, int, XPoint *, int, int *, |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
46 int)); |
| 90400 | 47 static void ftxfont_draw_backgrond P_ ((FRAME_PTR, struct font *, GC, |
| 48 int, int, int)); | |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
49 static Font ftxfont_default_fid P_ ((FRAME_PTR)); |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
50 |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
51 struct ftxfont_frame_data |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
52 { |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
53 /* Background and foreground colors. */ |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
54 XColor colors[2]; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
55 /* GCs interporationg the above colors. gcs[0] is for a color |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
56 closest to BACKGROUND, and gcs[5] is for a color closest to |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
57 FOREGROUND. */ |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
58 GC gcs[6]; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
59 struct ftxfont_frame_data *next; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
60 }; |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
61 |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
62 |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
63 /* Return an array of 6 GCs for antialiasing. */ |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
64 |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
65 static GC * |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
66 ftxfont_get_gcs (f, foreground, background) |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
67 FRAME_PTR f; |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
68 unsigned long foreground, background; |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
69 { |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
70 XColor color; |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
71 XGCValues xgcv; |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
72 int i; |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
73 struct ftxfont_frame_data *data = font_get_frame_data (f, &ftxfont_driver); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
74 struct ftxfont_frame_data *prev = NULL, *this = NULL, *new; |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
75 |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
76 if (data) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
77 { |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
78 for (this = data; this; prev = this, this = this->next) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
79 { |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
80 if (this->colors[0].pixel < background) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
81 continue; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
82 if (this->colors[0].pixel > background) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
83 break; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
84 if (this->colors[1].pixel < foreground) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
85 continue; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
86 if (this->colors[1].pixel > foreground) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
87 break; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
88 return this->gcs; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
89 } |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
90 } |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
91 |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
92 new = malloc (sizeof (struct ftxfont_frame_data)); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
93 if (! new) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
94 return NULL; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
95 new->next = this; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
96 if (prev) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
97 { |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
98 prev->next = new; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
99 } |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
100 else if (font_put_frame_data (f, &ftxfont_driver, new) < 0) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
101 { |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
102 free (new); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
103 return NULL; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
104 } |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
105 |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
106 new->colors[0].pixel = background; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
107 new->colors[1].pixel = foreground; |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
108 |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
109 BLOCK_INPUT; |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
110 XQueryColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), new->colors, 2); |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
111 for (i = 1; i < 7; i++) |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
112 { |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
113 /* Interpolate colors linearly. Any better algorithm? */ |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
114 color.red |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
115 = (new->colors[1].red * i + new->colors[0].red * (8 - i)) / 8; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
116 color.green |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
117 = (new->colors[1].green * i + new->colors[0].green * (8 - i)) / 8; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
118 color.blue |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
119 = (new->colors[1].blue * i + new->colors[0].blue * (8 - i)) / 8; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
120 if (! x_alloc_nearest_color (f, FRAME_X_COLORMAP (f), &color)) |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
121 break; |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
122 xgcv.foreground = color.pixel; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
123 new->gcs[i - 1] = XCreateGC (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
124 GCForeground, &xgcv); |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
125 } |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
126 UNBLOCK_INPUT; |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
127 |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
128 if (i < 7) |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
129 { |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
130 BLOCK_INPUT; |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
131 for (i--; i >= 0; i--) |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
132 XFreeGC (FRAME_X_DISPLAY (f), new->gcs[i]); |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
133 UNBLOCK_INPUT; |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
134 if (prev) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
135 prev->next = new->next; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
136 else if (data) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
137 font_put_frame_data (f, &ftxfont_driver, new->next); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
138 free (new); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
139 return NULL; |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
140 } |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
141 return new->gcs; |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
142 } |
| 90400 | 143 |
| 144 static int | |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
145 ftxfont_draw_bitmap (f, gc_fore, gcs, font, code, x, y, p, size, n, flush) |
| 90400 | 146 FRAME_PTR f; |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
147 GC gc_fore, *gcs; |
| 90400 | 148 struct font *font; |
| 149 unsigned code; | |
| 150 int x, y; | |
| 151 XPoint *p; | |
| 152 int size, *n; | |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
153 int flush; |
| 90400 | 154 { |
| 155 struct font_bitmap bitmap; | |
| 156 unsigned char *b; | |
| 157 int i, j; | |
| 158 | |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
159 if (ftfont_driver.get_bitmap (font, code, &bitmap, size > 0x100 ? 1 : 8) < 0) |
| 90400 | 160 return 0; |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
161 if (size > 0x100) |
| 90400 | 162 { |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
163 for (i = 0, b = bitmap.buffer; i < bitmap.rows; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
164 i++, b += bitmap.pitch) |
| 90400 | 165 { |
| 166 for (j = 0; j < bitmap.width; j++) | |
| 167 if (b[j / 8] & (1 << (7 - (j % 8)))) | |
| 168 { | |
| 169 p[n[0]].x = x + bitmap.left + j; | |
| 170 p[n[0]].y = y - bitmap.top + i; | |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
171 if (++n[0] == size) |
| 90400 | 172 { |
| 173 XDrawPoints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), | |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
174 gc_fore, p, size, CoordModeOrigin); |
| 90400 | 175 n[0] = 0; |
| 176 } | |
| 177 } | |
| 178 } | |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
179 if (flush && n[0] > 0) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
180 XDrawPoints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
181 gc_fore, p, n[0], CoordModeOrigin); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
182 } |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
183 else |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
184 { |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
185 for (i = 0, b = bitmap.buffer; i < bitmap.rows; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
186 i++, b += bitmap.pitch) |
| 90400 | 187 { |
| 188 for (j = 0; j < bitmap.width; j++) | |
| 189 { | |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
190 int idx = (bitmap.bits_per_pixel == 1 |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
191 ? ((b[j / 8] & (1 << (7 - (j % 8)))) ? 6 : -1) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
192 : (b[j] >> 5) - 1); |
| 90400 | 193 |
| 194 if (idx >= 0) | |
| 195 { | |
| 196 XPoint *pp = p + size * idx; | |
| 197 | |
| 198 pp[n[idx]].x = x + bitmap.left + j; | |
| 199 pp[n[idx]].y = y - bitmap.top + i; | |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
200 if (++(n[idx]) == size) |
| 90400 | 201 { |
| 202 XDrawPoints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), | |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
203 idx == 6 ? gc_fore : gcs[idx], pp, size, |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
204 CoordModeOrigin); |
| 90400 | 205 n[idx] = 0; |
| 206 } | |
| 207 } | |
| 208 } | |
| 209 } | |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
210 if (flush) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
211 { |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
212 for (i = 0; i < 6; i++) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
213 if (n[i] > 0) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
214 XDrawPoints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
215 gcs[i], p + 0x100 * i, n[i], CoordModeOrigin); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
216 if (n[6] > 0) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
217 XDrawPoints (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
218 gc_fore, p + 0x600, n[6], CoordModeOrigin); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
219 } |
| 90400 | 220 } |
| 221 | |
| 222 if (ftfont_driver.free_bitmap) | |
| 223 ftfont_driver.free_bitmap (font, &bitmap); | |
| 224 | |
| 225 return bitmap.advance; | |
| 226 } | |
| 227 | |
| 228 static void | |
| 229 ftxfont_draw_backgrond (f, font, gc, x, y, width) | |
| 230 FRAME_PTR f; | |
| 231 struct font *font; | |
| 232 GC gc; | |
| 233 int x, y, width; | |
| 234 { | |
| 235 XGCValues xgcv; | |
| 236 | |
| 237 XGetGCValues (FRAME_X_DISPLAY (f), gc, | |
| 238 GCForeground | GCBackground, &xgcv); | |
| 239 XSetForeground (FRAME_X_DISPLAY (f), gc, xgcv.background); | |
| 240 XFillRectangle (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), gc, | |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
241 x, y - font->ascent, width, y + font->descent); |
| 90400 | 242 XSetForeground (FRAME_X_DISPLAY (f), gc, xgcv.foreground); |
| 243 } | |
| 244 | |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
245 /* Return the default Font ID on frame F. */ |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
246 |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
247 static Font |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
248 ftxfont_default_fid (f) |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
249 FRAME_PTR f; |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
250 { |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
251 static int fid_known; |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
252 static Font fid; |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
253 |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
254 if (! fid_known) |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
255 { |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
256 fid = XLoadFont (FRAME_X_DISPLAY (f), "fixed"); |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
257 if (! fid) |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
258 { |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
259 fid = XLoadFont (FRAME_X_DISPLAY (f), "*"); |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
260 if (! fid) |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
261 abort (); |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
262 } |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
263 fid_known = 1; |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
264 } |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
265 return fid; |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
266 } |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
267 |
| 90400 | 268 /* Prototypes for font-driver methods. */ |
| 269 static Lisp_Object ftxfont_list P_ ((Lisp_Object, Lisp_Object)); | |
|
90560
c443c8a56b84
(ftxfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90554
diff
changeset
|
270 static Lisp_Object ftxfont_match P_ ((Lisp_Object, Lisp_Object)); |
| 90400 | 271 static struct font *ftxfont_open P_ ((FRAME_PTR, Lisp_Object, int)); |
| 272 static void ftxfont_close P_ ((FRAME_PTR, struct font *)); | |
| 273 static int ftxfont_draw P_ ((struct glyph_string *, int, int, int, int, int)); | |
| 274 | |
| 275 struct font_driver ftxfont_driver; | |
| 276 | |
| 277 static Lisp_Object | |
| 278 ftxfont_list (frame, spec) | |
| 279 Lisp_Object frame; | |
| 280 Lisp_Object spec; | |
| 281 { | |
| 282 Lisp_Object val = ftfont_driver.list (frame, spec); | |
| 283 | |
| 284 if (! NILP (val)) | |
| 285 { | |
| 286 int i; | |
| 287 | |
| 288 for (i = 0; i < ASIZE (val); i++) | |
| 289 ASET (AREF (val, i), FONT_TYPE_INDEX, Qftx); | |
| 290 } | |
| 291 return val; | |
| 292 } | |
| 293 | |
|
90560
c443c8a56b84
(ftxfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90554
diff
changeset
|
294 static Lisp_Object |
|
c443c8a56b84
(ftxfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90554
diff
changeset
|
295 ftxfont_match (frame, spec) |
|
c443c8a56b84
(ftxfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90554
diff
changeset
|
296 Lisp_Object frame; |
|
c443c8a56b84
(ftxfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90554
diff
changeset
|
297 Lisp_Object spec; |
|
c443c8a56b84
(ftxfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90554
diff
changeset
|
298 { |
|
c443c8a56b84
(ftxfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90554
diff
changeset
|
299 Lisp_Object entity = ftfont_driver.match (frame, spec); |
|
c443c8a56b84
(ftxfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90554
diff
changeset
|
300 |
|
c443c8a56b84
(ftxfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90554
diff
changeset
|
301 if (VECTORP (entity)) |
|
c443c8a56b84
(ftxfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90554
diff
changeset
|
302 ASET (entity, FONT_TYPE_INDEX, Qftx); |
|
c443c8a56b84
(ftxfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90554
diff
changeset
|
303 return entity; |
|
c443c8a56b84
(ftxfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90554
diff
changeset
|
304 } |
|
c443c8a56b84
(ftxfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90554
diff
changeset
|
305 |
| 90400 | 306 static struct font * |
| 307 ftxfont_open (f, entity, pixel_size) | |
| 308 FRAME_PTR f; | |
| 309 Lisp_Object entity; | |
| 310 int pixel_size; | |
| 311 { | |
| 312 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f); | |
| 313 struct font *font; | |
| 314 XFontStruct *xfont = malloc (sizeof (XFontStruct)); | |
| 315 | |
| 316 if (! xfont) | |
| 317 return NULL; | |
| 318 font = ftfont_driver.open (f, entity, pixel_size); | |
| 319 if (! font) | |
| 320 { | |
| 321 free (xfont); | |
| 322 return NULL; | |
| 323 } | |
| 324 | |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
325 xfont->fid = ftxfont_default_fid (f); |
| 90400 | 326 xfont->ascent = font->ascent; |
| 327 xfont->descent = font->descent; | |
| 328 xfont->max_bounds.width = font->font.size; | |
| 329 xfont->min_bounds.width = font->min_width; | |
| 330 font->font.font = xfont; | |
| 331 font->driver = &ftxfont_driver; | |
| 332 | |
| 333 dpyinfo->n_fonts++; | |
| 334 | |
| 335 /* Set global flag fonts_changed_p to non-zero if the font loaded | |
| 336 has a character with a smaller width than any other character | |
| 337 before, or if the font loaded has a smaller height than any other | |
| 338 font loaded before. If this happens, it will make a glyph matrix | |
| 339 reallocation necessary. */ | |
| 340 if (dpyinfo->n_fonts == 1) | |
| 341 { | |
| 342 dpyinfo->smallest_font_height = font->font.height; | |
| 343 dpyinfo->smallest_char_width = font->min_width; | |
| 344 fonts_changed_p = 1; | |
| 345 } | |
| 346 else | |
| 347 { | |
| 348 if (dpyinfo->smallest_font_height > font->font.height) | |
| 349 dpyinfo->smallest_font_height = font->font.height, fonts_changed_p |= 1; | |
| 350 if (dpyinfo->smallest_char_width > font->min_width) | |
| 351 dpyinfo->smallest_char_width = font->min_width, fonts_changed_p |= 1; | |
| 352 } | |
| 353 | |
| 354 return font; | |
| 355 } | |
| 356 | |
| 357 static void | |
| 358 ftxfont_close (f, font) | |
| 359 FRAME_PTR f; | |
| 360 struct font *font; | |
| 361 { | |
| 362 ftfont_driver.close (f, font); | |
| 363 FRAME_X_DISPLAY_INFO (f)->n_fonts--; | |
| 364 } | |
| 365 | |
| 366 static int | |
| 367 ftxfont_draw (s, from, to, x, y, with_background) | |
| 368 struct glyph_string *s; | |
| 369 int from, to, x, y, with_background; | |
| 370 { | |
| 371 FRAME_PTR f = s->f; | |
| 372 struct face *face = s->face; | |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
373 struct font *font = (struct font *) face->font_info; |
| 90400 | 374 XPoint p[0x700]; |
| 375 int n[7]; | |
| 376 unsigned *code; | |
| 377 int len = to - from; | |
| 378 int i; | |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
379 GC *gcs; |
| 90400 | 380 |
| 381 n[0] = n[1] = n[2] = n[3] = n[4] = n[5] = n[6] = 0; | |
| 382 | |
| 383 BLOCK_INPUT; | |
| 384 if (with_background) | |
| 385 ftxfont_draw_backgrond (f, font, s->gc, x, y, s->width); | |
| 386 code = alloca (sizeof (unsigned) * len); | |
| 387 for (i = 0; i < len; i++) | |
| 388 code[i] = ((XCHAR2B_BYTE1 (s->char2b + from + i) << 8) | |
| 389 | XCHAR2B_BYTE2 (s->char2b + from + i)); | |
| 390 | |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
391 if (face->gc == s->gc) |
| 90400 | 392 { |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
393 gcs = ftxfont_get_gcs (f, face->foreground, face->background); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
394 } |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
395 else |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
396 { |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
397 XGCValues xgcv; |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
398 unsigned long mask = GCForeground | GCBackground; |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
399 |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
400 XGetGCValues (FRAME_X_DISPLAY (f), s->gc, mask, &xgcv); |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
401 gcs = ftxfont_get_gcs (f, xgcv.foreground, xgcv.background); |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
402 } |
|
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
403 |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
404 if (gcs) |
|
90554
d0351223b22a
(ftxfont_create_gcs): New function.
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
405 { |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
406 if (s->num_clips) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
407 for (i = 0; i < 6; i++) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
408 XSetClipRectangles (FRAME_X_DISPLAY (f), gcs[i], 0, 0, |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
409 s->clip, s->num_clips, Unsorted); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
410 |
| 90400 | 411 for (i = 0; i < len; i++) |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
412 x += ftxfont_draw_bitmap (f, s->gc, gcs, font, code[i], x, y, |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
413 p, 0x100, n, i + 1 == len); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
414 if (s->num_clips) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
415 for (i = 0; i < 6; i++) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
416 XSetClipMask (FRAME_X_DISPLAY (f), gcs[i], None); |
| 90400 | 417 } |
| 418 else | |
| 419 { | |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
420 /* We can't draw with antialiasing. |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
421 s->gc should already have a proper clipping setting. */ |
| 90400 | 422 for (i = 0; i < len; i++) |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
423 x += ftxfont_draw_bitmap (f, s->gc, NULL, font, code[i], x, y, |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
424 p, 0x700, n, i + 1 == len); |
| 90400 | 425 } |
| 426 | |
| 427 UNBLOCK_INPUT; | |
| 428 | |
| 429 return len; | |
| 430 } | |
| 431 | |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
432 static int |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
433 ftxfont_end_for_frame (f) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
434 FRAME_PTR f; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
435 { |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
436 struct ftxfont_frame_data *data = font_get_frame_data (f, &ftxfont_driver); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
437 |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
438 BLOCK_INPUT; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
439 while (data) |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
440 { |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
441 struct ftxfont_frame_data *next = data->next; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
442 int i; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
443 |
|
91127
785637bd05d0
(ftxfont_end_for_frame): Fix array indexing error.
Kenichi Handa <handa@m17n.org>
parents:
91109
diff
changeset
|
444 for (i = 0; i < 6; i++) |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
445 XFreeGC (FRAME_X_DISPLAY (f), data->gcs[i]); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
446 free (data); |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
447 data = next; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
448 } |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
449 UNBLOCK_INPUT; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
450 return 0; |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
451 } |
|
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
452 |
| 90400 | 453 |
| 454 | |
| 455 void | |
| 456 syms_of_ftxfont () | |
| 457 { | |
| 458 DEFSYM (Qftx, "ftx"); | |
| 459 | |
| 460 ftxfont_driver = ftfont_driver; | |
| 461 ftxfont_driver.type = Qftx; | |
| 462 ftxfont_driver.list = ftxfont_list; | |
|
90560
c443c8a56b84
(ftxfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90554
diff
changeset
|
463 ftxfont_driver.match = ftxfont_match; |
| 90400 | 464 ftxfont_driver.open = ftxfont_open; |
| 465 ftxfont_driver.close = ftxfont_close; | |
| 466 ftxfont_driver.draw = ftxfont_draw; | |
|
91109
5ed0717083a1
(ftxfont_get_gcs): Renamed from ftxfont_create_gcs.
Kenichi Handa <handa@m17n.org>
parents:
90560
diff
changeset
|
467 ftxfont_driver.end_for_frame = ftxfont_end_for_frame; |
| 90400 | 468 register_font_driver (&ftxfont_driver, NULL); |
| 469 } | |
| 90427 | 470 |
| 471 /* arch-tag: 59bd3469-5330-413f-b29d-1aa36492abe8 | |
| 472 (do not change this comment) */ |
