Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgssteppedlinescalebarrenderer.h 3 : : -------------------------------- 4 : : begin : March 2020 5 : : copyright : (C) 2020 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 7 : : ***************************************************************************/ 8 : : /*************************************************************************** 9 : : * * 10 : : * This program is free software; you can redistribute it and/or modify * 11 : : * it under the terms of the GNU General Public License as published by * 12 : : * the Free Software Foundation; either version 2 of the License, or * 13 : : * (at your option) any later version. * 14 : : * * 15 : : ***************************************************************************/ 16 : : 17 : : #ifndef QGSSTEPPEDLINESCALEBARRENDERER_H 18 : : #define QGSSTEPPEDLINESCALEBARRENDERER_H 19 : : 20 : : #include "qgis_core.h" 21 : : #include "qgsscalebarrenderer.h" 22 : : #include <QString> 23 : : 24 : : /** 25 : : * \class QgsSteppedLineScaleBarRenderer 26 : : * \ingroup core 27 : : * \brief Scalebar style that draws a stepped line representation of a scalebar. 28 : : * \since QGIS 3.14 29 : : */ 30 : 10 : class CORE_EXPORT QgsSteppedLineScaleBarRenderer: public QgsScaleBarRenderer 31 : : { 32 : : public: 33 : : 34 : : /** 35 : : * Constructor for QgsSteppedLineScaleBarRenderer. 36 : : */ 37 : 5 : QgsSteppedLineScaleBarRenderer() = default; 38 : : 39 : : QString id() const override; 40 : : QString visibleName() const override; 41 : : int sortKey() const override; 42 : : Flags flags() const override; 43 : : QgsSteppedLineScaleBarRenderer *clone() const override SIP_FACTORY; 44 : : 45 : : void draw( QgsRenderContext &context, 46 : : const QgsScaleBarSettings &settings, 47 : : const QgsScaleBarRenderer::ScaleBarContext &scaleContext ) const override; 48 : : 49 : : }; 50 : : 51 : : #endif // QGSSTEPPEDLINESCALEBARRENDERER_H