annotate src/objects-msw.h @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents 57709be46d1b
children a86b2b5e0111
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
1 /* mswindows-specific Lisp objects.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
3 Copyright (C) 1995 Board of Trustees, University of Illinois.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
4 Copyright (C) 1995, 1996 Ben Wing.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
5 Copyright (C) 1997, Jonathan Harris.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
6
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
7 This file is part of XEmacs.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
8
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
9 XEmacs is free software; you can redistribute it and/or modify it
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
10 under the terms of the GNU General Public License as published by the
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
11 Free Software Foundation; either version 2, or (at your option) any
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
12 later version.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
13
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
17 for more details.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
18
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
19 You should have received a copy of the GNU General Public License
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
20 along with XEmacs; see the file COPYING. If not, write to
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
22 Boston, MA 02111-1307, USA. */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
23
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
24 /* Synched up with: Not in FSF. */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
25
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
26 /* Authorship:
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
27
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
28 Ultimately based on FSF.
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
29 Rewritten by Ben Wing.
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 213
diff changeset
30 Rewritten for mswindows by Jonathan Harris, November 1997 for 21.0.
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
31 */
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
32
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
33
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
34 #ifndef INCLUDED_objects_msw_h_
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
35 #define INCLUDED_objects_msw_h_
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
36
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
37 #include "objects.h"
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
38
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
39 struct mswindows_color_instance_data
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
40 {
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
41 COLORREF color;
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
42 };
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
43
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
44 #define MSWINDOWS_COLOR_INSTANCE_DATA(c) \
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
45 ((struct mswindows_color_instance_data *) (c)->data)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
46 #define COLOR_INSTANCE_MSWINDOWS_COLOR(c) \
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
47 (MSWINDOWS_COLOR_INSTANCE_DATA (c)->color)
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
48
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
49 /* The four HFONTS are for the 4 (underlined, strikethrough)
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
50 combinations. Only the one at index 0, neither underlined nor
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
51 struk through is created with the font instance. Other fonts are
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
52 created as necessary during redisplay, using the one at index 0
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
53 as protptype */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
54 #define MSWINDOWS_NUM_FONT_VARIANTS 4
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
55 struct mswindows_font_instance_data
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
56 {
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
57 HFONT hfont [MSWINDOWS_NUM_FONT_VARIANTS];
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
58 };
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
59
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
60 #define MSWINDOWS_FONT_INSTANCE_DATA(c) \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
61 ((struct mswindows_font_instance_data *) (c)->data)
213
78f53ef88e17 Import from CVS: tag r20-4b5
cvs
parents:
diff changeset
62
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
63 #define FONT_INSTANCE_MSWINDOWS_HFONT_I(c,i) \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
64 (MSWINDOWS_FONT_INSTANCE_DATA(c)->hfont[(i)])
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
65
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
66 #define FONT_INSTANCE_MSWINDOWS_HFONT_VARIANT(c,under,strike) \
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
67 FONT_INSTANCE_MSWINDOWS_HFONT_I (c, (!!(strike)<<1)|!!(under))
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
68
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
69 /* If font creation during redisplay fails, then the following
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
70 value is used to prevent future attempts to create this font.
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
71 Redisplay uses the "main" font when encounters this value */
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
72 #define MSWINDOWS_BAD_HFONT INVALID_HANDLE_VALUE
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
73
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
74 HFONT mswindows_get_hfont (Lisp_Font_Instance* f, int under, int strike);
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
75
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 286
diff changeset
76 #endif /* INCLUDED_objects_msw_h_ */