1 /* Definitions and header for handling BDF fonts on the Microsoft W32 API.
2 Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007, 2008 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
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 3, or (at your option)
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.
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., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
22 /* Based heavily on code by H. Miyashita for Meadow (a descendant of
25 #ifndef EMACS_W32BDF_H
26 #define EMACS_W32BDF_H
28 #define BDF_FIRST_OFFSET_TABLE 0x200
29 #define BDF_SECOND_OFFSET_TABLE 0x80
30 #define BDF_SECOND_OFFSET(x) ((x) & 0x7f)
31 #define BDF_FIRST_OFFSET(x) (((x) >> 8) | (((x) & 0x80) << 1))
32 #define BDF_CODEPOINT_MAX (BDF_FIRST_OFFSET_TABLE * BDF_SECOND_OFFSET_TABLE)
33 #define BDF_CODEPOINT_RANGE_COVER_P(x) (((x) >= 0) && ((x) <= BDF_CODEPOINT_MAX))
35 #define BDF_FONT_CACHE_SIZE 3000
36 #define BDF_FONT_CLEAR_SIZE 600
39 GLYPH METRIC (# ... character's reference point)
42 | ^ +----------------+
43 a | b| |character | <- font bounding Box
45 i | h| | #(bbox, bboy) |
46 s | v +----------------+
50 +----------------------->
56 /* Structure of glyph information of one character. */
59 int dwidth
; /* width in pixels */
60 int bbw
, bbh
, bbox
, bboy
; /* bounding box in pixels */
66 int row_byte_size
; /* size in bytes occupied by one row of the bitmap */
67 int bitmap_size
; /* size in bytes of the following slots */
68 unsigned char *bitmap
; /* */
71 typedef struct fchar
*pfont_char
;
84 unsigned char *offset
;
94 unsigned char *seeked
;
96 font_char
*chtbl
[BDF_FIRST_OFFSET_TABLE
];
97 int llx
, lly
, urx
, ury
; /* Font bounding box */
100 int relative_compose
;
103 unsigned char *registry
;
104 unsigned char *encoding
;
105 unsigned char *slant
;
106 /* unsigned char *width; */
114 #define BDF_FILE_SIZE_MAX 256*1024*1024 /* 256Mb */
115 #define BDF_FONT_FILE(font) (((bdffont*)(font))->filename)
116 #define MAKELENDSHORT(c1, c2) (unsigned short)((c1) | ((c2) << 8))
118 bdffont
*w32_init_bdf_font (char *filename
);
119 void w32_free_bdf_font (bdffont
*fontp
);
120 int w32_get_bdf_glyph (bdffont
*fontp
, int index
, int size
,
121 glyph_struct
*glyph
);
122 int w32_BDF_TextOut (bdffont
*fontp
, HDC hdc
, int left
,
123 int top
, unsigned char *text
, int dim
,
124 int bytelen
, int fixed_pitch_size
);
125 int w32_BDF_to_x_font (char *file
, char* xstr
, int len
);
127 #endif /* EMACS_W32BDF_H */
129 /* arch-tag: 7499e9f2-197e-44cc-9274-373f00b51eec
130 (do not change this comment) */