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

📄 xmbtext.c

📁 早期freebsd实现
💻 C
字号:
/* * $XConsortium: XmbText.c,v 1.13 91/05/02 11:57:32 rws Exp $ *//* * Copyright 1990, 1991 by OMRON Corporation, NTT Software Corporation, *                      and Nippon Telegraph and Telephone Corporation * Copyright 1991 by the Massachusetts Institute of Technology * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that * the above copyright notice appear in all copies and that both that * copyright notice and this permission notice appear in supporting * documentation, and that the names of OMRON, NTT Software, NTT, and M.I.T. * not be used in advertising or publicity pertaining to distribution of the * software without specific, written prior permission. OMRON, NTT Software, * NTT, and M.I.T. make no representations about the suitability of this * software for any purpose.  It is provided "as is" without express or * implied warranty. * * OMRON, NTT SOFTWARE, NTT, AND M.I.T. DISCLAIM ALL WARRANTIES WITH REGARD * TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS, IN NO EVENT SHALL OMRON, NTT SOFTWARE, NTT, OR M.I.T. BE * LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * *	Authors: Li Yuhong		OMRON Corporation *		 Tatsuya Kato		NTT Software Corporation *		 Hiroshi Kuribayashi	OMRON Corporation *    */#include <stdio.h>#include <X11/Xlib.h>#include "Xi18nint.h"/* * The bodies of function XmbDrawString and XmbDrawImageString are * almost same. */int_XsimbDrawString(dpy, d, font_set, gc, x, y, text, text_len)    register Display   *dpy;    Drawable            d;    XFontSet            font_set;    GC                  gc;    int                 x, y;    char               *text;    int                 text_len;{#define DecomposeGlyphCharset(xlocale,mbstr,mb_bytes,cs_str,cs_bytes,scanned,ctid) \        _XmbDecomposeGlyphCharset(xlocale, (unsigned char *)mbstr, mb_bytes, (unsigned char *)cs_str, cs_bytes, scanned, ctid)#define DrawString(dpy,d,g,x,y,str,len)                           \        XDrawString(dpy, d, g, x, y, str, len)#define DrawString16(dpy,d,g,x,y,str,len)                         \        XDrawString16(dpy, d, g, x, y, str, len)#include "TextBody.c"#undef DrawString#undef DrawString16    return 0;}void_XsimbDrawImageString(dpy, d, font_set, gc, x, y, text, text_len)    register Display   *dpy;    Drawable            d;    XFontSet            font_set;    GC                  gc;    int                 x, y;    char               *text;    int                 text_len;{#define DrawString(dpy,d,g,x,y,str,len)                           \        XDrawImageString(dpy, d, g, x, y, str, len)#define DrawString16(dpy,d,g,x,y,str,len)                         \        XDrawImageString16(dpy, d, g, x, y, str, len)#include "TextBody.c"#undef DecomposeGlyphCharset#undef DrawString#undef DrawString16}int_Xsimb8DrawString(dpy, d, font_set, gc, x, y, text, text_len)    register Display   *dpy;    Drawable            d;    XFontSet            font_set;    GC                  gc;    int                 x, y;    char               *text;    int                 text_len;{    XSetFont(dpy, gc, font_set->core.font_struct_list[0]->fid);    XDrawString(dpy, d, gc, x, y, text, text_len);    return 0;}void_Xsimb8DrawImageString(dpy, d, font_set, gc, x, y, text, text_len)    register Display   *dpy;    Drawable            d;    XFontSet            font_set;    GC                  gc;    int                 x, y;    char               *text;    int                 text_len;{    XSetFont(dpy, gc, font_set->core.font_struct_list[0]->fid);    XDrawImageString(dpy, d, gc, x, y, text, text_len);}

⌨️ 快捷键说明

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