Mercurial > emacs
annotate src/w32bdf.h @ 67756:7ff92ad99326
* mh-alias.el (mh-alias-reload): Sync docstrings with manual.
* mh-comp.el (mh-letter-mode): Use 60 column width.
(mh-forward, mh-insert-signature, mh-send-letter): Sync docstrings
with manual.
(mh-yank-cur-msg): Mention that mh-ins-buf-prefix isn't used if you
have added a mail-citation-hook and neither are used if you use one of
the supercite flavors of mh-yank-behavior. Sync docstrings with
manual.
* mh-customize.el (mh-ins-buf-prefix, mh-yank-behavior): Mention that
mh-ins-buf-prefix isn't used if you have added a mail-citation-hook
and neither are used if you use one of the supercite flavors of
mh-yank-behavior. Sync docstrings with manual.
(mail-citation-hook): Delete. Use one in sendmail.el.
(mh-signature-file-name, mh-after-commands-processed-hook)
(mh-alias-reloaded-hook, mh-before-commands-processed-hook)
(mh-before-quit-hook, mh-before-send-letter-hook) (mh-delete-msg-hook,
mh-find-path-hook, mh-folder-mode-hook) (mh-forward-hook,
mh-inc-folder-hook, mh-insert-signature-hook)
(mh-kill-folder-suppress-prompt-hooks, mh-letter-mode-hook)
(mh-mh-to-mime-hook, mh-pick-mode-hook, mh-quit-hook)
(mh-refile-msg-hook, mh-show-hook, mh-show-mode-hook)
(mh-unseen-updated-hook): Sync docstrings with manual. Use "Hook run
by `function'..." instead of "Invoked...".
* mh-e.el (mh-last-destination, mh-last-destination-folder)
(mh-last-destination-write, mh-folder-mode-map, mh-arrow-marker)
(mh-delete-list, mh-refile-list, mh-folders-changed)
(mh-next-direction, mh-view-ops, mh-folder-view-stack) (mh-index-data,
mh-first-msg-num, mh-last-msg-num) (mh-mode-line-annotation,
mh-sequence-notation-history)
(mh-colors-available-flag): Move comment into
docstring. (mh-delete-msg, mh-execute-commands, mh-inc-folder,
mh-quit, mh-process-commands): Sync docstrings with manual.
(mh-refile-msg): Small doc edit.
(mh-delete-a-msg, mh-refile-a-msg): Sync docstrings with manual.
Rename msg argument to message.
* mh-funcs.el (mh-kill-folder): Sync docstrings with manual.
* mh-e.el (mh-update-unseen): No longer say "The value of `foo-hook'
is a list of functions to be called, with no arguments, ...," but
rather just "The hook foo-hook is called...".
* mh-mime.el (mh-mh-to-mime): Ditto
* mh-pick.el (mh-pick-mode): Ditto.
* mh-utils.el (mh-showing-mode): Use uppercase for argument in
docstring.
(mh-seq-list, mh-seen-list, mh-showing-with-headers): Move comment
into docstring.
(mh-show-mode, mh-show-msg, mh-find-path): Sync docstrings with
manual.
author | Bill Wohler <wohler@newt.com> |
---|---|
date | Fri, 23 Dec 2005 05:38:54 +0000 |
parents | a0d1312ede66 |
children | 3bd95f4f2941 2d92f5c9d6ae |
rev | line source |
---|---|
24141 | 1 /* Definitions and header for handling BDF fonts on the Microsoft W32 API. |
64770
a0d1312ede66
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
2 Copyright (C) 1999, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. |
24141 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
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) | |
9 any later version. | |
10 | |
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. | |
15 | |
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 | |
64084 | 18 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
19 Boston, MA 02110-1301, USA. */ | |
24141 | 20 |
21 /* Based heavily on code by H. Miyashita for Meadow (a descendant of | |
22 MULE for W32). */ | |
23 | |
29601
9cbfd0ef31df
Changed __W32BDF_H__ to EMACS_W32BDF_H to comply with ISO C spec.
Jason Rumney <jasonr@gnu.org>
parents:
24496
diff
changeset
|
24 #ifndef EMACS_W32BDF_H |
9cbfd0ef31df
Changed __W32BDF_H__ to EMACS_W32BDF_H to comply with ISO C spec.
Jason Rumney <jasonr@gnu.org>
parents:
24496
diff
changeset
|
25 #define EMACS_W32BDF_H |
24141 | 26 |
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)) | |
32023
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
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>
parents:
29601
diff
changeset
|
32 #define BDF_CODEPOINT_RANGE_COVER_P(x) (((x) >= 0) && ((x) <= BDF_CODEPOINT_MAX)) |
24141 | 33 |
32023
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
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>
parents:
29601
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>
parents:
29601
diff
changeset
|
36 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
33039
diff
changeset
|
37 /* |
32023
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
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>
parents:
29601
diff
changeset
|
39 ^ |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
40 y | (urx, ury) |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
41 | ^ +----------------+ |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
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>
parents:
29601
diff
changeset
|
43 x | b| | | |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
44 i | h| | #(bbox, bboy) | |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
45 s | v +----------------+ |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
46 | (llx, lly) |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
47 | <----------------> |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
48 | bbw |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
49 +-----------------------> |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
50 origin x axis |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
51 */ |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
52 |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
53 |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
54 |
24141 | 55 /* Structure of glyph information of one character. */ |
56 typedef struct | |
57 { | |
58 int dwidth; /* width in pixels */ | |
59 int bbw, bbh, bbox, bboy; /* bounding box in pixels */ | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
60 } glyph_metric; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
61 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
62 typedef struct |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
63 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
64 glyph_metric metric; |
32023
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
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>
parents:
29601
diff
changeset
|
66 int bitmap_size; /* size in bytes of the following slots */ |
24141 | 67 unsigned char *bitmap; /* */ |
68 } glyph_struct; | |
69 | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
70 typedef struct fchar *pfont_char; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
71 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
72 typedef struct |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
73 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
74 glyph_metric metric; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
75 pfont_char psrc; |
32023
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
76 int row_byte_size; |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
77 int bitmap_size; |
cc32b6a62560
(glyph_struct, cache_bitmap): Cache bitmap data, not GDI object which
Jason Rumney <jasonr@gnu.org>
parents:
29601
diff
changeset
|
78 unsigned char *pbmp; |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
79 } cache_bitmap; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
80 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
81 typedef struct fchar |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
82 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
83 unsigned char *offset; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
84 cache_bitmap *pcbmp; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
85 } font_char; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
86 |
24141 | 87 typedef struct |
88 { | |
89 char *filename; | |
90 HANDLE hfile; | |
91 HANDLE hfilemap; | |
92 unsigned char *font; | |
93 unsigned char *seeked; | |
94 DWORD size; | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
95 font_char *chtbl[BDF_FIRST_OFFSET_TABLE]; |
24141 | 96 int llx, lly, urx, ury; /* Font bounding box */ |
97 | |
98 int yoffset; | |
99 int relative_compose; | |
100 int default_ascent; | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
101 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
102 unsigned char *registry; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
103 unsigned char *encoding; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
104 unsigned char *slant; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
105 /* unsigned char *width; */ |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
106 |
24141 | 107 int width; |
108 int height; | |
109 int pixsz; | |
33039 | 110 int nchars; |
24141 | 111 } bdffont; |
112 | |
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)) | |
116 | |
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); | |
125 | |
29601
9cbfd0ef31df
Changed __W32BDF_H__ to EMACS_W32BDF_H to comply with ISO C spec.
Jason Rumney <jasonr@gnu.org>
parents:
24496
diff
changeset
|
126 #endif /* EMACS_W32BDF_H */ |
52401 | 127 |
128 /* arch-tag: 7499e9f2-197e-44cc-9274-373f00b51eec | |
129 (do not change this comment) */ |