27#include <QDomDocument>
32class QgsPropertyPrivate;
132 QgsPropertyDefinition(
const QString &name,
DataType dataType,
const QString &description,
const QString &helpText,
const QString &origin = QString(),
const QString &comment = QString() );
137 QString
name()
const {
return mName; }
142 void setName(
const QString &name ) { mName = name; }
149 QString
origin()
const {
return mOrigin; }
156 void setOrigin(
const QString &origin ) { mOrigin = origin; }
171 void setComment(
const QString &comment ) { mComment = comment; }
198 bool supportsAssistant()
const;
203 QString mDescription;
204 DataType mTypes = DataTypeString;
206 StandardPropertyTemplate mStandardType = Custom;
210 static QString trString();
236 static QVariantMap propertyMapToVariantMap(
const QMap<QString, QgsProperty> &propertyMap );
244 static QMap<QString, QgsProperty> variantMapToPropertyMap(
const QVariantMap &variantMap );
256 static QgsProperty fromExpression(
const QString &expression,
bool isActive =
true );
261 static QgsProperty fromField(
const QString &fieldName,
bool isActive =
true );
266 static QgsProperty fromValue(
const QVariant &value,
bool isActive =
true );
276 operator bool()
const;
290 bool isActive()
const;
312 void setActive(
bool active );
319 void setStaticValue(
const QVariant &value );
326 QVariant staticValue()
const;
333 void setField(
const QString &field );
340 QString field()
const;
347 void setExpressionString(
const QString &expression );
354 QString expressionString()
const;
360 QString asExpression()
const;
383 bool isProjectColor()
const;
399 QVariant value(
const QgsExpressionContext &context,
const QVariant &defaultValue = QVariant(),
bool *ok
SIP_OUT =
nullptr )
const;
415 QDateTime valueAsDateTime(
const QgsExpressionContext &context,
const QDateTime &defaultDateTime = QDateTime(),
bool *ok
SIP_OUT =
nullptr )
const;
430 QString valueAsString(
const QgsExpressionContext &context,
const QString &defaultString = QString(),
bool *ok
SIP_OUT =
nullptr )
const;
445 QColor valueAsColor(
const QgsExpressionContext &context,
const QColor &defaultColor = QColor(),
bool *ok
SIP_OUT =
nullptr )
const;
498 QVariant toVariant()
const;
506 bool loadVariant(
const QVariant &property );
528 bool convertToTransformer();
531 operator QVariant()
const
533 return QVariant::fromValue( *
this );
538 SIP_PYOBJECT __repr__();
541 QString definitionString;
542 switch ( sipCpp->propertyType() )
545 typeString = QStringLiteral(
"static" );
546 definitionString = sipCpp->staticValue().toString();
550 typeString = QStringLiteral(
"field" );
551 definitionString = sipCpp->field();
555 typeString = QStringLiteral(
"expression" );
556 definitionString = sipCpp->expressionString();
560 typeString = QStringLiteral(
"invalid" );
564 QString
str = QStringLiteral(
"<QgsProperty: %1%2%3>" ).arg( !sipCpp->isActive() && sipCpp->propertyType() !=
Qgis::PropertyType::Invalid ? QStringLiteral(
"INACTIVE " ) : QString(),
566 definitionString.isEmpty() ? QString() : QStringLiteral(
" (%1)" ).arg( definitionString ) );
567 sipRes = PyUnicode_FromString(
str.toUtf8().constData() );
573 mutable QExplicitlySharedDataPointer<QgsPropertyPrivate> d;
579 QVariant propertyValue(
const QgsExpressionContext &context,
const QVariant &defaultValue = QVariant(),
bool *ok =
nullptr )
const;
PropertyType
Property types.
@ Invalid
Invalid (not set) property.
@ Field
Field based property.
@ Expression
Expression based property.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
Definition for a property.
StandardPropertyTemplate standardTemplate() const
Returns the property's standard template, if applicable.
QString helpText() const
Helper text for using the property, including a description of the valid values for the property.
QString comment() const
Returns the comment of the property.
DataType dataType() const
Returns the allowable field/value data type for the property.
void setOrigin(const QString &origin)
Sets the origin of the property.
QString description() const
Descriptive name of the property.
StandardPropertyTemplate
Predefined standard property templates.
@ HorizontalAnchor
Horizontal anchor point.
@ Double
Double value (including negative values)
@ VerticalAnchor
Vertical anchor point.
@ Double0To1
Double value between 0-1 (inclusive)
@ FillStyle
Fill style (eg solid, lines)
@ StrokeWidth
Line stroke width.
@ LineStyle
Line style (eg solid/dashed)
@ Integer
Integer value (including negative values)
@ String
Any string value.
@ DateTime
DateTime value.
@ RenderUnits
Render units (eg mm/pixels/map units)
@ PenJoinStyle
Pen join style.
@ SvgPath
Path to an SVG file.
@ IntegerPositiveGreaterZero
Non-zero positive integer values.
@ IntegerPositive
Positive integer values (including 0)
@ CapStyle
Line cap style (eg round)
@ ColorNoAlpha
Color with no alpha channel.
@ Rotation
Rotation (value between 0-360 degrees)
@ Size
1D size (eg marker radius, or square marker height/width)
@ ColorWithAlpha
Color with alpha channel.
@ DoublePositive
Positive double value (including 0)
@ Size2D
2D size (width/height different)
QString name() const
Returns the name of the property.
QgsPropertyDefinition()=default
Constructs an empty property.
void setDataType(DataType type)
Sets the data type.
void setName(const QString &name)
Sets the name of the property.
QString origin() const
Returns the origin of the property.
void setComment(const QString &comment)
Sets comment of the property.
DataType
Valid data types required by property.
@ DataTypeBoolean
Property requires a boolean value.
@ DataTypeNumeric
Property requires a numeric value.
A store for object properties.
Q_DECLARE_METATYPE(QgsDatabaseQueryLogEntry)
bool operator==(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
bool operator!=(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)