File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ class QgsUniqueValueRenderer : QgsRenderer
39
39
int classificationField();
40
40
/**Return symbology items*/
41
41
const QList<QgsSymbol*> symbols() const;
42
+ /**Return the classification map
43
+ @note added in 1.4 */
44
+ const QMap<QString, QgsSymbol*> symbolMap() const;
42
45
QgsRenderer* clone() const /Factory/;
43
46
};
44
47
Original file line number Diff line number Diff line change @@ -63,6 +63,9 @@ class CORE_EXPORT QgsUniqueValueRenderer: public QgsRenderer
63
63
int classificationField () const ;
64
64
/* *Return symbology items*/
65
65
const QList<QgsSymbol*> symbols () const { return mSymbols .values (); }
66
+ /* *Return the classification map
67
+ @note added in 1.4 */
68
+ const QMap<QString, QgsSymbol*> symbolMap () const { return mSymbols ; }
66
69
QgsRenderer* clone () const ;
67
70
protected:
68
71
/* *Field index used for classification*/
You can’t perform that action at this time.
0 commit comments