1 /************************************************************************
3 Copyright 1987, 1998 The Open Group
5 Permission to use, copy, modify, distribute, and sell this software and its
6 documentation for any purpose is hereby granted without fee, provided that
7 the above copyright notice appear in all copies and that both that
8 copyright notice and this permission notice appear in supporting
11 The above copyright notice and this permission notice shall be included in
12 all copies or substantial portions of the Software.
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 Except as contained in this notice, the name of The Open Group shall not be
22 used in advertising or otherwise to promote the sale, use or other dealings
23 in this Software without prior written authorization from The Open Group.
26 Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
30 Permission to use, copy, modify, and distribute this software and its
31 documentation for any purpose and without fee is hereby granted,
32 provided that the above copyright notice appear in all copies and that
33 both that copyright notice and this permission notice appear in
34 supporting documentation, and that the name of Digital not be
35 used in advertising or publicity pertaining to distribution of the
36 software without specific, written prior permission.
38 DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
39 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
40 DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
41 ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
42 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
43 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
46 ************************************************************************/
49 #ifdef HAVE_DIX_CONFIG_H
50 #include <dix-config.h>
54 #include <X11/fonts/fontstruct.h>
55 #include "dixfontstr.h"
56 #include "scrnintstr.h"
60 #include "cursorstr.h"
66 get the bits out of the font in a portable way. to avoid
67 dealing with padding and such-like, we draw the glyph into
68 a bitmap, then read the bits out with GetImage, which
69 uses server-natural format.
70 since all screens return the same bitmap format, we'll just use
71 the first one we find.
72 the character origin lines up with the hotspot in the
77 ServerBitsFromGlyph(FontPtr pfont
, unsigned ch
, CursorMetricPtr cm
, unsigned char **ppbits
)
86 unsigned char char2b
[2];
88 /* turn glyph index into a protocol-format char2b */
89 char2b
[0] = (unsigned char)(ch
>> 8);
90 char2b
[1] = (unsigned char)(ch
& 0xff);
92 pScreen
= screenInfo
.screens
[0];
93 nby
= BitmapBytePad(cm
->width
) * (long)cm
->height
;
94 pbits
= (char *)xalloc(nby
);
97 /* zeroing the (pad) bits seems to help some ddx cursor handling */
100 ppix
= (PixmapPtr
)(*pScreen
->CreatePixmap
)(pScreen
, cm
->width
,
102 pGC
= GetScratchGC(1, pScreen
);
106 (*pScreen
->DestroyPixmap
)(ppix
);
115 rect
.width
= cm
->width
;
116 rect
.height
= cm
->height
;
118 /* fill the pixmap with 0 */
119 gcval
[0].val
= GXcopy
;
121 gcval
[2].ptr
= (pointer
)pfont
;
122 dixChangeGC(NullClient
, pGC
, GCFunction
| GCForeground
| GCFont
,
124 ValidateGC((DrawablePtr
)ppix
, pGC
);
125 (*pGC
->ops
->PolyFillRect
)((DrawablePtr
)ppix
, pGC
, 1, &rect
);
129 dixChangeGC(NullClient
, pGC
, GCForeground
, NULL
, gcval
);
130 ValidateGC((DrawablePtr
)ppix
, pGC
);
131 (*pGC
->ops
->PolyText16
)((DrawablePtr
)ppix
, pGC
, cm
->xhot
, cm
->yhot
,
132 1, (unsigned short *)char2b
);
133 (*pScreen
->GetImage
)((DrawablePtr
)ppix
, 0, 0, cm
->width
, cm
->height
,
135 *ppbits
= (unsigned char *)pbits
;
137 (*pScreen
->DestroyPixmap
)(ppix
);
143 CursorMetricsFromGlyph(FontPtr pfont
, unsigned ch
, CursorMetricPtr cm
)
146 unsigned long nglyphs
;
148 FontEncoding encoding
;
152 encoding
= (FONTLASTROW(pfont
) == 0) ? Linear16Bit
: TwoD16Bit
;
153 if (encoding
== Linear16Bit
)
155 if (ch
< pfont
->info
.firstCol
|| pfont
->info
.lastCol
< ch
)
160 if (chs
[0] < pfont
->info
.firstRow
|| pfont
->info
.lastRow
< chs
[0])
162 if (chs
[1] < pfont
->info
.firstCol
|| pfont
->info
.lastCol
< chs
[1])
165 (*pfont
->get_glyphs
) (pfont
, 1, chs
, encoding
, &nglyphs
, &pci
);
168 cm
->width
= pci
->metrics
.rightSideBearing
- pci
->metrics
.leftSideBearing
;
169 cm
->height
= pci
->metrics
.descent
+ pci
->metrics
.ascent
;
170 if (pci
->metrics
.leftSideBearing
> 0)
172 cm
->width
+= pci
->metrics
.leftSideBearing
;
177 cm
->xhot
= -pci
->metrics
.leftSideBearing
;
178 if (pci
->metrics
.rightSideBearing
< 0)
179 cm
->width
-= pci
->metrics
.rightSideBearing
;
181 if (pci
->metrics
.ascent
< 0)
183 cm
->height
-= pci
->metrics
.ascent
;
188 cm
->yhot
= pci
->metrics
.ascent
;
189 if (pci
->metrics
.descent
< 0)
190 cm
->height
-= pci
->metrics
.descent
;