1 /*
2  * Copyright (C) 1991,1992 NEC Corporation.
3  * $Id: picture.h,v 2.11 1994/04/19 10:16:54 uchida Exp $ (NEC)
4  */
5 #ifdef	PICTURE
6 /*
7  * ����β��Ϥ�ɽ���Τ�������
8  */
9 extern int	picFontSize;		/* �����ΰ�ǻȤ��ե���ȥ�����	*/
10 /*
11  * ��������ʸ�����Ҥ��뤿������
12  */
13 struct	stroke {
14 #define	LINE_NULL	0	/* ���Ϥʤ�		*/
15 
16 #define	VECT_BGN	1	/* ���ޤ��Ͼ���������		*/
17 #define	VECT_END	2	/* ���ޤ��ϲ����������		*/
18 #define	VECT_BOTH	3	/* ξ�������			*/
19 
20 #define	LINE_FULL	4	/* ��������			*/
21 #define	LINE_SEP	5	/* ������������˸���������	*/
22 #define	LINE_BGN	6	/* ��Ⱦʬ�ޤ��ϲ�Ⱦʬ����������	*/
23 #define	LINE_END	7	/* ��Ⱦʬ�ޤ��Ͼ�Ⱦʬ����������	*/
24 	short	type;
25 #define	SY_NULL		0	/* ���Ϥʤ�	*/
26 #define	SY_THIN		1	/* �٤���	*/
27 #define	SY_THICK	2	/* ������	*/
28 #define	SY_DASH		3	/* ����		*/
29 #define	SY_DBL		4	/* 2��������	*/
30 #define	SY_ELPS		5	/* �ʱ�		*/
31 #define	SY_HELPS	6	/* ����Ⱦʬ�ʱ�	*/
32 #define	SY_CIRCLE	7	/* ��..?	*/
33 	short	style;
34 };
35 enum	direction {dir_br, dir_bl, dir_tl, dir_tr};
36 #endif
37