Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgslayoutsize.cpp 3 : : ----------------- 4 : : begin : June 2017 5 : : copyright : (C) 2017 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #include "qgslayoutsize.h" 19 : : #include "qgis.h" 20 : : #include <QStringList> 21 : : 22 : 160 : QgsLayoutSize::QgsLayoutSize( const double width, const double height, const QgsUnitTypes::LayoutUnit units ) 23 : 160 : : mWidth( width ) 24 : 160 : , mHeight( height ) 25 : 160 : , mUnits( units ) 26 : : { 27 : 160 : } 28 : : 29 : 0 : QgsLayoutSize::QgsLayoutSize( const QSizeF size, const QgsUnitTypes::LayoutUnit units ) 30 : 0 : : mWidth( size.width() ) 31 : 0 : , mHeight( size.height() ) 32 : 0 : , mUnits( units ) 33 : : { 34 : 0 : } 35 : : 36 : 0 : QgsLayoutSize::QgsLayoutSize( const QgsUnitTypes::LayoutUnit units ) 37 : 0 : : mUnits( units ) 38 : : { 39 : : 40 : 0 : } 41 : : 42 : 0 : bool QgsLayoutSize::isEmpty() const 43 : : { 44 : 0 : return qgsDoubleNear( mWidth, 0 ) && qgsDoubleNear( mHeight, 0 ); 45 : : } 46 : : 47 : 0 : QSizeF QgsLayoutSize::toQSizeF() const 48 : : { 49 : 0 : return QSizeF( mWidth, mHeight ); 50 : : } 51 : : 52 : 0 : QString QgsLayoutSize::encodeSize() const 53 : : { 54 : 0 : return QStringLiteral( "%1,%2,%3" ).arg( mWidth ).arg( mHeight ).arg( QgsUnitTypes::encodeUnit( mUnits ) ); 55 : 0 : } 56 : : 57 : 0 : QgsLayoutSize QgsLayoutSize::decodeSize( const QString &string ) 58 : : { 59 : 0 : QStringList parts = string.split( ',' ); 60 : 0 : if ( parts.count() != 3 ) 61 : : { 62 : 0 : return QgsLayoutSize(); 63 : : } 64 : 0 : return QgsLayoutSize( parts[0].toDouble(), parts[1].toDouble(), QgsUnitTypes::decodeLayoutUnit( parts[2] ) ); 65 : : 66 : 0 : } 67 : : 68 : 0 : bool QgsLayoutSize::operator==( const QgsLayoutSize &other ) const 69 : : { 70 : 0 : return other.units() == mUnits && qgsDoubleNear( other.width(), mWidth ) && qgsDoubleNear( other.height(), mHeight ); 71 : : } 72 : : 73 : 0 : bool QgsLayoutSize::operator!=( const QgsLayoutSize &other ) const 74 : : { 75 : 0 : return ( ! operator==( other ) ); 76 : : } 77 : : 78 : 0 : QgsLayoutSize QgsLayoutSize::operator*( const double v ) const 79 : : { 80 : 0 : return QgsLayoutSize( mWidth * v, mHeight * v, mUnits ); 81 : : } 82 : : 83 : 0 : QgsLayoutSize QgsLayoutSize::operator*=( const double v ) 84 : : { 85 : 0 : *this = *this * v; 86 : 0 : return *this; 87 : : } 88 : : 89 : 0 : QgsLayoutSize QgsLayoutSize::operator/( const double v ) const 90 : : { 91 : 0 : return QgsLayoutSize( mWidth / v, mHeight / v, mUnits ); 92 : : } 93 : : 94 : 0 : QgsLayoutSize QgsLayoutSize::operator/=( const double v ) 95 : : { 96 : 0 : *this = *this / v; 97 : 0 : return *this; 98 : : }