Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsclassificationprettybreaks.h 3 : : --------------------- 4 : : begin : September 2019 5 : : copyright : (C) 2019 by Denis Rouzaud 6 : : email : denis@opengis.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 <QObject> 17 : : 18 : : #include "qgsclassificationprettybreaks.h" 19 : : #include "qgssymbollayerutils.h" 20 : : #include "qgsapplication.h" 21 : : 22 : : 23 : 5 : QgsClassificationPrettyBreaks::QgsClassificationPrettyBreaks() 24 : 5 : : QgsClassificationMethod( SymmetricModeAvailable ) 25 : 10 : { 26 : : 27 : 5 : } 28 : : 29 : 0 : QString QgsClassificationPrettyBreaks::name() const 30 : : { 31 : 0 : return QObject::tr( "Pretty Breaks" ); 32 : : } 33 : : 34 : 10 : QString QgsClassificationPrettyBreaks::id() const 35 : : { 36 : 20 : return QStringLiteral( "Pretty" ); 37 : : } 38 : : 39 : 0 : QList<double> QgsClassificationPrettyBreaks::calculateBreaks( double &minimum, double &maximum, const QList<double> &values, int nclasses ) 40 : : { 41 : 0 : Q_UNUSED( values ); 42 : 0 : QList<double> breaks = QgsSymbolLayerUtils::prettyBreaks( minimum, maximum, nclasses ); 43 : : 44 : 0 : if ( symmetricModeEnabled() ) 45 : 0 : makeBreaksSymmetric( breaks, symmetryPoint(), symmetryAstride() ); 46 : : 47 : 0 : return breaks; 48 : 0 : } 49 : : 50 : 0 : QgsClassificationMethod *QgsClassificationPrettyBreaks::clone() const 51 : : { 52 : 0 : QgsClassificationPrettyBreaks *c = new QgsClassificationPrettyBreaks(); 53 : 0 : copyBase( c ); 54 : 0 : return c; 55 : 0 : } 56 : : 57 : 0 : QIcon QgsClassificationPrettyBreaks::icon() const 58 : : { 59 : 0 : return QgsApplication::getThemeIcon( "classification_methods/mClassificationPrettyBreak.svg" ); 60 : 0 : }