⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 thai-shaper.h

📁 Pango is a library for layout and rendering of text, with an emphasis on internationalization. Pang
💻 H
字号:
/* Pango * thai-shaper.h: * * Copyright (C) 1999 Red Hat Software * Author: Owen Taylor <otaylor@redhat.com> * * Copyright (C) 2004 Theppitak Karoonboonyanan * Copyright (C) 2002 Software and Language Engineering Laboratory, NECTEC * Author: Theppitak Karoonboonyanan <thep@linux.thai.net> * * Copyright (c) 1996-2000 by Sun Microsystems, Inc. * Author: Chookij Vanatham <Chookij.Vanatham@Eng.Sun.COM> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */#ifndef __THAI_SHAPER_H__#define __THAI_SHAPER_H__typedef struct _ThaiFontInfo ThaiFontInfo;/* Font encodings we will use */typedef enum {  THAI_FONT_NONE,  THAI_FONT_TIS,  THAI_FONT_TIS_MAC,  THAI_FONT_TIS_WIN} ThaiFontSet;typedef enum {  THAI_FONTINFO_X,  THAI_FONTINFO_XFT} ThaiFontInfoType;struct _ThaiFontInfo{  PangoFont       *font;  ThaiFontSet      font_set;};/* * Abstract methods (implemented by each shaper module) */PangoGlyphthai_get_glyph_tis (ThaiFontInfo *font_info, guchar c);PangoGlyphthai_make_glyph_tis (ThaiFontInfo *font_info, guchar c);PangoGlyphthai_get_glyph_uni (ThaiFontInfo *font_info, gunichar uc);PangoGlyphthai_make_glyph_uni (ThaiFontInfo *font_info, gunichar uc);PangoGlyphthai_make_unknown_glyph (ThaiFontInfo *font_info, gunichar uc);voidthai_set_glyphs (ThaiFontInfo     *font_info,		 const char       *text,		 gint              length,		 PangoScript       script,		 PangoGlyphString *glyphs);#endif /* __THAI_SHAPER_H__ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -