25#include "moc_qgsfieldmodel.cpp"
27using namespace Qt::StringLiterals;
30 : QAbstractItemModel(
parent )
36 QString fldName( fieldName );
41 if (
mLayer && !fldName.isEmpty() )
46 const QString fieldNameWithAlias =
mLayer->attributeAliases().key( fldName );
47 if ( !fieldNameWithAlias.isNull() )
48 fldName = fieldNameWithAlias;
54 int r =
mFields.lookupField( fldName );
60 QModelIndex idx =
index( r, 0 );
90 disconnect(
mLayer, &QObject::destroyed,
this, &QgsFieldModel::layerDeleted );
98 connect(
mLayer, &QObject::destroyed,
this, &QgsFieldModel::layerDeleted );
104void QgsFieldModel::layerDeleted()
129 beginInsertRows( QModelIndex(),
mFields.count() + offset,
mFields.count() + offset );
143 beginRemoveRows( QModelIndex(),
mFields.count() - 1 + offset,
mFields.count() - 1 + offset );
149 for (
int i = 0; i < newFields.
count(); ++i )
151 if (
mFields.at( i ) != newFields.
at( i ) )
159 beginRemoveRows( QModelIndex(), i + offset, i + offset );
192 const int start =
mFields.count();
194 beginRemoveRows( QModelIndex(), start, end );
207 beginInsertRows( QModelIndex(), 0, 0 );
213 beginRemoveRows( QModelIndex(), 0, 0 );
231 if ( !expression.isEmpty() )
245 if ( hasIndex( row, column,
parent ) )
247 return createIndex( row, column, row );
250 return QModelIndex();
256 return QModelIndex();
277 if ( !
index.isValid() )
290 if ( isEmpty || exprIdx >= 0 )
317 if ( isEmpty || exprIdx >= 0 )
321 return index.row() - fieldOffset;
346 if ( exprIdx < 0 && !isEmpty )
349 return static_cast< int >( field.
type() );
356 if ( exprIdx < 0 && !isEmpty )
358 return static_cast< int >(
mFields.fieldOrigin(
index.row() - fieldOffset ) );
370 if ( exprIdx < 0 && !isEmpty )
372 return mFields.at(
index.row() - fieldOffset ).editorWidgetSetup().type();
379 if ( exprIdx < 0 && !isEmpty )
397 return !(
mLayer->editFormConfig().readOnly(
index.row() - fieldOffset ) );
401 case Qt::DisplayRole:
403 case Qt::ToolTipRole:
409 else if ( exprIdx >= 0 )
413 else if ( role == Qt::EditRole )
417 else if ( role == Qt::ToolTipRole )
423 return mLayer->attributeDisplayName(
index.row() - fieldOffset );
427 return mFields.field(
index.row() - fieldOffset ).displayName();
433 case Qt::ForegroundRole:
435 if ( !isEmpty && exprIdx >= 0 )
446 return QBrush( QColor( Qt::red ) );
454 if ( !isEmpty && exprIdx >= 0 )
457 QFont font = QFont();
458 font.setItalic(
true );
464 case Qt::DecorationRole:
466 if ( !isEmpty && exprIdx < 0 )
468 return mFields.iconForField(
index.row() - fieldOffset );
481 if ( !field.
alias().isEmpty() )
483 toolTip = u
"<b>%1</b> (%2)"_s.arg( field.
alias(), field.
name() );
487 toolTip = u
"<b>%1</b>"_s.arg( field.
name() );
490 toolTip += u
"<br><font style='font-family:monospace; white-space: nowrap;'>%3</font>"_s.arg( field.
displayType(
true ) );
492 const QString comment = field.
comment();
494 if ( ! comment.isEmpty() )
496 toolTip += u
"<br><em>%1</em>"_s.arg( comment );
506 const int fieldIdx =
fields.indexOf( field.
name() );
512 ?
layer->expressionField( fieldIdx )
515 if ( !expressionString.isEmpty() )
517 toolTip += u
"<br><font style='font-family:monospace;'>%3</font>"_s.arg( expressionString );
@ Expression
Field is calculated from an expression.
@ Join
Field originates from a joined layer.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
void setFields(const QgsFields &fields)
Convenience function for setting a fields for the context.
Handles parsing and evaluation of expressions (formerly called "search strings").
bool prepare(const QgsExpressionContext *context)
Gets the expression ready for evaluation - find out column indexes.
bool hasParserError() const
Returns true if an error occurred when parsing the input expression.
QModelIndex index(int row, int column, const QModelIndex &parent=QModelIndex()) const override
static QString fieldToolTip(const QgsField &field)
Returns a HTML formatted tooltip string for a field, containing details like the field name,...
int columnCount(const QModelIndex &parent) const override
QVariant data(const QModelIndex &index, int role) const override
QModelIndex parent(const QModelIndex &child) const override
void removeExpression()
Removes any custom expression from the model.
bool isField(const QString &expression) const
Returns true if a string represents a field reference, or false if it is an expression consisting of ...
void setAllowExpression(bool allowExpression)
Sets whether custom expressions are accepted and displayed in the model.
@ FieldIsWidgetEditable
true if a is editable from the widget
@ FieldOrigin
Return the field origin (if a field, returns QVariant if expression).
@ Expression
Return field name or expression.
@ IsExpression
Return if index corresponds to an expression.
@ IsEmpty
Return if the index corresponds to the empty value.
@ ExpressionValidity
Return if expression is valid or not.
@ FieldName
Return field name if index corresponds to a field.
@ FieldIndex
Return field index if index corresponds to a field.
@ EditorWidgetType
Editor widget type.
@ FieldType
Return the field type (if a field, return QVariant if expression).
@ JoinedFieldIsEditable
true if a joined field is editable (returns QVariant if not a joined field)
void setLayer(QgsVectorLayer *layer)
Set the layer from which fields are displayed.
void setExpression(const QString &expression)
Sets a single expression to be added after the fields at the end of the model.
QgsFields fields() const
Returns the fields currently shown in the model.
void setFields(const QgsFields &fields)
Manually sets the fields to use for the model.
QgsFieldModel(QObject *parent=nullptr)
Constructor for QgsFieldModel - creates a model to display the fields of a given layer.
static QString fieldToolTipExtended(const QgsField &field, const QgsVectorLayer *layer)
Returns a HTML formatted tooltip string for a field, containing details like the field name,...
QList< QString > mExpression
QModelIndex indexFromName(const QString &fieldName)
Returns the index corresponding to a given fieldName.
void setAllowEmptyFieldName(bool allowEmpty)
Sets whether an optional empty field ("not set") option is present in the model.
int rowCount(const QModelIndex &parent=QModelIndex()) const override
virtual void updateModel()
Called when the model must be updated.
Encapsulate a field in an attribute table or data source.
QString displayType(bool showConstraints=false) const
Returns the type to use when displaying this field, including the length and precision of the datatyp...
Container of fields for a vector layer.
QList< QgsField > toList() const
Utility function to return a list of QgsField instances.
void remove(int fieldIdx)
Removes the field with the given index.
QgsField at(int i) const
Returns the field at particular index (must be in range 0..N-1).
Defines left outer join from our vector layer to some other vector layer.
bool isEditable() const
Returns whether joined fields may be edited through the form of the target layer.
Represents a vector layer which manages a vector based dataset.
void updatedFields()
Emitted whenever the fields available from this layer have been changed.