QGIS API Documentation
3.8.0-Zanzibar (11aff65)
|
Manages an editor widget Widget and wrapper share the same parent. More...
#include <qgswidgetwrapper.h>
Public Types | |
enum | Property { RootPath = 0, DocumentViewerContent } |
Data defined properties for different editor widgets. More... | |
Public Slots | |
virtual void | setEnabled (bool enabled) |
Is used to enable or disable the edit functionality of the managed widget. More... | |
virtual void | setFeature (const QgsFeature &feature)=0 |
Is called, when the value of the widget needs to be changed. More... | |
Signals | |
void | contextChanged () |
Signal when QgsAttributeEditorContext mContext changed. More... | |
Public Member Functions | |
QgsWidgetWrapper (QgsVectorLayer *vl, QWidget *editor=nullptr, QWidget *parent=nullptr) | |
Create a new widget wrapper. More... | |
QVariant | config (const QString &key, const QVariant &defaultVal=QVariant()) const |
Use this inside your overridden classes to access the configuration. More... | |
QVariantMap | config () const |
Returns the whole config. More... | |
const QgsAttributeEditorContext & | context () const |
Returns information about the context in which this widget is shown. More... | |
QgsPropertyCollection & | dataDefinedProperties () |
Returns a reference to the editor widget's property collection, used for data defined overrides. More... | |
const QgsPropertyCollection & | dataDefinedProperties () const |
Returns a reference to the editor widget's property collection, used for data defined overrides. More... | |
QgsVectorLayer * | layer () const |
Returns the vector layer associated with the widget. More... | |
void | notifyAboutToSave () |
Notify this widget, that the containing form is about to save and that any pending changes should be pushed to the edit buffer or they might be lost. More... | |
void | setConfig (const QVariantMap &config) |
Will set the config of this wrapper to the specified config. More... | |
void | setContext (const QgsAttributeEditorContext &context) |
Set the context in which this widget is shown. More... | |
void | setDataDefinedProperties (const QgsPropertyCollection &collection) |
Sets the editor widget's property collection, used for data defined overrides. More... | |
virtual bool | valid () const =0 |
Returns true if the widget has been properly initialized. More... | |
QWidget * | widget () |
Access the widget managed by this wrapper. More... | |
template<class T > | |
T * | widget () |
Access the widget managed by this wrapper and cast it to a given type Example: QPushButton* pb = wrapper->widget<QPushButton*>();. More... | |
Static Public Member Functions | |
static QgsWidgetWrapper * | fromWidget (QWidget *widget) |
Will return a wrapper for a given widget. More... | |
static const QgsPropertiesDefinition & | propertyDefinitions () |
Returns the editor widget property definitions. More... | |
Protected Member Functions | |
virtual QWidget * | createWidget (QWidget *parent)=0 |
This method should create a new widget with the provided parent. More... | |
virtual void | initWidget (QWidget *editor) |
This method should initialize the editor widget with runtime data. More... | |
Protected Attributes | |
QgsPropertyCollection | mPropertyCollection |
Data defined property collection. More... | |
Manages an editor widget Widget and wrapper share the same parent.
A wrapper controls one attribute editor widget and is able to create a default widget or use a pre-existent widget. It is able to set the widget to the value implied by a field of a vector layer, or return the value it currently holds. Every time it is changed it has to emit a valueChanged signal. If it fails to do so, there is no guarantee that the changed status of the widget will be saved.
Definition at line 52 of file qgswidgetwrapper.h.
Data defined properties for different editor widgets.
Enumerator | |
---|---|
RootPath | Root path for external resource. |
DocumentViewerContent | Document type for external resource. |
Definition at line 76 of file qgswidgetwrapper.h.
|
explicit |
Create a new widget wrapper.
vl | The layer on which the field is |
editor | An editor widget. Can be nullptr if one should be autogenerated. |
parent | A parent widget for this widget wrapper and the created widget. |
Definition at line 37 of file qgswidgetwrapper.cpp.
QVariant QgsWidgetWrapper::config | ( | const QString & | key, |
const QVariant & | defaultVal = QVariant() |
||
) | const |
Use this inside your overridden classes to access the configuration.
key | The configuration option you want to load |
defaultVal | Default value |
Definition at line 72 of file qgswidgetwrapper.cpp.
QVariantMap QgsWidgetWrapper::config | ( | ) | const |
Returns the whole config.
Definition at line 81 of file qgswidgetwrapper.cpp.
const QgsAttributeEditorContext & QgsWidgetWrapper::context | ( | ) | const |
Returns information about the context in which this widget is shown.
Definition at line 86 of file qgswidgetwrapper.cpp.
|
signal |
Signal when QgsAttributeEditorContext mContext changed.
|
protectedpure virtual |
This method should create a new widget with the provided parent.
This will only be called if the form did not already provide a widget, so it is not guaranteed to be called! You should not do initialization stuff, which also has to be done for custom editor widgets inside this method. Things like filling comboboxes and assigning other data which will also be used to make widgets on forms created in the QtDesigner usable should be assigned in initWidget().
parent | You should set this parent on the created widget. |
Implemented in QgsRelationWidgetWrapper, QgsValueRelationWidgetWrapper, QgsCheckboxSearchWidgetWrapper, QgsDateTimeEditWrapper, QgsDateTimeSearchWidgetWrapper, QgsRangeWidgetWrapper, QgsTextEditWrapper, QgsRelationReferenceSearchWidgetWrapper, QgsCheckboxWidgetWrapper, QgsExternalResourceWidgetWrapper, QgsValueMapWidgetWrapper, QgsDefaultSearchWidgetWrapper, QgsUniqueValuesWidgetWrapper, QgsBinaryWidgetWrapper, QgsRelationReferenceWidgetWrapper, QgsUuidWidgetWrapper, QgsValueRelationSearchWidgetWrapper, QgsClassificationWidgetWrapper, QgsColorWidgetWrapper, QgsEnumerationWidgetWrapper, QgsKeyValueWidgetWrapper, QgsListWidgetWrapper, QgsHiddenWidgetWrapper, QgsValueMapSearchWidgetWrapper, QgsRelationAggregateSearchWidgetWrapper, QgsHtmlWidgetWrapper, and QgsQmlWidgetWrapper.
|
inline |
Returns a reference to the editor widget's property collection, used for data defined overrides.
Definition at line 182 of file qgswidgetwrapper.h.
|
inline |
Returns a reference to the editor widget's property collection, used for data defined overrides.
Definition at line 190 of file qgswidgetwrapper.h.
|
static |
Will return a wrapper for a given widget.
widget | The widget which was created by a wrapper |
nullptr
Definition at line 96 of file qgswidgetwrapper.cpp.
|
protectedvirtual |
This method should initialize the editor widget with runtime data.
Fill your comboboxes here.
editor | The widget which will represent this attribute editor in a form. |
Reimplemented in QgsRelationWidgetWrapper, QgsValueRelationWidgetWrapper, QgsCheckboxSearchWidgetWrapper, QgsDateTimeEditWrapper, QgsDateTimeSearchWidgetWrapper, QgsRangeWidgetWrapper, QgsTextEditWrapper, QgsRelationReferenceSearchWidgetWrapper, QgsCheckboxWidgetWrapper, QgsExternalResourceWidgetWrapper, QgsValueMapWidgetWrapper, QgsDefaultSearchWidgetWrapper, QgsUniqueValuesWidgetWrapper, QgsBinaryWidgetWrapper, QgsRelationReferenceWidgetWrapper, QgsUuidWidgetWrapper, QgsValueRelationSearchWidgetWrapper, QgsClassificationWidgetWrapper, QgsColorWidgetWrapper, QgsEnumerationWidgetWrapper, QgsKeyValueWidgetWrapper, QgsListWidgetWrapper, QgsHiddenWidgetWrapper, QgsValueMapSearchWidgetWrapper, QgsHtmlWidgetWrapper, and QgsQmlWidgetWrapper.
Definition at line 106 of file qgswidgetwrapper.cpp.
QgsVectorLayer * QgsWidgetWrapper::layer | ( | ) | const |
Returns the vector layer associated with the widget.
Definition at line 91 of file qgswidgetwrapper.cpp.
void QgsWidgetWrapper::notifyAboutToSave | ( | ) |
Notify this widget, that the containing form is about to save and that any pending changes should be pushed to the edit buffer or they might be lost.
Definition at line 101 of file qgswidgetwrapper.cpp.
|
static |
Returns the editor widget property definitions.
Definition at line 22 of file qgswidgetwrapper.cpp.
void QgsWidgetWrapper::setConfig | ( | const QVariantMap & | config | ) |
Will set the config of this wrapper to the specified config.
config | The config for this wrapper |
Definition at line 61 of file qgswidgetwrapper.cpp.
void QgsWidgetWrapper::setContext | ( | const QgsAttributeEditorContext & | context | ) |
Set the context in which this widget is shown.
context | context information |
Definition at line 66 of file qgswidgetwrapper.cpp.
|
inline |
Sets the editor widget's property collection, used for data defined overrides.
collection | property collection. Existing properties will be replaced. |
Definition at line 199 of file qgswidgetwrapper.h.
|
virtualslot |
Is used to enable or disable the edit functionality of the managed widget.
By default this will not change the enabled state of the widget
enabled | Enable or Disable? |
Reimplemented in QgsEditorWidgetWrapper, QgsValueRelationWidgetWrapper, and QgsBinaryWidgetWrapper.
Definition at line 111 of file qgswidgetwrapper.cpp.
|
pure virtualslot |
Is called, when the value of the widget needs to be changed.
Update the widget representation to reflect the new value.
feature | The new feature |
|
pure virtual |
Returns true
if the widget has been properly initialized.
This acts as hint for the calling party if this wrapper can be used after initializing it. If it cannot be used this is a hint to the caller that he may try to find another suitable widget type instead.
Implemented in QgsRelationWidgetWrapper, QgsValueRelationWidgetWrapper, QgsDateTimeEditWrapper, QgsRangeWidgetWrapper, QgsTextEditWrapper, QgsCheckboxWidgetWrapper, QgsExternalResourceWidgetWrapper, QgsValueMapWidgetWrapper, QgsDefaultSearchWidgetWrapper, QgsUniqueValuesWidgetWrapper, QgsBinaryWidgetWrapper, QgsCheckboxSearchWidgetWrapper, QgsDateTimeSearchWidgetWrapper, QgsRelationReferenceSearchWidgetWrapper, QgsRelationReferenceWidgetWrapper, QgsUuidWidgetWrapper, QgsClassificationWidgetWrapper, QgsColorWidgetWrapper, QgsEnumerationWidgetWrapper, QgsKeyValueWidgetWrapper, QgsListWidgetWrapper, QgsHiddenWidgetWrapper, QgsRelationAggregateSearchWidgetWrapper, QgsValueRelationSearchWidgetWrapper, QgsHtmlWidgetWrapper, QgsQmlWidgetWrapper, and QgsValueMapSearchWidgetWrapper.
QWidget * QgsWidgetWrapper::widget | ( | ) |
Access the widget managed by this wrapper.
Definition at line 46 of file qgswidgetwrapper.cpp.
|
inline |
Access the widget managed by this wrapper and cast it to a given type Example: QPushButton* pb = wrapper->widget<QPushButton*>();.
nullptr
, if it cannot be cast to this type.Definition at line 113 of file qgswidgetwrapper.h.
|
protected |
Data defined property collection.
Definition at line 242 of file qgswidgetwrapper.h.