Made X11DRV_DIB_GetImageBits_16 aware of 565 DIBs.
[wine] / graphics / fontengine.c
1 /*
2  * True Type font engine support
3  *
4  * Copyright 1996 John Harvey
5  * Copyright 1998 David Lee Lambert
6  * 
7  */
8 #include <math.h>
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include "winbase.h"
12 #include "font.h"
13 #include "debugtools.h"     
14
15 DEFAULT_DEBUG_CHANNEL(font);
16
17 /***********************************************************************
18  *              EngineEnumerateFont16 (GDI.300)
19  */
20 WORD WINAPI 
21 EngineEnumerateFont16(LPSTR fontname, FARPROC16 proc, DWORD data )
22 {
23     FIXME("(%s,%p,%lx),stub\n",fontname,proc,data);
24     return 0;
25 }
26
27 /***********************************************************************
28  *              EngineDeleteFont16 (GDI.301)
29  */
30 WORD WINAPI EngineDeleteFont16(LPFONTINFO16 lpFontInfo)
31 {
32     WORD handle;
33
34     /*  untested, don't know if it works.
35         We seem to access some structure that is located after the
36         FONTINFO. The FONTINFO documentation says that there may 
37         follow some char-width table or font bitmap or vector info.
38         I think it is some kind of font bitmap that begins at offset 0x52,
39         as FONTINFO goes up to 0x51.
40         If this is correct, everything should be implemented correctly.
41     */
42     if ( ((lpFontInfo->dfType & (RASTER_FONTTYPE|DEVICE_FONTTYPE))
43       == (RASTER_FONTTYPE|DEVICE_FONTTYPE))
44         && (LOWORD(lpFontInfo->dfFace) == LOWORD(lpFontInfo)+0x6e)
45         && (handle = *(WORD *)(lpFontInfo+0x54)) )
46     {
47         *(WORD *)(lpFontInfo+0x54) = 0;
48         GlobalFree16(handle);
49     }
50     return 1;
51 }
52
53 /***********************************************************************
54  *              EngineRealizeFont16 (GDI.302)
55  */
56 WORD WINAPI EngineRealizeFont16(LPLOGFONT16 lplogFont, LPTEXTXFORM16 lptextxform, LPFONTINFO16 lpfontInfo)
57 {
58     FIXME("(%p,%p,%p),stub\n",lplogFont,lptextxform,lpfontInfo);
59     
60     return 0;
61 }
62
63 /***********************************************************************
64  *              EngineRealizeFontExt16 (GDI.315)
65  */
66 WORD WINAPI EngineRealizeFontExt16(LONG l1, LONG l2, LONG l3, LONG l4)
67 {
68     FIXME("(%08lx,%08lx,%08lx,%08lx),stub\n",l1,l2,l3,l4);
69     
70     return 0;
71 }
72
73 /***********************************************************************
74  *              EngineGetCharWidth16 (GDI.303)
75  */
76 WORD WINAPI EngineGetCharWidth16(LPFONTINFO16 lpFontInfo, BYTE firstChar, BYTE lastChar, LPINT16 buffer)
77 {
78     int i;
79
80     for (i = firstChar; i <= lastChar; i++)
81        FIXME(" returns font's average width for range %d to %d\n", firstChar, lastChar);
82         *buffer++ = lpFontInfo->dfAvgWidth; /* insert some charwidth functionality here; use average width for now */
83     return 1;
84 }
85
86 /***********************************************************************
87  *              EngineSetFontContext (GDI.304)
88  */
89 WORD WINAPI EngineSetFontContext(LPFONTINFO16 lpFontInfo, WORD data)
90 {
91    FIXME("stub?\n");
92         return 0;
93 }
94
95 /***********************************************************************
96  *              EngineGetGlyphBMP (GDI.305)
97  */
98 WORD WINAPI EngineGetGlyphBMP(WORD word, LPFONTINFO16 lpFontInfo, WORD w1, WORD w2, LPSTR string, DWORD dword, /*LPBITMAPMETRICS16*/ LPVOID metrics)
99 {
100    FIXME("stub?\n");
101     return 0;
102 }
103
104 /***********************************************************************
105  *              EngineMakeFontDir (GDI.306)
106  */
107 DWORD WINAPI EngineMakeFontDir(HDC16 hdc, LPFONTDIR16 fontdir, LPCSTR string)
108 {
109    FIXME(" stub! (always fails)\n");
110     return -1; /* error */
111     
112 }
113
114 /***********************************************************************
115  *              EngineExtTextOut (GDI.314)
116  */
117 WORD WINAPI EngineExtTextOut()
118 {
119    FIXME("stub!\n");
120     return 0;
121 }