1 /* Definitions and header for handling BDF fonts on the Microsoft W32 API.
2 Copyright (C) 1999 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Based heavily on code by H. Miyashita for Meadow (a descendant of
24 #ifndef EMACS_W32BDF_H
25 #define EMACS_W32BDF_H
27 #define BDF_FIRST_OFFSET_TABLE 0x200
28 #define BDF_SECOND_OFFSET_TABLE 0x80
29 #define BDF_SECOND_OFFSET(x) ((x) & 0x7f)
30 #define BDF_FIRST_OFFSET(x) (((x) >> 8) | (((x) & 0x80) << 1))
31 #define BDF_CODEPOINT_MAX (BDF_FIRST_OFFSET_TABLE * BDF_SECOND_OFFSET_TABLE)
32 #define BDF_CODEPOINT_RANGE_COVER_P(x) (((x) >= 0) && ((x) <= BDF_CODEPOINT_MAX))
34 #define BDF_FONT_CACHE_SIZE 3000
35 #define BDF_FONT_CLEAR_SIZE 600
38 GLYPH METRIC (# ... character's reference point)
41 | ^ +----------------+
42 a | b| |character | <- font bounding Box
44 i | h| | #(bbox, bboy) |
45 s | v +----------------+
49 +----------------------->
55 /* Structure of glyph information of one character. */
58 int dwidth
; /* width in pixels */
59 int bbw
, bbh
, bbox
, bboy
; /* bounding box in pixels */
65 int row_byte_size
; /* size in bytes occupied by one row of the bitmap */
66 int bitmap_size
; /* size in bytes of the following slots */
67 unsigned char *bitmap
; /* */
70 typedef struct fchar
*pfont_char
;
83 unsigned char *offset
;
93 unsigned char *seeked
;
95 font_char
*chtbl
[BDF_FIRST_OFFSET_TABLE
];
96 int llx
, lly
, urx
, ury
; /* Font bounding box */
102 unsigned char *registry
;
103 unsigned char *encoding
;
104 unsigned char *slant
;
105 /* unsigned char *width; */
113 #define BDF_FILE_SIZE_MAX 256*1024*1024 /* 256Mb */
114 #define BDF_FONT_FILE(font) (((bdffont*)(font))->filename)
115 #define MAKELENDSHORT(c1, c2) (unsigned short)((c1) | ((c2) << 8))
117 bdffont
*w32_init_bdf_font (char *filename
);
118 void w32_free_bdf_font (bdffont
*fontp
);
119 int w32_get_bdf_glyph (bdffont
*fontp
, int index
, int size
,
120 glyph_struct
*glyph
);
121 int w32_BDF_TextOut (bdffont
*fontp
, HDC hdc
, int left
,
122 int top
, unsigned char *text
, int dim
,
123 int bytelen
, int fixed_pitch_size
);
124 int w32_BDF_to_x_font (char *file
, char* xstr
, int len
);
126 #endif /* EMACS_W32BDF_H */
128 /* arch-tag: 7499e9f2-197e-44cc-9274-373f00b51eec
129 (do not change this comment) */