Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgssingleboxscalebarrenderer.h 3 : : ------------------------------ 4 : : begin : June 2008 5 : : copyright : (C) 2008 by Marco Hugentobler 6 : : email : marco.hugentobler@karto.baug.ethz.ch 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 QGSSINGLEBOXSCALEBARRENDERER_H 18 : : #define QGSSINGLEBOXSCALEBARRENDERER_H 19 : : 20 : : #include "qgis_core.h" 21 : : #include "qgsscalebarrenderer.h" 22 : : #include <QString> 23 : : 24 : : /** 25 : : * \class QgsSingleBoxScaleBarRenderer 26 : : * \ingroup core 27 : : * \brief Scalebar style that draws a single box with alternating 28 : : * color for the segments. 29 : : * \since QGIS 3.0 30 : : */ 31 : 10 : class CORE_EXPORT QgsSingleBoxScaleBarRenderer: public QgsScaleBarRenderer 32 : : { 33 : : public: 34 : : 35 : : /** 36 : : * Constructor for QgsSingleBoxScaleBarRenderer. 37 : : */ 38 : 5 : QgsSingleBoxScaleBarRenderer() = default; 39 : : 40 : : QString id() const override; 41 : : QString visibleName() const override; 42 : : int sortKey() const override; 43 : : Flags flags() const override; 44 : : QgsSingleBoxScaleBarRenderer *clone() const override SIP_FACTORY; 45 : : 46 : : void draw( QgsRenderContext &context, 47 : : const QgsScaleBarSettings &settings, 48 : : const QgsScaleBarRenderer::ScaleBarContext &scaleContext ) const override; 49 : : 50 : : }; 51 : : 52 : : #endif // QGSSINGLEBOXSCALEBARRENDERER_H