315 lines
6.9 KiB
Plaintext
Raw Normal View History

2017-06-06 15:50:31 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgis.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
%ModuleHeaderCode
#include <qgis.h>
%End
%ModuleCode
2017-06-06 15:50:31 +02:00
int QgisEvent = QEvent::User + 1;
%End
class Qgis
{
2017-06-06 15:50:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
The Qgis class provides global constants for use throughout the application.
%End
2017-06-06 15:50:31 +02:00
%TypeHeaderCode
#include "qgis.h"
%End
public:
static const QMetaObject staticMetaObject;
public:
2019-11-01 17:07:55 +01:00
static QString version();
%Docstring
2019-11-01 17:07:55 +01:00
Version string.
.. versionadded:: 3.12
%End
2019-11-01 17:07:55 +01:00
static int versionInt();
%Docstring
Version number used for comparing versions using the "Check QGIS Version" function
2019-11-01 17:07:55 +01:00
.. versionadded:: 3.12
%End
2019-11-01 17:07:55 +01:00
static QString releaseName();
%Docstring
Release name
2019-11-01 17:07:55 +01:00
.. versionadded:: 3.12
%End
2019-11-01 17:07:55 +01:00
static const char *QGIS_DEV_VERSION;
2019-11-01 17:07:55 +01:00
static QString devVersion();
2019-11-01 17:07:55 +01:00
%Docstring
The development version
.. versionadded:: 3.12
%End
enum MessageLevel
{
Info,
Warning,
Critical,
Success,
None
};
enum DataType
{
2017-06-06 15:50:31 +02:00
UnknownDataType,
Byte,
UInt16,
Int16,
UInt32,
Int32,
Float32,
Float64,
CInt16,
CInt32,
CFloat32,
CFloat64,
ARGB32,
ARGB32_Premultiplied
};
enum PythonMacroMode
{
Never,
Ask,
SessionOnly,
Always,
NotForThisSession,
};
2014-03-27 13:45:25 +01:00
static const double DEFAULT_SEARCH_RADIUS_MM;
2014-01-26 18:35:21 +01:00
static const float DEFAULT_MAPTOPIXEL_THRESHOLD;
2014-03-27 14:25:03 +01:00
static const QColor DEFAULT_HIGHLIGHT_COLOR;
2014-05-27 23:22:50 +02:00
static const double DEFAULT_HIGHLIGHT_BUFFER_MM;
2014-05-27 23:22:50 +02:00
static const double DEFAULT_HIGHLIGHT_MIN_WIDTH_MM;
static const double SCALE_PRECISION;
2017-06-06 15:50:31 +02:00
static const double DEFAULT_Z_COORDINATE;
static const double UI_SCALE_FACTOR;
2017-06-06 15:50:31 +02:00
static const double DEFAULT_SNAP_TOLERANCE;
static const QgsTolerance::UnitType DEFAULT_SNAP_UNITS;
2019-11-01 17:07:55 +01:00
static QString defaultProjectScales();
%Docstring
A string with default project scales.
.. versionadded:: 3.12
%End
};
2017-06-06 15:50:31 +02:00
uint qHash( const QVariant &variant );
%Docstring
Hash for QVariant
%End
QString qgsDoubleToString( double a, int precision = 17 );
%Docstring
2017-12-15 10:36:55 -04:00
Returns a string representation of a double
2017-12-15 21:36:08 -04:00
2017-12-15 10:36:55 -04:00
:param a: double value
:param precision: number of decimal places to retain
2017-06-06 15:50:31 +02:00
%End
bool qgsDoubleNear( double a, double b, double epsilon = 4 * DBL_EPSILON );
2017-06-06 15:50:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Compare two doubles (but allow some difference)
2017-12-15 21:36:08 -04:00
2017-12-15 10:36:55 -04:00
:param a: first double
:param b: second double
:param epsilon: maximum difference allowable between doubles
2017-06-06 15:50:31 +02:00
%End
bool qgsFloatNear( float a, float b, float epsilon = 4 * FLT_EPSILON );
%Docstring
2017-12-15 10:36:55 -04:00
Compare two floats (but allow some difference)
2017-12-15 21:36:08 -04:00
2017-12-15 10:36:55 -04:00
:param a: first float
:param b: second float
:param epsilon: maximum difference allowable between floats
2017-06-06 15:50:31 +02:00
%End
bool qgsDoubleNearSig( double a, double b, int significantDigits = 10 );
%Docstring
Compare two doubles using specified number of significant digits
%End
double qgsRound( double number, int places );
2017-06-06 15:50:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Returns a double ``number``, rounded (as close as possible) to the specified number of ``places``.
2017-06-06 15:50:31 +02:00
.. versionadded:: 3.0
%End
double qgsPermissiveToDouble( QString string, bool &ok );
2017-06-06 15:50:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Converts a string to a double in a permissive way, e.g., allowing for incorrect
numbers of digits between thousand separators
2017-12-15 21:36:08 -04:00
2017-12-15 10:36:55 -04:00
:param string: string to convert
2019-02-26 19:54:09 +10:00
:param ok: will be set to ``True`` if conversion was successful
2017-12-15 10:36:55 -04:00
:return: string converted to double if possible
2017-12-05 20:04:14 -04:00
.. seealso:: :py:func:`permissiveToInt`
2018-05-28 11:31:08 -04:00
.. versionadded:: 2.9
2017-06-06 15:50:31 +02:00
%End
2016-07-21 22:11:43 +10:00
int qgsPermissiveToInt( QString string, bool &ok );
2017-06-06 15:50:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Converts a string to an integer in a permissive way, e.g., allowing for incorrect
numbers of digits between thousand separators
2017-12-15 21:36:08 -04:00
2017-12-15 10:36:55 -04:00
:param string: string to convert
2019-02-26 19:54:09 +10:00
:param ok: will be set to ``True`` if conversion was successful
2017-12-15 10:36:55 -04:00
:return: string converted to int if possible
2017-12-05 20:04:14 -04:00
.. seealso:: :py:func:`permissiveToDouble`
2018-05-28 11:31:08 -04:00
.. versionadded:: 2.9
2017-06-06 15:50:31 +02:00
%End
2018-09-01 18:01:23 +02:00
qlonglong qgsPermissiveToLongLong( QString string, bool &ok );
%Docstring
Converts a string to an qlonglong in a permissive way, e.g., allowing for incorrect
numbers of digits between thousand separators
:param string: string to convert
2019-02-26 19:54:09 +10:00
:param ok: will be set to ``True`` if conversion was successful
2018-09-01 18:01:23 +02:00
:return: string converted to int if possible
.. seealso:: :py:func:`permissiveToInt`
.. versionadded:: 3.4
%End
bool qgsVariantLessThan( const QVariant &lhs, const QVariant &rhs );
2017-06-06 15:50:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Compares two QVariant values and returns whether the first is less than the second.
Useful for sorting lists of variants, correctly handling sorting of the various
QVariant data types (such as strings, numeric values, dates and times)
Invalid < NULL < Values
.. seealso:: :py:func:`qgsVariantGreaterThan`
2017-06-06 15:50:31 +02:00
%End
bool qgsVariantEqual( const QVariant &lhs, const QVariant &rhs );
%Docstring
2019-08-15 11:03:19 +02:00
Compares two QVariant values and returns whether they are equal, two NULL values are
always treated as equal and 0 is not treated as equal with NULL
:param lhs: first value
2018-10-01 14:59:19 +02:00
:param rhs: second value
2019-02-26 19:54:09 +10:00
:return: ``True`` if values are equal
%End
bool qgsVariantGreaterThan( const QVariant &lhs, const QVariant &rhs );
2017-06-06 15:50:31 +02:00
%Docstring
2017-12-15 10:36:55 -04:00
Compares two QVariant values and returns whether the first is greater than the second.
Useful for sorting lists of variants, correctly handling sorting of the various
QVariant data types (such as strings, numeric values, dates and times)
.. seealso:: :py:func:`qgsVariantLessThan`
2017-06-06 15:50:31 +02:00
%End
2017-06-06 15:50:31 +02:00
QString qgsVsiPrefix( const QString &path );
2019-11-02 13:46:35 +01:00
const long GEOSRID;
2019-11-02 13:46:35 +01:00
const long GEOCRS_ID;
2019-11-02 13:46:35 +01:00
const long GEO_EPSG_CRS_ID;
2017-06-06 15:50:31 +02:00
const int USER_CRS_START_ID;
const double DEFAULT_POINT_SIZE;
const double DEFAULT_LINE_WIDTH;
const double DEFAULT_SEGMENT_EPSILON;
typedef unsigned long long qgssize;
2017-06-06 15:50:31 +02:00
2019-11-02 19:47:09 +01:00
QString geoWkt();
%Docstring
Wkt string that represents a geographic coord sys
\since QGIS GEOWkt
%End
2019-11-02 19:47:09 +01:00
//! PROJ4 string that represents a geographic coord sys
QString geoProj4();
2019-11-02 19:47:09 +01:00
//! Geographic coord sys from EPSG authority
QString geoEpsgCrsAuthId();
2019-11-02 19:47:09 +01:00
//! Constant that holds the string representation for "No ellips/No CRS"
QString geoNone();
2017-06-06 15:50:31 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgis.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/