QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
Field formatter for a relation reference field. More...
#include <qgsrelationreferencefieldformatter.h>
Public Member Functions | |
QgsRelationReferenceFieldFormatter () | |
Default constructor of field formatter for a relation reference field. More... | |
QVariantList | availableValues (const QVariantMap &config, int countLimit, const QgsFieldFormatterContext &context) const override |
Returns a list of the values that would be possible to select with this widget type On a RelationReference that would be the parents ids or on ValueMap all the configured keys according to the settings in the config. More... | |
QVariant | createCache (QgsVectorLayer *layer, int fieldIndex, const QVariantMap &config) const override |
Create a cache for a given field. More... | |
QString | id () const override |
Returns a unique id for this field formatter. More... | |
QList< QgsVectorLayerRef > | layerDependencies (const QVariantMap &config) const override SIP_SKIP |
Returns a list of weak layer references to other layers required by this formatter for the given config. More... | |
QString | representValue (QgsVectorLayer *layer, int fieldIndex, const QVariantMap &config, const QVariant &cache, const QVariant &value) const override |
Create a pretty String representation of the value. More... | |
QVariant | sortValue (QgsVectorLayer *layer, int fieldIndex, const QVariantMap &config, const QVariant &cache, const QVariant &value) const override |
If the default sort order should be overwritten for this widget, you can transform the value in here. More... | |
Public Member Functions inherited from QgsFieldFormatter | |
QgsFieldFormatter ()=default | |
Default constructor. More... | |
virtual | ~QgsFieldFormatter ()=default |
virtual Qt::AlignmentFlag | alignmentFlag (QgsVectorLayer *layer, int fieldIndex, const QVariantMap &config) const |
Returns the alignment for a particular field. More... | |
Flags | flags () const |
Returns the flags. More... | |
void | setFlags (const Flags &flags) |
Sets the flags. More... | |
Additional Inherited Members | |
Public Types inherited from QgsFieldFormatter | |
enum | Flag { CanProvideAvailableValues = 1 } |
Flags for the abilities of the formatter. More... | |
Field formatter for a relation reference field.
A value relation field formatter looks up the values from features on another layer.
Definition at line 31 of file qgsrelationreferencefieldformatter.h.
QgsRelationReferenceFieldFormatter::QgsRelationReferenceFieldFormatter | ( | ) |
Default constructor of field formatter for a relation reference field.
Definition at line 26 of file qgsrelationreferencefieldformatter.cpp.
|
overridevirtual |
Returns a list of the values that would be possible to select with this widget type On a RelationReference that would be the parents ids or on ValueMap all the configured keys according to the settings in the config.
Reimplemented from QgsFieldFormatter.
Definition at line 197 of file qgsrelationreferencefieldformatter.cpp.
|
overridevirtual |
Create a cache for a given field.
This will be used in situations where a field is being represented various times in a loop. And will be passed to other methods on QgsFieldKit and QgsEditorWidgetWrapper.
For example, the attribute table will create a cache once for each field and then use this cache for representation. The QgsValueRelationFieldFormatter and QgsValueRelationEditorWidget implement this functionality to create a lookuptable once (a QVariantMap / dict) and are make use of a cache if present.
Reimplemented from QgsFieldFormatter.
Definition at line 106 of file qgsrelationreferencefieldformatter.cpp.
|
overridevirtual |
Returns a unique id for this field formatter.
This id will later be used to identify this field formatter in the registry with QgsFieldFormatterRegistry::fieldFormatter().
This id matches the id of a QgsEditorWidgetFactory.
Implements QgsFieldFormatter.
Definition at line 31 of file qgsrelationreferencefieldformatter.cpp.
|
overridevirtual |
Returns a list of weak layer references to other layers required by this formatter for the given config.
The default implementation returns an empty list.
This method should be reimplemented by formatters that handle relations with other layers, (e.g. ValueRelation) and can be used by client code to warn the user about missing required dependencies or to add some resolution logic in order to load the missing dependency.
Reimplemented from QgsFieldFormatter.
Definition at line 177 of file qgsrelationreferencefieldformatter.cpp.
|
overridevirtual |
Create a pretty String representation of the value.
Reimplemented from QgsFieldFormatter.
Definition at line 36 of file qgsrelationreferencefieldformatter.cpp.
|
overridevirtual |
If the default sort order should be overwritten for this widget, you can transform the value in here.
Reimplemented from QgsFieldFormatter.
Definition at line 101 of file qgsrelationreferencefieldformatter.cpp.