21 if ( !( mConstraints & constraint ) )
29 if ( !( mConstraints & constraint ) )
40 mConstraintStrengths.remove( constraint );
44 mConstraintStrengths.insert( constraint, strength );
52 mConstraints &= ~constraint;
53 mConstraintOrigins.remove( constraint );
54 mConstraintStrengths.remove( constraint );
58 mConstraints |= constraint;
59 mConstraintOrigins.insert( constraint, origin );
60 if ( !mConstraintStrengths.contains( constraint ) )
74 if ( expression.isEmpty() )
82 mExpressionConstraint = expression;
83 mExpressionConstraintDescription = description;
88 return mConstraints == other.mConstraints && mConstraintOrigins == other.mConstraintOrigins
89 && mExpressionConstraint == other.mExpressionConstraint && mExpressionConstraintDescription == other.mExpressionConstraintDescription
90 && mConstraintStrengths == other.mConstraintStrengths;
void setConstraintStrength(Constraint constraint, ConstraintStrength strength)
Sets the strength of a constraint.
Constraint was set by layer.
ConstraintStrength constraintStrength(Constraint constraint) const
Returns the strength of a field constraint, or ConstraintStrengthNotSet if the constraint is not pres...
Constraint
Constraints which may be present on a field.
ConstraintOrigin
Origin of constraints.
Stores information about constraints which may be present on a field.
Field has an expression constraint set. See constraintExpression().
void setConstraint(Constraint constraint, ConstraintOrigin origin=ConstraintOriginLayer)
Sets a constraint on the field.
void setConstraintExpression(const QString &expression, const QString &description=QString())
Set the constraint expression for the field.
ConstraintStrength
Strength of constraints.
bool operator==(const QgsFieldConstraints &other) const
ConstraintOrigin constraintOrigin(Constraint constraint) const
Returns the origin of a field constraint, or ConstraintOriginNotSet if the constraint is not present ...
QgsFieldConstraints()
Constructor for QgsFieldConstraints.
QString constraintExpression() const
Returns the constraint expression for the field, if set.
Constraint must be honored before feature can be accepted.