text.h
来自「AutoCAD DWG-file viewer」· C头文件 代码 · 共 37 行
H
37 行
/****************************************************************/
/* COPYRIGHT NOTICE */
/* ---------------- */
/* All software in this listing remain the strict copyright */
/* of Ilija Kovacevic and cannot be copied or used in any way */
/* except by written permission of Ilija Kovacevic. */
/* */
/* Copyright (c) 1992 Ilija Kovacevic */
/* www.kov.com email ilija@kov.com */
/****************************************************************/
typedef struct
{
AcadEntity common;
DOUBLE x,y;
DOUBLE height,angle,x_scale;
DOUBLE obliquing_angle;
DOUBLE alignment_x,alignment_y;
UINT8 text_style,generation_flags;
UINT8 horizontal_text_justify_type;
UINT8 vertical_text_justify_type;
boolean upsidedown:1;
boolean backward:1;
boolean vertical:1;
char *text;
} AcadText;
AcadText *AcadText__create( void );
void AcadText__delete( AcadText *me );
void AcadText__read( AcadText *me );
void AcadText__write( AcadText *me );
void AcadText__dump_to_debug_file( AcadText *me );
void AcadText__dxfout( AcadText *me );
int AcadText__length( AcadText *me );
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?