16 #ifndef QGSRULEBASEDRENDERERV2_H
17 #define QGSRULEBASEDRENDERERV2_H
88 Rule(
QgsSymbolV2* symbol,
int scaleMinDenom = 0,
int scaleMaxDenom = 0, QString filterExp = QString(),
89 QString label = QString(), QString description = QString() );
92 QString dump(
int offset = 0 )
const;
93 QSet<QString> usedAttributes();
98 bool isScaleOK(
double scale )
const;
101 QString
label()
const {
return mLabel; }
102 bool dependsOnScale()
const {
return mScaleMinDenom != 0 || mScaleMaxDenom != 0; }
120 void toSld( QDomDocument& doc, QDomElement &element,
QgsStringMap props );
128 QSet<int> collectZLevels();
131 void setNormZLevels(
const QMap<int, int>& zLevelsToNormLevels );
161 void removeChildAt(
int i ) {
Rule* rule = mChildren[i]; mChildren.removeAt( i );
delete rule; }
173 QString mFilterExp,
mLabel, mDescription;
198 virtual bool renderFeature(
QgsFeature& feature,
QgsRenderContext& context,
int layer = -1,
bool selected =
false,
bool drawVertexMarker =
false );
204 virtual QList<QString> usedAttributes();
208 virtual void toSld( QDomDocument& doc, QDomElement &element )
const;
215 virtual QDomElement save( QDomDocument& doc );
226 virtual QString dump()
const;
231 virtual bool willRenderFeature(
QgsFeature& feat );
241 virtual int capabilities() {
return MoreSymbolsPerFeature | Filter | ScaleDependent; }
254 static void refineRuleScales( Rule* initialRule, QList<int> scales );
265 #endif // QGSRULEBASEDRENDERERV2_H