stroke.h
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:4k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /* $XConsortium: wfont.h,v 5.1 91/02/16 09:46:37 rws Exp $ */
  2. /*****************************************************************
  3. Copyright (c) 1989,1990, 1991 by Sun Microsystems, Inc. and the X Consortium.
  4.                         All Rights Reserved
  5. Permission to use, copy, modify, and distribute this software and its 
  6. documentation for any purpose and without fee is hereby granted, 
  7. provided that the above copyright notice appear in all copies and that
  8. both that copyright notice and this permission notice appear in 
  9. supporting documentation, and that the names of Sun Microsystems,
  10. the X Consortium, and MIT not be used in advertising or publicity 
  11. pertaining to distribution of the software without specific, written 
  12. prior permission.  
  13. SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 
  14. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT 
  15. SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL 
  16. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  17. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  18. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  19. SOFTWARE.
  20. ******************************************************************/
  21. #ifndef WFONT_INCLUDED
  22. #define WFONT_INCLUDED
  23. #define WFONT_MAGIC 0x813
  24. #define WFONT_MAGIC_PLUS 0x715
  25. #define WFONT_MAGIC_PEX 0x70686e74
  26. #define START_PROPS 0x100
  27. #define START_DISPATCH(_num_props)  (START_PROPS + 160 * _num_props)
  28. #define START_PATH(_num_ch_, _num_props)  (START_DISPATCH(_num_props) + sizeof(Dispatch) * _num_ch_)
  29. #define NUM_DISPATCH 128
  30. typedef struct {
  31.   unsigned short x;
  32.   unsigned short y;
  33. } Path_point2dpx;
  34. typedef struct {
  35.   float x;
  36.   float y;
  37. } Path_point2df;
  38. typedef struct {
  39.   int x;
  40.   int y;
  41.   int z;
  42. } Path_point3di;
  43. typedef struct {
  44.   float x;
  45.   float y;
  46.   float z;
  47. } Path_point3df;
  48. typedef struct {
  49.   float x;
  50.   float y;
  51.   float z;
  52.   float w;
  53. } Path_point4df;
  54. typedef union {
  55.   Path_point2dpx *pt2dpx;
  56.   Path_point2df *pt2df;
  57.   Path_point3di *pt3di;
  58.   Path_point3df *pt3df;
  59.   Path_point4df *pt4df;
  60. } Path_pt_ptr;
  61. typedef enum {
  62.   PATH_2DF,
  63.   PATH_2DPX,
  64.   PATH_3DF,
  65.   PATH_3DI,
  66.   PATH_4DF
  67. } Path_type;
  68. typedef struct {
  69.   int n_pts;                    /* number of points in the subpath */
  70.   Path_pt_ptr pts;              /* pointer to them */
  71.   int closed;                   /* true if the subpath is closed */
  72.   int dcmp_flag;                /* flag for pgon dcmp, pgon type 
  73.                                  * and dcmped triangle type */
  74. } Path_subpath;
  75. typedef struct {
  76.   Path_type type;               /* type of vertices in this path */
  77.   int n_subpaths;               /* number of subpaths */
  78.   int n_vertices;               /* total number of vertices */
  79.   Path_subpath *subpaths;       /* array of subpaths */
  80. } Path;
  81. typedef Path *Path_handle;
  82. typedef struct {
  83.   char propname[80];            /* font property name */
  84.   char propvalue[80];           /* font property value */
  85. } Property;
  86. typedef struct {
  87.   int magic;                    /* magic number */
  88.   char name[80];                /* name of this font */
  89.   float top,                    /* extreme values */
  90.     bottom, max_width;
  91.   int num_ch;                   /* no. of fonts in the set */
  92.   int num_props;                /* no. of font properties */
  93.   Property *properties;         /* array of properties */
  94. } Font_header;
  95. typedef struct {
  96.   float center,                 /* center of the character */
  97.     right;                      /* right edge */
  98.   long offset;                  /* offset in the file of the character
  99.                                  * * description */
  100. } Dispatch;
  101. typedef struct {
  102.   float center, right;
  103.   Path strokes;
  104. } Ch_font;
  105. typedef struct {
  106.   char name[80];
  107.   float top, bottom, max_width;
  108.   int num_ch;                   /* # characters in the font */
  109.   Ch_font **ch_data;
  110. } Phg_font;
  111. #endif /*WFONT_INCLUDED */