1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
/******************************************************************************
* $Id: mapsymbol.h,v 1.23 2005/12/15 05:42:05 sdlime Exp $
*
* Project: MapServer
* Purpose: symbolObj related declarations.
* Author: Steve Lime and the MapServer team.
*
******************************************************************************
* Copyright (c) 1996-2005 Regents of the University of Minnesota.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies of this Software or works derived from this Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
******************************************************************************
*
* $Log: mapsymbol.h,v $
* Revision 1.23 2005/12/15 05:42:05 sdlime
* Fixed a problem in the symbol reader that basically turned TYPE SIMPLE into TYPE TRUETYPE. Fix what to start the symbol type enum at some larger value (e.g. 1000).
*
* Revision 1.22 2005/11/24 04:35:50 dan
* Use dynamic allocation for ellipse symbol's STYLE array, avoiding the
* static limitation on the STYLE argument values. (bug 1539)
*
* Revision 1.21 2005/10/14 05:05:19 sdlime
* Added MS_MAXPATTERNSIZE.
*
* Revision 1.20 2005/09/23 03:47:56 sdlime
* Made symbol->imagepath readonly within SWIG-based scripts. Use setImagepath instead. (bug 1472)
*
* Revision 1.19 2005/06/14 16:03:35 dan
* Updated copyright date to 2005
*
* Revision 1.18 2005/02/18 03:06:47 dan
* Turned all C++ (//) comments into C comments (bug 1238)
*
* Revision 1.17 2004/10/21 04:30:55 frank
* Added standardized headers. Added MS_CVSID().
*
*/
#ifndef MAPSYMBOL_H
#define MAPSYMBOL_H
#include <gd.h>
enum MS_SYMBOL_TYPE {MS_SYMBOL_SIMPLE=1000, MS_SYMBOL_VECTOR, MS_SYMBOL_ELLIPSE, MS_SYMBOL_PIXMAP, MS_SYMBOL_TRUETYPE, MS_SYMBOL_CARTOLINE, MS_SYMBOL_HATCH};
#define MS_MAXSYMBOLS 64 /* maximum number of symbols in a symbol file */
#define MS_MAXVECTORPOINTS 100 /* shade, marker and line symbol parameters */
#define MS_MAXSTYLELENGTH 10
#define MS_IMAGECACHESIZE 6
/* COLOR OBJECT */
typedef struct {
int pen;
int red;
int green;
int blue;
#if ALPHACOLOR_ENABLED
int alpha;
#endif
} colorObj;
#ifndef SWIG
struct imageCacheObj {
int symbol;
int size;
colorObj color;
colorObj outlinecolor;
colorObj backgroundcolor;
gdImagePtr img;
struct imageCacheObj *next;
};
#endif /* SWIG */
typedef struct {
char *name;
int type;
#ifndef SWIG
int inmapfile; /* boolean value for writing */
/*
** Pointer to his map
*/
struct map_obj *map;
#endif /* SWIG */
/*
** MS_SYMBOL_VECTOR and MS_SYMBOL_ELLIPSE options
*/
double sizex, sizey;
#ifndef SWIG
pointObj points[MS_MAXVECTORPOINTS];
#endif
#ifdef SWIG
%immutable;
#endif /* SWIG */
int numpoints;
#ifdef SWIG
%mutable;
#endif /* SWIG */
int filled;
int stylelength; /* Number of intervals (eg. dashes) in the style */
int style[MS_MAXSTYLELENGTH];
/*
** MS_SYMBOL_PIXMAP options
*/
#ifndef SWIG
gdImagePtr img;
#endif /* SWIG */
#ifdef SWIG
%immutable;
#endif /* SWIG */
char *imagepath;
#ifdef SWIG
%mutable;
#endif /* SWIG */
int transparent;
int transparentcolor;
/*
** MS_SYMBOL_TRUETYPE options
*/
char *character;
int antialias;
char *font;
int gap;
int position;
/*
** MS_SYMBOL_CARTOLINE options
*/
int linecap, linejoin;
double linejoinmaxsize;
} symbolObj;
#endif /* MAPSYMBOL_H */
|