Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsnumericscalebarrenderer.cpp 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 : : #include "qgsnumericscalebarrenderer.h" 18 : : #include "qgsscalebarsettings.h" 19 : : #include "qgslayoututils.h" 20 : : #include "qgsnumericformat.h" 21 : : #include "qgstextrenderer.h" 22 : : #include <QList> 23 : : #include <QPainter> 24 : : 25 : 5 : QString QgsNumericScaleBarRenderer::id() const 26 : : { 27 : 10 : return QStringLiteral( "Numeric" ); 28 : : } 29 : : 30 : 0 : QString QgsNumericScaleBarRenderer::visibleName() const 31 : : { 32 : 0 : return QObject::tr( "Numeric" ); 33 : : } 34 : : 35 : 0 : int QgsNumericScaleBarRenderer::sortKey() const 36 : : { 37 : 0 : return 100; 38 : : } 39 : : 40 : 0 : QgsScaleBarRenderer::Flags QgsNumericScaleBarRenderer::flags() const 41 : : { 42 : 0 : return Flag::FlagUsesAlignment; 43 : : } 44 : : 45 : 0 : QgsNumericScaleBarRenderer *QgsNumericScaleBarRenderer::clone() const 46 : : { 47 : 0 : return new QgsNumericScaleBarRenderer( *this ); 48 : : } 49 : : 50 : 0 : void QgsNumericScaleBarRenderer::draw( QgsRenderContext &context, const QgsScaleBarSettings &settings, const ScaleBarContext &scaleContext ) const 51 : : { 52 : 0 : if ( !context.painter() ) 53 : : { 54 : 0 : return; 55 : : } 56 : : 57 : 0 : QPainter *painter = context.painter(); 58 : : 59 : 0 : QgsScopedQPainterState painterState( painter ); 60 : 0 : context.setPainterFlagsUsingContext( painter ); 61 : : 62 : 0 : double margin = context.convertToPainterUnits( settings.boxContentSpace(), QgsUnitTypes::RenderMillimeters ); 63 : : //map scalebar alignment to Qt::AlignmentFlag type 64 : 0 : QgsTextRenderer::HAlignment hAlign = QgsTextRenderer::AlignLeft; 65 : 0 : switch ( settings.alignment() ) 66 : : { 67 : : case QgsScaleBarSettings::AlignLeft: 68 : 0 : hAlign = QgsTextRenderer::AlignLeft; 69 : 0 : break; 70 : : case QgsScaleBarSettings::AlignMiddle: 71 : 0 : hAlign = QgsTextRenderer::AlignCenter; 72 : 0 : break; 73 : : case QgsScaleBarSettings::AlignRight: 74 : 0 : hAlign = QgsTextRenderer::AlignRight; 75 : 0 : break; 76 : : } 77 : : 78 : : //text destination is item's rect, excluding the margin 79 : 0 : QRectF painterRect( margin, margin, context.convertToPainterUnits( scaleContext.size.width(), QgsUnitTypes::RenderMillimeters ) - 2 * margin, 80 : 0 : context.convertToPainterUnits( scaleContext.size.height(), QgsUnitTypes::RenderMillimeters ) - 2 * margin ); 81 : 0 : QgsTextRenderer::drawText( painterRect, 0, hAlign, QStringList() << scaleText( scaleContext.scale, settings ), context, settings.textFormat() ); 82 : 0 : } 83 : : 84 : 0 : QSizeF QgsNumericScaleBarRenderer::calculateBoxSize( QgsRenderContext &context, const QgsScaleBarSettings &settings, 85 : : const QgsScaleBarRenderer::ScaleBarContext &scaleContext ) const 86 : : { 87 : 0 : const double painterToMm = 1.0 / context.convertToPainterUnits( 1, QgsUnitTypes::RenderMillimeters ); 88 : : 89 : 0 : double textWidth = QgsTextRenderer::textWidth( context, settings.textFormat(), QStringList() << scaleText( scaleContext.scale, settings ) ) * painterToMm; 90 : 0 : double textHeight = QgsTextRenderer::textHeight( context, settings.textFormat(), QStringList() << scaleText( scaleContext.scale, settings ) ) * painterToMm; 91 : : 92 : 0 : return QSizeF( 2 * settings.boxContentSpace() + textWidth, 93 : 0 : textHeight + 2 * settings.boxContentSpace() ); 94 : 0 : } 95 : : 96 : 0 : QSizeF QgsNumericScaleBarRenderer::calculateBoxSize( const QgsScaleBarSettings &settings, const QgsScaleBarRenderer::ScaleBarContext &scaleContext ) const 97 : : { 98 : 0 : QFont font = settings.textFormat().toQFont(); 99 : : 100 : 0 : double textWidth = QgsLayoutUtils::textWidthMM( font, scaleText( scaleContext.scale, settings ) ); 101 : 0 : double textHeight = QgsLayoutUtils::fontAscentMM( font ); 102 : : 103 : 0 : return QSizeF( 2 * settings.boxContentSpace() + textWidth, 104 : 0 : textHeight + 2 * settings.boxContentSpace() ); 105 : 0 : } 106 : : 107 : 0 : QString QgsNumericScaleBarRenderer::scaleText( double scale, const QgsScaleBarSettings &settings ) const 108 : : { 109 : 0 : return "1:" + settings.numericFormat()->formatDouble( scale, QgsNumericFormatContext() ); 110 : 0 : }