QGIS API Documentation  3.16.0-Hannover (43b64b13f3)
qgsclassificationcustom.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsclassificationcustom.cpp
3  ---------------------
4  begin : September 2019
5  copyright : (C) 2019 by Denis Rouzaud
6  email : [email protected]
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 
17 
18 const QString QgsClassificationCustom::METHOD_ID = QStringLiteral( "Custom" );
19 
20 
22  : QgsClassificationMethod( NoFlag,
23  0 /*codeComplexity*/ )
24 {
25 }
26 
27 
29 {
31  copyBase( c );
32  return c;
33 }
34 
36 {
37  return QObject::tr( "Custom" );
38 }
39 
41 {
42  return METHOD_ID;
43 }
44 
45 QList<double> QgsClassificationCustom::calculateBreaks( double &minimum, double &maximum,
46  const QList<double> &values, int nclasses )
47 {
48  Q_UNUSED( minimum )
49  Q_UNUSED( maximum )
50  Q_UNUSED( values )
51  Q_UNUSED( nclasses )
52  return QList<double>();
53 }
QgsClassificationCustom::METHOD_ID
static const QString METHOD_ID
Definition: qgsclassificationcustom.h:39
QgsClassificationMethod
QgsClassificationMethod is an abstract class for implementations of classification methods.
Definition: qgsclassificationmethod.h:88
qgsclassificationcustom.h
QgsClassificationCustom::id
QString id() const override
The id of the method as saved in the project, must be unique in registry.
Definition: qgsclassificationcustom.cpp:40
QgsClassificationCustom::name
QString name() const override
The readable and translate name of the method.
Definition: qgsclassificationcustom.cpp:35
QgsClassificationCustom
QgsClassificationCustom is a dummy implementation of QgsClassification which does not compute any bre...
Definition: qgsclassificationcustom.h:29
QgsClassificationCustom::QgsClassificationCustom
QgsClassificationCustom()
Definition: qgsclassificationcustom.cpp:21
QgsClassificationMethod::copyBase
void copyBase(QgsClassificationMethod *c) const
Copy the parameters (shall be used in clone implementation)
Definition: qgsclassificationmethod.cpp:52
c
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
Definition: porting_processing.dox:1
QgsClassificationCustom::clone
QgsClassificationMethod * clone() const override
Returns a clone of the method.
Definition: qgsclassificationcustom.cpp:28