Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgslayoutpoint.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 "qgslayoutpoint.h" 19 : : #include "qgis.h" 20 : : 21 : : #include <QStringList> 22 : : 23 : 0 : QgsLayoutPoint::QgsLayoutPoint( const double x, const double y, const QgsUnitTypes::LayoutUnit units ) 24 : 0 : : mX( x ) 25 : 0 : , mY( y ) 26 : 0 : , mUnits( units ) 27 : : { 28 : : 29 : 0 : } 30 : : 31 : 0 : QgsLayoutPoint::QgsLayoutPoint( const QPointF point, const QgsUnitTypes::LayoutUnit units ) 32 : 0 : : mX( point.x() ) 33 : 0 : , mY( point.y() ) 34 : 0 : , mUnits( units ) 35 : : { 36 : : 37 : 0 : } 38 : : 39 : 0 : QgsLayoutPoint::QgsLayoutPoint( const QgsUnitTypes::LayoutUnit units ) 40 : 0 : : mUnits( units ) 41 : : { 42 : : 43 : 0 : } 44 : : 45 : 0 : bool QgsLayoutPoint::isNull() const 46 : : { 47 : 0 : return qgsDoubleNear( mX, 0 ) && qgsDoubleNear( mY, 0 ); 48 : : } 49 : : 50 : 0 : QPointF QgsLayoutPoint::toQPointF() const 51 : : { 52 : 0 : return QPointF( mX, mY ); 53 : : } 54 : : 55 : 0 : QString QgsLayoutPoint::encodePoint() const 56 : : { 57 : 0 : return QStringLiteral( "%1,%2,%3" ).arg( mX ).arg( mY ).arg( QgsUnitTypes::encodeUnit( mUnits ) ); 58 : 0 : } 59 : : 60 : 0 : QgsLayoutPoint QgsLayoutPoint::decodePoint( const QString &string ) 61 : : { 62 : 0 : QStringList parts = string.split( ',' ); 63 : 0 : if ( parts.count() != 3 ) 64 : : { 65 : 0 : return QgsLayoutPoint(); 66 : : } 67 : 0 : return QgsLayoutPoint( parts[0].toDouble(), parts[1].toDouble(), QgsUnitTypes::decodeLayoutUnit( parts[2] ) ); 68 : 0 : } 69 : : 70 : 0 : bool QgsLayoutPoint::operator==( const QgsLayoutPoint &other ) const 71 : : { 72 : 0 : return other.units() == mUnits && qgsDoubleNear( other.x(), mX ) && qgsDoubleNear( other.y(), mY ); 73 : : } 74 : : 75 : 0 : bool QgsLayoutPoint::operator!=( const QgsLayoutPoint &other ) const 76 : : { 77 : 0 : return ( ! operator==( other ) ); 78 : : } 79 : : 80 : 0 : QgsLayoutPoint QgsLayoutPoint::operator*( const double v ) const 81 : : { 82 : 0 : return QgsLayoutPoint( mX * v, mY * v, mUnits ); 83 : : } 84 : : 85 : 0 : QgsLayoutPoint QgsLayoutPoint::operator*=( const double v ) 86 : : { 87 : 0 : *this = *this * v; 88 : 0 : return *this; 89 : : } 90 : : 91 : 0 : QgsLayoutPoint QgsLayoutPoint::operator/( const double v ) const 92 : : { 93 : 0 : return QgsLayoutPoint( mX / v, mY / v, mUnits ); 94 : : } 95 : : 96 : 0 : QgsLayoutPoint QgsLayoutPoint::operator/=( const double v ) 97 : : { 98 : 0 : *this = *this / v; 99 : 0 : return *this; 100 : : }