1*4882a593Smuzhiyun /*******************************************************************
2*4882a593Smuzhiyun
3*4882a593Smuzhiyun Copyright 1987, 1998 The Open Group
4*4882a593Smuzhiyun
5*4882a593Smuzhiyun Permission to use, copy, modify, distribute, and sell this software and its
6*4882a593Smuzhiyun documentation for any purpose is hereby granted without fee, provided that
7*4882a593Smuzhiyun the above copyright notice appear in all copies and that both that
8*4882a593Smuzhiyun copyright notice and this permission notice appear in supporting
9*4882a593Smuzhiyun documentation.
10*4882a593Smuzhiyun
11*4882a593Smuzhiyun The above copyright notice and this permission notice shall be included in
12*4882a593Smuzhiyun all copies or substantial portions of the Software.
13*4882a593Smuzhiyun
14*4882a593Smuzhiyun THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15*4882a593Smuzhiyun IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16*4882a593Smuzhiyun FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17*4882a593Smuzhiyun OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18*4882a593Smuzhiyun AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19*4882a593Smuzhiyun CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20*4882a593Smuzhiyun
21*4882a593Smuzhiyun Except as contained in this notice, the name of The Open Group shall not be
22*4882a593Smuzhiyun used in advertising or otherwise to promote the sale, use or other dealings
23*4882a593Smuzhiyun in this Software without prior written authorization from The Open Group.
24*4882a593Smuzhiyun
25*4882a593Smuzhiyun Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
26*4882a593Smuzhiyun
27*4882a593Smuzhiyun All Rights Reserved
28*4882a593Smuzhiyun
29*4882a593Smuzhiyun Permission to use, copy, modify, and distribute this software and its
30*4882a593Smuzhiyun documentation for any purpose and without fee is hereby granted,
31*4882a593Smuzhiyun provided that the above copyright notice appear in all copies and that
32*4882a593Smuzhiyun both that copyright notice and this permission notice appear in
33*4882a593Smuzhiyun supporting documentation, and that the name of Digital not be
34*4882a593Smuzhiyun used in advertising or publicity pertaining to distribution of the
35*4882a593Smuzhiyun software without specific, written prior permission.
36*4882a593Smuzhiyun
37*4882a593Smuzhiyun DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
38*4882a593Smuzhiyun ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
39*4882a593Smuzhiyun DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
40*4882a593Smuzhiyun ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
41*4882a593Smuzhiyun WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
42*4882a593Smuzhiyun ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
43*4882a593Smuzhiyun SOFTWARE.
44*4882a593Smuzhiyun
45*4882a593Smuzhiyun ************************************************************************/
46*4882a593Smuzhiyun /*
47*4882a593Smuzhiyun * mipolytext.c - text routines
48*4882a593Smuzhiyun *
49*4882a593Smuzhiyun * Author: haynes
50*4882a593Smuzhiyun * Digital Equipment Corporation
51*4882a593Smuzhiyun * Western Software Laboratory
52*4882a593Smuzhiyun * Date: Thu Feb 5 1987
53*4882a593Smuzhiyun */
54*4882a593Smuzhiyun
55*4882a593Smuzhiyun #ifdef HAVE_DIX_CONFIG_H
56*4882a593Smuzhiyun #include <dix-config.h>
57*4882a593Smuzhiyun #endif
58*4882a593Smuzhiyun
59*4882a593Smuzhiyun #include <X11/X.h>
60*4882a593Smuzhiyun #include <X11/Xmd.h>
61*4882a593Smuzhiyun #include <X11/Xproto.h>
62*4882a593Smuzhiyun #include "misc.h"
63*4882a593Smuzhiyun #include "gcstruct.h"
64*4882a593Smuzhiyun #include <X11/fonts/fontstruct.h>
65*4882a593Smuzhiyun #include "dixfontstr.h"
66*4882a593Smuzhiyun #include "mi.h"
67*4882a593Smuzhiyun
68*4882a593Smuzhiyun int
miPolyText8(DrawablePtr pDraw,GCPtr pGC,int x,int y,int count,char * chars)69*4882a593Smuzhiyun miPolyText8(DrawablePtr pDraw, GCPtr pGC, int x, int y, int count, char *chars)
70*4882a593Smuzhiyun {
71*4882a593Smuzhiyun unsigned long n, i;
72*4882a593Smuzhiyun int w;
73*4882a593Smuzhiyun CharInfoPtr charinfo[255]; /* encoding only has 1 byte for count */
74*4882a593Smuzhiyun
75*4882a593Smuzhiyun GetGlyphs(pGC->font, (unsigned long) count, (unsigned char *) chars,
76*4882a593Smuzhiyun Linear8Bit, &n, charinfo);
77*4882a593Smuzhiyun w = 0;
78*4882a593Smuzhiyun for (i = 0; i < n; i++)
79*4882a593Smuzhiyun w += charinfo[i]->metrics.characterWidth;
80*4882a593Smuzhiyun if (n != 0)
81*4882a593Smuzhiyun (*pGC->ops->PolyGlyphBlt) (pDraw, pGC, x, y, n, charinfo,
82*4882a593Smuzhiyun FONTGLYPHS(pGC->font));
83*4882a593Smuzhiyun return x + w;
84*4882a593Smuzhiyun }
85*4882a593Smuzhiyun
86*4882a593Smuzhiyun int
miPolyText16(DrawablePtr pDraw,GCPtr pGC,int x,int y,int count,unsigned short * chars)87*4882a593Smuzhiyun miPolyText16(DrawablePtr pDraw, GCPtr pGC, int x, int y, int count,
88*4882a593Smuzhiyun unsigned short *chars)
89*4882a593Smuzhiyun {
90*4882a593Smuzhiyun unsigned long n, i;
91*4882a593Smuzhiyun int w;
92*4882a593Smuzhiyun CharInfoPtr charinfo[255]; /* encoding only has 1 byte for count */
93*4882a593Smuzhiyun
94*4882a593Smuzhiyun GetGlyphs(pGC->font, (unsigned long) count, (unsigned char *) chars,
95*4882a593Smuzhiyun (FONTLASTROW(pGC->font) == 0) ? Linear16Bit : TwoD16Bit,
96*4882a593Smuzhiyun &n, charinfo);
97*4882a593Smuzhiyun w = 0;
98*4882a593Smuzhiyun for (i = 0; i < n; i++)
99*4882a593Smuzhiyun w += charinfo[i]->metrics.characterWidth;
100*4882a593Smuzhiyun if (n != 0)
101*4882a593Smuzhiyun (*pGC->ops->PolyGlyphBlt) (pDraw, pGC, x, y, n, charinfo,
102*4882a593Smuzhiyun FONTGLYPHS(pGC->font));
103*4882a593Smuzhiyun return x + w;
104*4882a593Smuzhiyun }
105*4882a593Smuzhiyun
106*4882a593Smuzhiyun void
miImageText8(DrawablePtr pDraw,GCPtr pGC,int x,int y,int count,char * chars)107*4882a593Smuzhiyun miImageText8(DrawablePtr pDraw, GCPtr pGC, int x, int y, int count, char *chars)
108*4882a593Smuzhiyun {
109*4882a593Smuzhiyun unsigned long n;
110*4882a593Smuzhiyun FontPtr font = pGC->font;
111*4882a593Smuzhiyun CharInfoPtr charinfo[255]; /* encoding only has 1 byte for count */
112*4882a593Smuzhiyun
113*4882a593Smuzhiyun GetGlyphs(font, (unsigned long) count, (unsigned char *) chars,
114*4882a593Smuzhiyun Linear8Bit, &n, charinfo);
115*4882a593Smuzhiyun if (n != 0)
116*4882a593Smuzhiyun (*pGC->ops->ImageGlyphBlt) (pDraw, pGC, x, y, n, charinfo,
117*4882a593Smuzhiyun FONTGLYPHS(font));
118*4882a593Smuzhiyun }
119*4882a593Smuzhiyun
120*4882a593Smuzhiyun void
miImageText16(DrawablePtr pDraw,GCPtr pGC,int x,int y,int count,unsigned short * chars)121*4882a593Smuzhiyun miImageText16(DrawablePtr pDraw, GCPtr pGC, int x, int y,
122*4882a593Smuzhiyun int count, unsigned short *chars)
123*4882a593Smuzhiyun {
124*4882a593Smuzhiyun unsigned long n;
125*4882a593Smuzhiyun FontPtr font = pGC->font;
126*4882a593Smuzhiyun CharInfoPtr charinfo[255]; /* encoding only has 1 byte for count */
127*4882a593Smuzhiyun
128*4882a593Smuzhiyun GetGlyphs(font, (unsigned long) count, (unsigned char *) chars,
129*4882a593Smuzhiyun (FONTLASTROW(pGC->font) == 0) ? Linear16Bit : TwoD16Bit,
130*4882a593Smuzhiyun &n, charinfo);
131*4882a593Smuzhiyun if (n != 0)
132*4882a593Smuzhiyun (*pGC->ops->ImageGlyphBlt) (pDraw, pGC, x, y, n, charinfo,
133*4882a593Smuzhiyun FONTGLYPHS(font));
134*4882a593Smuzhiyun }
135