16 #ifndef QGSMARKERSYMBOLLAYERV2_H
17 #define QGSMARKERSYMBOLLAYERV2_H
22 #define DEFAULT_SIMPLEMARKER_NAME "circle"
23 #define DEFAULT_SIMPLEMARKER_COLOR QColor(255,0,0)
24 #define DEFAULT_SIMPLEMARKER_BORDERCOLOR QColor(0,0,0)
25 #define DEFAULT_SIMPLEMARKER_SIZE DEFAULT_POINT_SIZE
26 #define DEFAULT_SIMPLEMARKER_ANGLE 0
65 QString
ogrFeatureStyle(
double mmScaleFactor,
double mapUnitScaleFactor )
const;
67 QString
name()
const {
return mName; }
68 void setName( QString name ) { mName = name; }
83 bool prepareShape( QString name = QString() );
84 bool preparePath( QString name = QString() );
105 static const int mMaximumCacheWidth = 3000;
110 #define DEFAULT_SVGMARKER_NAME "/crosses/Star1.svg"
111 #define DEFAULT_SVGMARKER_SIZE 2*DEFAULT_POINT_SIZE
112 #define DEFAULT_SVGMARKER_ANGLE 0
142 QString
path()
const {
return mPath; }
143 void setPath( QString path );
175 #define POINT2MM(x) ( (x) * 25.4 / 72 ) // point is 1/72 of inch
176 #define MM2POINT(x) ( (x) * 72 / 25.4 )
178 #define DEFAULT_FONTMARKER_FONT "Dingbats"
179 #define DEFAULT_FONTMARKER_CHR QChar('A')
180 #define DEFAULT_FONTMARKER_SIZE POINT2MM(12)
181 #define DEFAULT_FONTMARKER_COLOR QColor(Qt::black)
182 #define DEFAULT_FONTMARKER_ANGLE 0