File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,20 @@ class QgsRubberBand: QgsMapCanvasItem
57
57
*/
58
58
void setColor( const QColor & color );
59
59
60
+ /**
61
+ * Set the fill color for the rubberband
62
+ * @param color The color used to render this rubberband
63
+ * @note Added in 2.6
64
+ */
65
+ void setFillColor( const QColor & color );
66
+
67
+ /**
68
+ * Set the border color for the rubberband
69
+ * @param color The color used to render this rubberband
70
+ * @note Added in 2.6
71
+ */
72
+ void setBorderColor( const QColor & color );
73
+
60
74
/**
61
75
* Set the width of the line. Outline width for polygon.
62
76
* @param width The width for any lines painted for this rubberband
Original file line number Diff line number Diff line change @@ -86,14 +86,16 @@ class GUI_EXPORT QgsRubberBand: public QgsMapCanvasItem
86
86
void setColor ( const QColor & color );
87
87
88
88
/* *
89
- * Set the file color for the rubberband
89
+ * Set the fill color for the rubberband
90
90
* @param color The color used to render this rubberband
91
+ * @note Added in 2.6
91
92
*/
92
93
void setFillColor ( const QColor & color );
93
94
94
95
/* *
95
96
* Set the border color for the rubberband
96
97
* @param color The color used to render this rubberband
98
+ * @note Added in 2.6
97
99
*/
98
100
void setBorderColor ( const QColor & color );
99
101
You can’t perform that action at this time.
0 commit comments