Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsprojectfile.h - description 3 : : ------------------- 4 : : begin : Sun 15 dec 2007 5 : : copyright : (C) 2007 by Magnus Homann 6 : : email : magnus at homann.se 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 <QString> 19 : : #include <QStringList> 20 : : 21 : : #include "qgslogger.h" 22 : : #include "qgsprojectversion.h" 23 : : 24 : 0 : QgsProjectVersion::QgsProjectVersion( int major, int minor, int sub, const QString &name ) 25 : 0 : : mMajor( major ) 26 : 0 : , mMinor( minor ) 27 : 0 : , mSub( sub ) 28 : 0 : , mName( name ) 29 : : { 30 : 0 : } 31 : : 32 : 0 : QgsProjectVersion::QgsProjectVersion( const QString &string ) 33 : : { 34 : 0 : const QString pre = string.section( '-', 0, 0 ); 35 : 0 : const QStringList fileVersionParts = pre.section( '-', 0 ).split( '.' ); 36 : : 37 : 0 : mMajor = fileVersionParts.at( 0 ).toInt(); 38 : 0 : if ( fileVersionParts.size() > 1 ) 39 : : { 40 : 0 : mMinor = fileVersionParts.at( 1 ).toInt(); 41 : 0 : } 42 : 0 : if ( fileVersionParts.size() > 2 ) 43 : : { 44 : 0 : mSub = fileVersionParts.at( 2 ).toInt(); 45 : 0 : } 46 : 0 : mName = string.section( '-', 1 ); 47 : : 48 : 0 : QgsDebugMsgLevel( QStringLiteral( "Version is set to " ) + text(), 4 ); 49 : 0 : } 50 : : 51 : 0 : bool QgsProjectVersion::operator==( const QgsProjectVersion &other ) const 52 : : { 53 : 0 : return ( ( mMajor == other.mMajor ) && 54 : 0 : ( mMinor == other.mMinor ) && 55 : 0 : ( mSub == other.mSub ) ); 56 : : } 57 : : 58 : 0 : bool QgsProjectVersion::operator!=( const QgsProjectVersion &other ) const 59 : : { 60 : 0 : return ( ( mMajor != other.mMajor ) || 61 : 0 : ( mMinor != other.mMinor ) || 62 : 0 : ( mSub != other.mSub ) ); 63 : : } 64 : : 65 : 0 : bool QgsProjectVersion::operator>=( const QgsProjectVersion &other ) const 66 : : { 67 : 0 : return ( *this == other ) || ( *this > other ); 68 : : } 69 : : 70 : 0 : bool QgsProjectVersion::operator>( const QgsProjectVersion &other ) const 71 : : { 72 : 0 : return ( ( mMajor > other.mMajor ) || 73 : 0 : ( ( mMajor == other.mMajor ) && ( mMinor > other.mMinor ) ) || 74 : 0 : ( ( mMajor == other.mMajor ) && ( mMinor == other.mMinor ) && ( mSub > other.mSub ) ) ); 75 : : } 76 : : 77 : 0 : QString QgsProjectVersion::text() const 78 : : { 79 : 0 : if ( mName.isEmpty() ) 80 : : { 81 : 0 : return QStringLiteral( "%1.%2.%3" ).arg( mMajor ).arg( mMinor ).arg( mSub ); 82 : : } 83 : : else 84 : : { 85 : 0 : return QStringLiteral( "%1.%2.%3-%4" ).arg( mMajor ).arg( mMinor ).arg( mSub ).arg( mName ); 86 : : } 87 : 0 : } 88 : : 89 : 0 : bool QgsProjectVersion::isNull() const 90 : : { 91 : 0 : return mMajor == 0 && mMinor == 0 && mSub == 0; 92 : : }