@@ -166,60 +166,60 @@ class QgsComposerLegend : QgsComposerItem
166166 int equalColumnWidth() const;
167167 void setEqualColumnWidth( bool s );
168168
169- /** Returns whether a border will be drawn around raster symbol items.
170- * @see setDrawRasterBorder ()
171- * @see rasterBorderColor ()
172- * @see rasterBorderWidth ()
169+ /** Returns whether a stroke will be drawn around raster symbol items.
170+ * @see setDrawRasterStroke ()
171+ * @see rasterStrokeColor ()
172+ * @see rasterStrokeWidth ()
173173 * @note added in QGIS 2.12
174174 */
175- bool drawRasterBorder () const;
175+ bool drawRasterStroke () const;
176176
177- /** Sets whether a border will be drawn around raster symbol items.
177+ /** Sets whether a stroke will be drawn around raster symbol items.
178178 * @param enabled set to true to draw borders
179- * @see drawRasterBorder ()
180- * @see setRasterBorderColor ()
181- * @see setRasterBorderWidth ()
179+ * @see drawRasterStroke ()
180+ * @see setRasterStrokeColor ()
181+ * @see setRasterStrokeWidth ()
182182 * @note added in QGIS 2.12
183183 */
184- void setDrawRasterBorder ( bool enabled );
184+ void setDrawRasterStroke ( bool enabled );
185185
186- /** Returns the border color for the border drawn around raster symbol items. The border is
187- * only drawn if drawRasterBorder () is true.
188- * @see setRasterBorderColor ()
189- * @see drawRasterBorder ()
190- * @see rasterBorderWidth ()
186+ /** Returns the stroke color for the stroke drawn around raster symbol items. The stroke is
187+ * only drawn if drawRasterStroke () is true.
188+ * @see setRasterStrokeColor ()
189+ * @see drawRasterStroke ()
190+ * @see rasterStrokeWidth ()
191191 * @note added in QGIS 2.12
192192 */
193- QColor rasterBorderColor () const;
194-
195- /** Sets the border color for the border drawn around raster symbol items. The border is
196- * only drawn if drawRasterBorder () is true.
197- * @param color border color
198- * @see rasterBorderColor ()
199- * @see setDrawRasterBorder ()
200- * @see setRasterBorderWidth ()
193+ QColor rasterStrokeColor () const;
194+
195+ /** Sets the stroke color for the stroke drawn around raster symbol items. The stroke is
196+ * only drawn if drawRasterStroke () is true.
197+ * @param color stroke color
198+ * @see rasterStrokeColor ()
199+ * @see setDrawRasterStroke ()
200+ * @see setRasterStrokeWidth ()
201201 * @note added in QGIS 2.12
202202 */
203- void setRasterBorderColor ( const QColor& color );
203+ void setRasterStrokeColor ( const QColor& color );
204204
205- /** Returns the border width (in millimeters) for the border drawn around raster symbol items. The border is
206- * only drawn if drawRasterBorder () is true.
207- * @see setRasterBorderWidth ()
208- * @see drawRasterBorder ()
209- * @see rasterBorderColor ()
205+ /** Returns the stroke width (in millimeters) for the stroke drawn around raster symbol items. The stroke is
206+ * only drawn if drawRasterStroke () is true.
207+ * @see setRasterStrokeWidth ()
208+ * @see drawRasterStroke ()
209+ * @see rasterStrokeColor ()
210210 * @note added in QGIS 2.12
211211 */
212- double rasterBorderWidth () const;
213-
214- /** Sets the border width for the border drawn around raster symbol items. The border is
215- * only drawn if drawRasterBorder () is true.
216- * @param width border width in millimeters
217- * @see rasterBorderWidth ()
218- * @see setDrawRasterBorder ()
219- * @see setRasterBorderColor ()
212+ double rasterStrokeWidth () const;
213+
214+ /** Sets the stroke width for the stroke drawn around raster symbol items. The stroke is
215+ * only drawn if drawRasterStroke () is true.
216+ * @param width stroke width in millimeters
217+ * @see rasterStrokeWidth ()
218+ * @see setDrawRasterStroke ()
219+ * @see setRasterStrokeColor ()
220220 * @note added in QGIS 2.12
221221 */
222- void setRasterBorderWidth ( double width );
222+ void setRasterStrokeWidth ( double width );
223223
224224 void setComposerMap( const QgsComposerMap* map );
225225 const QgsComposerMap* composerMap() const;
0 commit comments