📄 drawings.h
字号:
/* drawings.h - for doing modifiable line drawings in a window Copyright (C) 1996-2000 Paul Sheer This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. */#ifndef DRAWINGS_H#define DRAWINGS_H/* types */#define CLINE 1#define CELLIPSE 2#define CCIRCLE 3#define CARC 4#define CRECTANGLE 5#define CFILLED_ELLIPSE 6#define CFILLED_CIRCLE 7#define CFILLED_ARC 8#define CFILLED_RECTANGLE 9typedef struct { float x, y; /*point position (must be floats for scaling) */ float a, b; /*width and height for arcs, ellipses and rectangle. Second point for lines */ char type; /*type */ short angle1, angle2; unsigned long color;} CPicturePrimative;typedef struct { int numelements; float x1, y1; /*maximum bounds of elements */ float x2, y2; CPicturePrimative *pp;} CPicture;/* sets the widget into which subsequent drawing operations execute. returns 1 on error */int CSetDrawingTarget (const char *picture_ident);/* returns a pp index to be used for removepp */int CDrawLine (float x1, float y1, float x2, float y2, unsigned long c);int CDrawRectangle (float x, float y, float w, float h, unsigned long c);void CRemovePictureElement (int j);int CDrawPoint (int x1, int y1, unsigned long c);int CDrawArc (int x, int y, int width, int height, int angle1, int angle2, unsigned long c);int CDrawCurvedLine (int x1, int y1, int x2, int y2, int radius, unsigned long c);int CDrawFilledArc (int x, int y, int width, int height, int angle1, int angle2, int pie, unsigned long c);void CScalePicture (float s);void CClearPicture (void);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -