QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
src
core
numericformats
qgsbearingnumericformat.h
Go to the documentation of this file.
1
/***************************************************************************
2
qgsbearingnumericformat.h
3
--------------------------
4
begin : January 2020
5
copyright : (C) 2020 by Nyall Dawson
6
email : nyall dot dawson at gmail dot com
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
#ifndef QGSBEARINGNUMERICFORMAT_H
16
#define QGSBEARINGNUMERICFORMAT_H
17
18
#include "qgis_core.h"
19
#include "
qgis_sip.h
"
20
#include "
qgsbasicnumericformat.h
"
21
28
class
CORE_EXPORT
QgsBearingNumericFormat
:
public
QgsBasicNumericFormat
29
{
30
public
:
31
36
enum
FormatDirectionOption
37
{
38
UseRange0To180WithEWDirectionalSuffix = 0,
39
UseRangeNegative180ToPositive180,
40
UseRange0To360,
41
};
42
46
QgsBearingNumericFormat
();
47
48
QString
id
()
const override
;
49
QString
visibleName
()
const override
;
50
int
sortKey
()
override
;
51
double
suggestSampleValue
()
const override
;
52
QString
formatDouble
(
double
value,
const
QgsNumericFormatContext
&context )
const override
;
53
QgsBearingNumericFormat
*
clone
() const override
SIP_FACTORY
;
54
QgsNumericFormat
*create( const QVariantMap &configuration, const
QgsReadWriteContext
&context ) const override
SIP_FACTORY
;
55
QVariantMap configuration( const
QgsReadWriteContext
&context ) const override;
56
63
FormatDirectionOption
directionFormat() const;
64
71
void
setDirectionFormat(
FormatDirectionOption
format );
72
73
void
setConfiguration( const QVariantMap &configuration, const
QgsReadWriteContext
&context ) override;
74
75
private:
76
77
FormatDirectionOption
mDirectionFormat = UseRange0To180WithEWDirectionalSuffix;
78
79
};
80
81
#endif // QGSBEARINGNUMERICFORMAT_H
QgsBasicNumericFormat::clone
QgsNumericFormat * clone() const override
Clones the format, returning a new object.
Definition:
qgsbasicnumericformat.cpp:138
QgsReadWriteContext
The class is used as a container of context for various read/write operations on other objects.
Definition:
qgsreadwritecontext.h:34
QgsBearingNumericFormat::FormatDirectionOption
FormatDirectionOption
Directional formatting option, which controls how bearing direction is described in the returned stri...
Definition:
qgsbearingnumericformat.h:49
QgsBasicNumericFormat::id
QString id() const override
Returns a unique id for this numeric format.
Definition:
qgsbasicnumericformat.cpp:44
QgsNumericFormat
A numeric formatter allows for formatting a numeric value for display, using a variety of different f...
Definition:
qgsnumericformat.h:259
QgsBasicNumericFormat
A numeric formatter which returns a simple text representation of a value.
Definition:
qgsbasicnumericformat.h:31
SIP_FACTORY
#define SIP_FACTORY
Definition:
qgis_sip.h:76
qgis_sip.h
QgsBasicNumericFormat::sortKey
int sortKey() override
Returns a sorting key value, where formats with a lower sort key will be shown earlier in lists.
Definition:
qgsbasicnumericformat.cpp:54
QgsNumericFormat::suggestSampleValue
virtual double suggestSampleValue() const
Returns a suggested sample value which nicely represents the current format configuration.
Definition:
qgsnumericformat.cpp:53
qgsbasicnumericformat.h
QgsBasicNumericFormat::formatDouble
QString formatDouble(double value, const QgsNumericFormatContext &context) const override
Returns a formatted string representation of a numeric double value.
Definition:
qgsbasicnumericformat.cpp:59
QgsBearingNumericFormat
A numeric formatter which returns a text representation of a direction/bearing.
Definition:
qgsbearingnumericformat.h:28
QgsBasicNumericFormat::visibleName
QString visibleName() const override
Returns the translated, user-visible name for this format.
Definition:
qgsbasicnumericformat.cpp:49
QgsNumericFormatContext
A context for numeric formats.
Definition:
qgsnumericformat.h:34
Generated on Sun Sep 11 2022 00:03:17 for QGIS API Documentation by
1.8.17