24141
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
1 /* Definitions and header for handling BDF fonts on the Microsoft W32 API.
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
2 Copyright (C) 1999 Free Software Foundation, Inc.
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
3
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
4 This file is part of GNU Emacs.
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
5
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
6 GNU Emacs is free software; you can redistribute it and/or modify
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
7 it under the terms of the GNU General Public License as published by
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option)
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
9 any later version.
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
10
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
11 GNU Emacs is distributed in the hope that it will be useful,
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
14 GNU General Public License for more details.
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
15
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
16 You should have received a copy of the GNU General Public License
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
17 along with GNU Emacs; see the file COPYING. If not, write to
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
19 Boston, MA 02111-1307, USA. */
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
20
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
21 /* Based heavily on code by H. Miyashita for Meadow (a descendant of
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
22 MULE for W32). */
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
23
|
29601
|
24 #ifndef EMACS_W32BDF_H
|
|
25 #define EMACS_W32BDF_H
|
24141
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
26
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
27 #define BDF_FIRST_OFFSET_TABLE 0x200
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
28 #define BDF_SECOND_OFFSET_TABLE 0x80
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
29 #define BDF_SECOND_OFFSET(x) ((x) & 0x7f)
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
30 #define BDF_FIRST_OFFSET(x) (((x) >> 8) | (((x) & 0x80) << 1))
|
32023
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
31 #define BDF_CODEPOINT_MAX (BDF_FIRST_OFFSET_TABLE * BDF_SECOND_OFFSET_TABLE)
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
32 #define BDF_CODEPOINT_RANGE_COVER_P(x) (((x) >= 0) && ((x) <= BDF_CODEPOINT_MAX))
|
24141
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
33
|
32023
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
34 #define BDF_FONT_CACHE_SIZE 3000
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
35 #define BDF_FONT_CLEAR_SIZE 600
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
36
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
37 /*
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
38 GLYPH METRIC (# ... character's reference point)
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
39 ^
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
40 y | (urx, ury)
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
41 | ^ +----------------+
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
42 a | b| |character | <- font bounding Box
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
43 x | b| | |
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
44 i | h| | #(bbox, bboy) |
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
45 s | v +----------------+
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
46 | (llx, lly)
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
47 | <---------------->
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
48 | bbw
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
49 +----------------------->
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
50 origin x axis
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
51 */
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
52
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
53
|
24496
|
54
|
24141
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
55 /* Structure of glyph information of one character. */
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
56 typedef struct
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
57 {
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
58 int dwidth; /* width in pixels */
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
59 int bbw, bbh, bbox, bboy; /* bounding box in pixels */
|
24496
|
60 } glyph_metric;
|
|
61
|
|
62 typedef struct
|
|
63 {
|
|
64 glyph_metric metric;
|
32023
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
65 int row_byte_size; /* size in bytes occupied by one row of the bitmap */
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
66 int bitmap_size; /* size in bytes of the following slots */
|
24141
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
67 unsigned char *bitmap; /* */
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
68 } glyph_struct;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
69
|
24496
|
70 typedef struct fchar *pfont_char;
|
|
71
|
|
72 typedef struct
|
|
73 {
|
|
74 glyph_metric metric;
|
|
75 pfont_char psrc;
|
32023
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
76 int row_byte_size;
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
77 int bitmap_size;
|
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
diff
changeset
|
78 unsigned char *pbmp;
|
24496
|
79 } cache_bitmap;
|
|
80
|
|
81 typedef struct fchar
|
|
82 {
|
|
83 unsigned char *offset;
|
|
84 cache_bitmap *pcbmp;
|
|
85 } font_char;
|
|
86
|
24141
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
87 typedef struct
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
88 {
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
89 char *filename;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
90 HANDLE hfile;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
91 HANDLE hfilemap;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
92 unsigned char *font;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
93 unsigned char *seeked;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
94 DWORD size;
|
24496
|
95 font_char *chtbl[BDF_FIRST_OFFSET_TABLE];
|
24141
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
96 int llx, lly, urx, ury; /* Font bounding box */
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
97
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
98 int yoffset;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
99 int relative_compose;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
100 int default_ascent;
|
24496
|
101
|
|
102 unsigned char *registry;
|
|
103 unsigned char *encoding;
|
|
104 unsigned char *slant;
|
|
105 /* unsigned char *width; */
|
|
106
|
24141
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
107 int width;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
108 int height;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
109 int pixsz;
|
33039
|
110 int nchars;
|
24141
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
111 } bdffont;
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
112
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
113 #define BDF_FILE_SIZE_MAX 256*1024*1024 /* 256Mb */
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
114 #define BDF_FONT_FILE(font) (((bdffont*)(font))->filename)
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
115 #define MAKELENDSHORT(c1, c2) (unsigned short)((c1) | ((c2) << 8))
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
116
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
117 bdffont *w32_init_bdf_font (char *filename);
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
118 void w32_free_bdf_font (bdffont *fontp);
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
119 int w32_get_bdf_glyph (bdffont *fontp, int index, int size,
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
120 glyph_struct *glyph);
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
121 int w32_BDF_TextOut (bdffont *fontp, HDC hdc, int left,
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
122 int top, unsigned char *text, int dim,
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
123 int bytelen, int fixed_pitch_size);
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
124 int w32_BDF_to_x_font (char *file, char* xstr, int len);
|
Geoff Voelker <voelker@cs.washington.edu>
parents:
diff
changeset
|
125
|
29601
|
126 #endif /* EMACS_W32BDF_H */
|