📄 ffcheck.c
字号:
/* $XConsortium: ffcheck.c /main/1 1996/09/28 16:48:58 rws $ *//*Copyright (c) 1991 X ConsortiumPermission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included inall copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEX CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER INAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR INCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.Except as contained in this notice, the name of the X Consortium shall not beused in advertising or otherwise to promote the sale, use or other dealingsin this Software without prior written authorization from the X Consortium.*//* * Author: Keith Packard, MIT X Consortium *//* $NCDId: @(#)fontfile.c,v 1.6 1991/07/02 17:00:46 lemke Exp $ */#include "fntfilst.h"/* * Map FPE functions to renderer functions */extern int FontFileNameCheck();extern int FontFileInitFPE();extern int FontFileResetFPE();extern int FontFileFreeFPE();extern void FontFileCloseFont();/* Here we must check the client to see if it has a context attached to * it that allows us to access the printer fonts */intFontFileCheckOpenFont (client, fpe, flags, name, namelen, format, fmask, id, pFont, aliasName, non_cachable_font) pointer client; FontPathElementPtr fpe; int flags; char *name; int namelen; fsBitmapFormat format; fsBitmapFormatMask fmask; XID id; FontPtr *pFont; char **aliasName; FontPtr non_cachable_font;{ if (XpClientIsBitmapClient(client)) return (FontFileOpenFont (client, fpe, flags, name, namelen, format, fmask, id, pFont, aliasName, non_cachable_font)); return BadFontName;}FontFileCheckListFonts (client, fpe, pat, len, max, names) pointer client; FontPathElementPtr fpe; char *pat; int len; int max; FontNamesPtr names;{ if (XpClientIsBitmapClient(client)) return FontFileListFonts (client, fpe, pat, len, max, names); return BadFontName;}FontFileCheckStartListFontsWithInfo(client, fpe, pat, len, max, privatep) pointer client; FontPathElementPtr fpe; char *pat; int len; int max; pointer *privatep;{ if (XpClientIsBitmapClient(client)) return FontFileStartListFontsWithInfo(client, fpe, pat, len, max, privatep); return BadFontName;}FontFileCheckListNextFontWithInfo(client, fpe, namep, namelenp, pFontInfo, numFonts, private) pointer client; FontPathElementPtr fpe; char **namep; int *namelenp; FontInfoPtr *pFontInfo; int *numFonts; pointer private;{ if (XpClientIsBitmapClient(client)) return FontFileListNextFontWithInfo(client, fpe, namep, namelenp, pFontInfo, numFonts, private); return BadFontName;}FontFileCheckStartListFontsAndAliases(client, fpe, pat, len, max, privatep) pointer client; FontPathElementPtr fpe; char *pat; int len; int max; pointer *privatep;{ if (XpClientIsBitmapClient(client)) return FontFileStartListFontsAndAliases(client, fpe, pat, len, max, privatep); return BadFontName;}intFontFileCheckListNextFontOrAlias(client, fpe, namep, namelenp, resolvedp, resolvedlenp, private) pointer client; FontPathElementPtr fpe; char **namep; int *namelenp; char **resolvedp; int *resolvedlenp; pointer private;{ if (XpClientIsBitmapClient(client)) return FontFileListNextFontOrAlias(client, fpe, namep, namelenp, resolvedp, resolvedlenp, private); return BadFontName;}extern void FontFileEmptyBitmapSource();typedef int (*IntFunc) ();static int font_file_check_type;FontFileCheckRegisterFpeFunctions (){ BitmapRegisterFontFileFunctions ();#ifndef CRAY SpeedoRegisterFontFileFunctions (); Type1RegisterFontFileFunctions();#endif RegisterFPEFunctions(FontFileNameCheck, FontFileInitFPE, FontFileFreeFPE, FontFileResetFPE, FontFileCheckOpenFont, FontFileCloseFont, FontFileCheckListFonts, FontFileCheckStartListFontsWithInfo, FontFileCheckListNextFontWithInfo, (IntFunc) 0, (IntFunc) 0, (IntFunc) 0, FontFileCheckStartListFontsAndAliases, FontFileCheckListNextFontOrAlias, FontFileEmptyBitmapSource);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -