25#include "moc_qgsfieldmodel.cpp"
27using namespace Qt::StringLiterals;
30 : QAbstractItemModel(
parent )
35 QString fldName( fieldName );
40 if (
mLayer && !fldName.isEmpty() )
45 const QString fieldNameWithAlias =
mLayer->attributeAliases().key( fldName );
46 if ( !fieldNameWithAlias.isNull() )
47 fldName = fieldNameWithAlias;
53 int r =
mFields.lookupField( fldName );
59 QModelIndex idx =
index( r, 0 );
89 disconnect(
mLayer, &QObject::destroyed,
this, &QgsFieldModel::layerDeleted );
97 connect(
mLayer, &QObject::destroyed,
this, &QgsFieldModel::layerDeleted );
103void QgsFieldModel::layerDeleted()
128 beginInsertRows( QModelIndex(),
mFields.count() + offset,
mFields.count() + offset );
142 beginRemoveRows( QModelIndex(),
mFields.count() - 1 + offset,
mFields.count() - 1 + offset );
148 for (
int i = 0; i < newFields.
count(); ++i )
150 if (
mFields.at( i ) != newFields.
at( i ) )
158 beginRemoveRows( QModelIndex(), i + offset, i + offset );
191 const int start =
mFields.count();
193 beginRemoveRows( QModelIndex(), start, end );
206 beginInsertRows( QModelIndex(), 0, 0 );
212 beginRemoveRows( QModelIndex(), 0, 0 );
230 if ( !expression.isEmpty() )
244 if ( hasIndex( row, column,
parent ) )
246 return createIndex( row, column, row );
249 return QModelIndex();
255 return QModelIndex();
276 if ( !
index.isValid() )
289 if ( isEmpty || exprIdx >= 0 )
316 if ( isEmpty || exprIdx >= 0 )
320 return index.row() - fieldOffset;
345 if ( exprIdx < 0 && !isEmpty )
348 return static_cast< int >( field.
type() );
355 if ( exprIdx < 0 && !isEmpty )
357 return static_cast< int >(
mFields.fieldOrigin(
index.row() - fieldOffset ) );
369 if ( exprIdx < 0 && !isEmpty )
371 return mFields.at(
index.row() - fieldOffset ).editorWidgetSetup().type();
378 if ( exprIdx < 0 && !isEmpty )
396 return !(
mLayer->editFormConfig().readOnly(
index.row() - fieldOffset ) );
400 case Qt::DisplayRole:
402 case Qt::ToolTipRole:
408 else if ( exprIdx >= 0 )
412 else if ( role == Qt::EditRole )
416 else if ( role == Qt::ToolTipRole )
422 return mLayer->attributeDisplayName(
index.row() - fieldOffset );
426 return mFields.field(
index.row() - fieldOffset ).displayName();
432 case Qt::ForegroundRole:
434 if ( !isEmpty && exprIdx >= 0 )
445 return QBrush( QColor( Qt::red ) );
453 if ( !isEmpty && exprIdx >= 0 )
456 QFont font = QFont();
457 font.setItalic(
true );
463 case Qt::DecorationRole:
465 if ( !isEmpty && exprIdx < 0 )
467 return mFields.iconForField(
index.row() - fieldOffset );
480 if ( !field.
alias().isEmpty() )
482 toolTip = u
"<b>%1</b> (%2)"_s.arg( field.
alias(), field.
name() );
486 toolTip = u
"<b>%1</b>"_s.arg( field.
name() );
489 toolTip += u
"<br><font style='font-family:monospace; white-space: nowrap;'>%3</font>"_s.arg( field.
displayType(
true ) );
491 const QString comment = field.
comment();
493 if ( !comment.isEmpty() )
495 toolTip += u
"<br><em>%1</em>"_s.arg( comment );
505 const int fieldIdx =
fields.indexOf( field.
name() );
512 if ( !expressionString.isEmpty() )
514 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.