📄 guirawbitmap.h
字号:
/* $Id: guiRawbitmap.h V1.0 2001/11/5 *//***************************************************************** * This source code has been made available to you by EPSON on an AS-IS * basis. Anyone receiving this source is licensed under EPSON * copyrights to use it in any way he or she deems fit, including * copying it, modifying it, compiling it, and redistributing it either * with or without modifications. * * Any person who transfers this source code or any derivative work * must include the EPSON copyright notice, this paragraph, and the * preceding two paragraphs in the transferred software. * * COPYRIGHT EPSON CORPORATION 2001 * LICENSED MATERIAL - PROGRAM PROPERTY OF EPSON ***********************************************************************//*********************************************************** * FILE: guiRawbitmap.h * MODULE: FONT * * PURPOSE: declaration of variable and macros for * rawbitmap sysfont * * * AUTHOR(S): Zhaojz * GROUP: GUI Group * DATE CREATED: 2001/11/5 * REFERENCE DOCUMENT ID: * MODIFICATIONS: * Date userName Description * 2001/11/5 Zhaojz Create this file ***********************************************************/#ifndef _GUIRAWBITMAP_H #define _GUIRAWBITMAP_H#ifdef __cplusplusextern "C" {#endif /* __cplusplus */typedef struct T_FNT_RBFInfo{ T_GUI_CharsetOps *charset_ops; T_WORD nr_chars; T_WORD width; T_WORD height; T_BYTE *font; T_WORD font_size;}T_FNT_RBFInfo; /* informations of raw bitmap font */T_EXTERN T_GUI_FontOps raw_bitmap_font_ops;#define SBC_RBFONT_INFO(logfont) ((T_FNT_RBFInfo*)(((T_GUI_DevFont*) (logfont.sbc_devfont))->data))
#define MBC_RBFONT_INFO(logfont) ((T_FNT_RBFInfo*)(((T_GUI_DevFont*) (logfont.mbc_devfont))->data))
#define SBC_RBFONT_INFO_P(logfont) ((T_FNT_RBFInfo*)(((T_GUI_DevFont*) (logfont->sbc_devfont))->data))
#define MBC_RBFONT_INFO_P(logfont) ((T_FNT_RBFInfo*)(((T_GUI_DevFont*) (logfont->mbc_devfont))->data))
#define RBFONT_INFO_P(devfont) ((T_FNT_RBFInfo*)(devfont->data))
#define RBFONT_INFO(devfont) ((T_FNT_RBFInfo*)(devfont.data))#ifdef __cplusplus}#endif /* __cplusplus */#endif // _GUIRAWBITMAP_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -