27#include <QDomDocument>
32class QgsPropertyPrivate;
133 QgsPropertyDefinition(
const QString &name,
DataType dataType,
const QString &description,
const QString &helpText,
const QString &origin = QString(),
const QString &comment = QString() );
138 QString
name()
const {
return mName; }
143 void setName(
const QString &name ) { mName = name; }
150 QString
origin()
const {
return mOrigin; }
157 void setOrigin(
const QString &origin ) { mOrigin = origin; }
172 void setComment(
const QString &comment ) { mComment = comment; }
199 bool supportsAssistant()
const;
204 QString mDescription;
205 DataType mTypes = DataTypeString;
207 StandardPropertyTemplate mStandardType = Custom;
211 static QString trString();
247 static QVariantMap propertyMapToVariantMap(
const QMap<QString, QgsProperty> &propertyMap );
255 static QMap<QString, QgsProperty> variantMapToPropertyMap(
const QVariantMap &variantMap );
267 static QgsProperty fromExpression(
const QString &expression,
bool isActive =
true );
272 static QgsProperty fromField(
const QString &fieldName,
bool isActive =
true );
277 static QgsProperty fromValue(
const QVariant &value,
bool isActive =
true );
287 operator bool()
const;
295 Type propertyType()
const;
301 bool isActive()
const;
323 void setActive(
bool active );
330 void setStaticValue(
const QVariant &value );
337 QVariant staticValue()
const;
344 void setField(
const QString &
field );
351 QString
field()
const;
358 void setExpressionString(
const QString &expression );
365 QString expressionString()
const;
371 QString asExpression()
const;
394 bool isProjectColor()
const;
410 QVariant value(
const QgsExpressionContext &context,
const QVariant &defaultValue = QVariant(),
bool *ok
SIP_OUT =
nullptr )
const;
426 QDateTime valueAsDateTime(
const QgsExpressionContext &context,
const QDateTime &defaultDateTime = QDateTime(),
bool *ok
SIP_OUT =
nullptr )
const;
441 QString valueAsString(
const QgsExpressionContext &context,
const QString &defaultString = QString(),
bool *ok
SIP_OUT =
nullptr )
const;
456 QColor valueAsColor(
const QgsExpressionContext &context,
const QColor &defaultColor = QColor(),
bool *ok
SIP_OUT =
nullptr )
const;
509 QVariant toVariant()
const;
517 bool loadVariant(
const QVariant &property );
539 bool convertToTransformer();
542 operator QVariant()
const
544 return QVariant::fromValue( *
this );
549 SIP_PYOBJECT __repr__();
552 QString definitionString;
553 switch ( sipCpp->propertyType() )
556 typeString = QStringLiteral(
"static" );
557 definitionString = sipCpp->staticValue().toString();
561 typeString = QStringLiteral(
"field" );
562 definitionString = sipCpp->field();
566 typeString = QStringLiteral(
"expression" );
567 definitionString = sipCpp->expressionString();
571 typeString = QStringLiteral(
"invalid" );
575 QString
str = QStringLiteral(
"<QgsProperty: %1%2%3>" ).arg( !sipCpp->isActive() && sipCpp->propertyType() !=
QgsProperty::InvalidProperty ? QStringLiteral(
"INACTIVE " ) : QString(),
577 definitionString.isEmpty() ? QString() : QStringLiteral(
" (%1)" ).arg( definitionString ) );
578 sipRes = PyUnicode_FromString(
str.toUtf8().constData() );
584 mutable QExplicitlySharedDataPointer<QgsPropertyPrivate> d;
590 QVariant propertyValue(
const QgsExpressionContext &context,
const QVariant &defaultValue = QVariant(),
bool *ok =
nullptr )
const;
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.
@ ExpressionBasedProperty
Expression based property (QgsExpressionBasedProperty)
@ StaticProperty
Static property (QgsStaticProperty)
@ FieldBasedProperty
Field based property (QgsFieldBasedProperty)
@ InvalidProperty
Invalid (not set) property.
Q_DECLARE_METATYPE(QgsDatabaseQueryLogEntry)
bool operator==(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)
bool operator!=(const QgsFeatureIterator &fi1, const QgsFeatureIterator &fi2)