Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsdartmeasurement.cpp 3 : : -------------------------------------- 4 : : Date : 8.11.2014 5 : : Copyright : (C) 2014 Matthias Kuhn 6 : : Email : matthias at opengis dot ch 7 : : *************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : 16 : : #include "qgsdartmeasurement.h" 17 : : 18 : : #include <QTextStream> 19 : : 20 : 24 : QgsDartMeasurement::QgsDartMeasurement( const QString &name, Type type, const QString &value ) 21 : 24 : : mName( name ) 22 : 24 : , mType( type ) 23 : 24 : , mValue( value ) 24 : : { 25 : 24 : } 26 : : 27 : 24 : const QString QgsDartMeasurement::toString() const 28 : : { 29 : 48 : QString elementName = QStringLiteral( "DartMeasurement" ); 30 : 24 : if ( mType == ImagePng ) 31 : : { 32 : 36 : elementName = QStringLiteral( "DartMeasurementFile" ); 33 : 18 : } 34 : : 35 : 72 : QString dashMessage = QStringLiteral( "<%1 name=\"%2\" type=\"%3\">%4</%1>" ) 36 : 24 : .arg( elementName, 37 : 24 : mName, 38 : 24 : typeToString( mType ), 39 : 24 : mValue ); 40 : 24 : return dashMessage; 41 : 24 : } 42 : : 43 : 24 : void QgsDartMeasurement::send() const 44 : : { 45 : 24 : QTextStream out( stdout ); 46 : : #if QT_VERSION < QT_VERSION_CHECK(5, 14, 0) 47 : : out << toString() << endl; 48 : : #else 49 : 24 : out << toString() << Qt::endl; 50 : : #endif 51 : 24 : } 52 : : 53 : 24 : const QString QgsDartMeasurement::typeToString( QgsDartMeasurement::Type type ) 54 : : { 55 : 24 : QString str; 56 : : 57 : 24 : switch ( type ) 58 : : { 59 : : case Text: 60 : 0 : str = QStringLiteral( "text/text" ); 61 : 0 : break; 62 : : 63 : : case ImagePng: 64 : 36 : str = QStringLiteral( "image/png" ); 65 : 18 : break; 66 : : 67 : : case Integer: 68 : 12 : str = QStringLiteral( "numeric/integer" ); 69 : 6 : break; 70 : : } 71 : : 72 : 24 : return str; 73 : 24 : }