1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/numericformats/qgsfallbacknumericformat.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsFallbackNumericFormat : QgsNumericFormat
{
%Docstring(signature="appended")
A basic numeric formatter which returns a simple text representation of
a value.
.. versionadded:: 3.12
%End
%TypeHeaderCode
#include "qgsfallbacknumericformat.h"
%End
public:
QgsFallbackNumericFormat();
virtual QString id() const;
virtual QString visibleName() const;
virtual int sortKey();
virtual QString formatDouble( double value, const QgsNumericFormatContext &context ) const;
virtual QgsNumericFormat *clone() const /Factory/;
virtual QgsNumericFormat *create( const QVariantMap &configuration, const QgsReadWriteContext &context ) const /Factory/;
virtual QVariantMap configuration( const QgsReadWriteContext &context ) const;
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/numericformats/qgsfallbacknumericformat.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|