QGIS API Documentation 3.40.0-Bratislava (b56115d8743)
|
Definition of a parameter with basic conversion methods. More...
#include <qgsserverparameters.h>
Public Member Functions | |
QgsServerParameterDefinition (const QMetaType::Type type=QMetaType::Type::QString, const QVariant defaultValue=QVariant("")) | |
Constructor for QgsServerParameterDefinition. | |
Q_DECL_DEPRECATED | QgsServerParameterDefinition (const QVariant::Type type, const QVariant defaultValue=QVariant("")) SIP_DEPRECATED |
Constructor for QgsServerParameterDefinition. | |
virtual | ~QgsServerParameterDefinition ()=default |
virtual bool | isValid () const |
Returns true if the parameter is valid, false otherwise. | |
QString | loadUrl (bool &ok) const |
Loads the data associated to the parameter converted into an url. | |
bool | toBool () const |
Converts the parameter into a boolean. | |
QColor | toColor (bool &ok) const |
Converts the parameter into a color. | |
QList< QColor > | toColorList (bool &ok, char delimiter=',') const |
Converts the parameter into a list of colors. | |
double | toDouble (bool &ok) const |
Converts the parameter into a double. | |
QList< double > | toDoubleList (bool &ok, char delimiter=',') const |
Converts the parameter into a list of doubles. | |
QStringList | toExpressionList () const |
Converts the parameter into a list of QGIS expressions. | |
QList< QgsGeometry > | toGeomList (bool &ok, char delimiter=',') const |
Converts the parameter into a list of geometries. | |
int | toInt (bool &ok) const |
Converts the parameter into an integer. | |
QList< int > | toIntList (bool &ok, char delimiter=',') const |
Converts the parameter into a list of integers. | |
QStringList | toOgcFilterList () const |
Converts the parameter into a list of OGC filters. | |
QgsRectangle | toRectangle (bool &ok) const |
Converts the parameter into a rectangle. | |
QString | toString (bool defaultValue=false) const |
Converts the parameter into a string. | |
QStringList | toStringList (char delimiter=',', bool skipEmptyParts=true) const |
Converts the parameter into a list of strings. | |
QUrl | toUrl (bool &ok) const |
Converts the parameter into an url. | |
QString | typeName () const |
Returns the type of the parameter as a string. | |
Static Public Member Functions | |
static void | raiseError (const QString &msg) |
Raises an exception in case of an invalid parameters. | |
Public Attributes | |
QVariant | mDefaultValue |
QMetaType::Type | mType |
QVariant | mValue |
Definition of a parameter with basic conversion methods.
Definition at line 34 of file qgsserverparameters.h.
QgsServerParameterDefinition::QgsServerParameterDefinition | ( | const QMetaType::Type | type = QMetaType::Type::QString , |
const QVariant | defaultValue = QVariant( "" ) |
||
) |
Constructor for QgsServerParameterDefinition.
type | The type of the parameter |
defaultValue | The default value of the parameter |
Definition at line 32 of file qgsserverparameters.cpp.
QgsServerParameterDefinition::QgsServerParameterDefinition | ( | const QVariant::Type | type, |
const QVariant | defaultValue = QVariant( "" ) |
||
) |
Constructor for QgsServerParameterDefinition.
type | The type of the parameter |
defaultValue | The default value of the parameter |
Definition at line 39 of file qgsserverparameters.cpp.
|
virtualdefault |
|
virtual |
Returns true
if the parameter is valid, false
otherwise.
Reimplemented in QgsWms::QgsWmsParameter.
Definition at line 407 of file qgsserverparameters.cpp.
QString QgsServerParameterDefinition::loadUrl | ( | bool & | ok | ) | const |
Loads the data associated to the parameter converted into an url.
ok | true if there's no error during the load, false otherwise |
Definition at line 321 of file qgsserverparameters.cpp.
|
static |
Raises an exception in case of an invalid parameters.
msg | The message describing the exception |
QgsBadRequestException | Invalid parameter exception |
Definition at line 412 of file qgsserverparameters.cpp.
bool QgsServerParameterDefinition::toBool | ( | ) | const |
Converts the parameter into a boolean.
Definition at line 382 of file qgsserverparameters.cpp.
QColor QgsServerParameterDefinition::toColor | ( | bool & | ok | ) | const |
Converts the parameter into a color.
ok | true if there's no error during the conversion, false otherwise |
Definition at line 49 of file qgsserverparameters.cpp.
QList< QColor > QgsServerParameterDefinition::toColorList | ( | bool & | ok, |
char | delimiter = ',' |
||
) | const |
Converts the parameter into a list of colors.
ok | true if there's no error during the conversion, false otherwise |
delimiter | The character used for delimiting |
Definition at line 206 of file qgsserverparameters.cpp.
double QgsServerParameterDefinition::toDouble | ( | bool & | ok | ) | const |
Converts the parameter into a double.
ok | true if there's no error during the conversion, false otherwise |
Definition at line 394 of file qgsserverparameters.cpp.
QList< double > QgsServerParameterDefinition::toDoubleList | ( | bool & | ok, |
char | delimiter = ',' |
||
) | const |
Converts the parameter into a list of doubles.
ok | true if there's no error during the conversion, false otherwise |
delimiter | The character used for delimiting |
Definition at line 259 of file qgsserverparameters.cpp.
QStringList QgsServerParameterDefinition::toExpressionList | ( | ) | const |
Converts the parameter into a list of QGIS expressions.
Definition at line 162 of file qgsserverparameters.cpp.
QList< QgsGeometry > QgsServerParameterDefinition::toGeomList | ( | bool & | ok, |
char | delimiter = ',' |
||
) | const |
Converts the parameter into a list of geometries.
ok | true if there's no error during the conversion, false otherwise |
delimiter | The character used for delimiting |
Definition at line 98 of file qgsserverparameters.cpp.
int QgsServerParameterDefinition::toInt | ( | bool & | ok | ) | const |
Converts the parameter into an integer.
ok | true if there's no error during the conversion, false otherwise |
Definition at line 369 of file qgsserverparameters.cpp.
QList< int > QgsServerParameterDefinition::toIntList | ( | bool & | ok, |
char | delimiter = ',' |
||
) | const |
Converts the parameter into a list of integers.
ok | true if there's no error during the conversion, false otherwise |
delimiter | The character used for delimiting |
Definition at line 238 of file qgsserverparameters.cpp.
QStringList QgsServerParameterDefinition::toOgcFilterList | ( | ) | const |
Converts the parameter into a list of OGC filters.
Definition at line 122 of file qgsserverparameters.cpp.
QgsRectangle QgsServerParameterDefinition::toRectangle | ( | bool & | ok | ) | const |
Converts the parameter into a rectangle.
ok | true if there's no error during the conversion, false otherwise |
Definition at line 280 of file qgsserverparameters.cpp.
QString QgsServerParameterDefinition::toString | ( | bool | defaultValue = false | ) | const |
Converts the parameter into a string.
If defaultValue is true and current value is empty, then the default value is returned.
Definition at line 71 of file qgsserverparameters.cpp.
QStringList QgsServerParameterDefinition::toStringList | ( | char | delimiter = ',' , |
bool | skipEmptyParts = true |
||
) | const |
Converts the parameter into a list of strings.
delimiter | The character used for delimiting |
skipEmptyParts | To use QString::SkipEmptyParts for splitting |
Definition at line 81 of file qgsserverparameters.cpp.
QUrl QgsServerParameterDefinition::toUrl | ( | bool & | ok | ) | const |
Converts the parameter into an url.
ok | true if there's no error during the conversion, false otherwise |
Definition at line 355 of file qgsserverparameters.cpp.
QString QgsServerParameterDefinition::typeName | ( | ) | const |
Returns the type of the parameter as a string.
Definition at line 44 of file qgsserverparameters.cpp.
QVariant QgsServerParameterDefinition::mDefaultValue |
Definition at line 187 of file qgsserverparameters.h.
QMetaType::Type QgsServerParameterDefinition::mType |
Definition at line 185 of file qgsserverparameters.h.
QVariant QgsServerParameterDefinition::mValue |
Definition at line 186 of file qgsserverparameters.h.