QGIS API Documentation
2.8.2-Wien
|
Manages an editor widget Widget and wrapper share the same parent. More...
#include <qgswidgetwrapper.h>
Public Slots | |
virtual void | setEnabled (bool enabled) |
Is used to enable or disable the edit functionality of the managed widget. | |
virtual void | setFeature (const QgsFeature &feature)=0 |
Is called, when the value of the widget needs to be changed. |
Public Member Functions | |
QgsWidgetWrapper (QgsVectorLayer *vl, QWidget *editor=0, QWidget *parent=0) | |
Create a new widget wrapper. | |
QVariant | config (QString key, QVariant defaultVal=QVariant()) |
Use this inside your overriden classes to access the configuration. | |
const QgsEditorWidgetConfig | config () |
Returns the whole config. | |
const QgsAttributeEditorContext & | context () |
Returns information about the context in which this widget is shown. | |
QgsVectorLayer * | layer () |
Access the QgsVectorLayer, you are working on. | |
void | setConfig (const QgsEditorWidgetConfig &config) |
Will set the config of this wrapper to the specified config. | |
void | setContext (const QgsAttributeEditorContext &context) |
Set the context in which this widget is shown. | |
QWidget * | widget () |
Access the widget managed by this wrapper. | |
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*>();. |
Static Public Member Functions | |
static QgsWidgetWrapper * | fromWidget (QWidget *widget) |
Will return a wrapper for a given widget. |
Protected Member Functions | |
virtual QWidget * | createWidget (QWidget *parent)=0 |
This method should create a new widget with the provided parent. | |
virtual void | initWidget (QWidget *editor) |
This method should initialize the editor widget with runtime data. |
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 39 of file qgswidgetwrapper.h.
|
explicit |
Create a new widget wrapper.
vl | The layer on which the field is |
editor | An editor widget. Can be NULL if one should be autogenerated. |
parent | A parent widget for this widget wrapper and the created widget. |
Definition at line 21 of file qgswidgetwrapper.cpp.
QVariant QgsWidgetWrapper::config | ( | QString | key, |
QVariant | defaultVal = QVariant() |
||
) |
Use this inside your overriden classes to access the configuration.
key | The configuration option you want to load |
defaultVal | Default value |
Definition at line 55 of file qgswidgetwrapper.cpp.
const QgsEditorWidgetConfig QgsWidgetWrapper::config | ( | ) |
Returns the whole config.
Definition at line 64 of file qgswidgetwrapper.cpp.
const QgsAttributeEditorContext & QgsWidgetWrapper::context | ( | ) |
Returns information about the context in which this widget is shown.
Definition at line 69 of file qgswidgetwrapper.cpp.
|
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 initialisation 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(QWidget*).
parent | You should set this parent on the created widget. |
Implemented in QgsValueRelationWidgetWrapper, QgsDateTimeEditWrapper, QgsRangeWidgetWrapper, QgsPhotoWidgetWrapper, QgsRelationReferenceWidgetWrapper, QgsTextEditWrapper, QgsValueMapWidgetWrapper, QgsCheckboxWidgetWrapper, QgsFileNameWidgetWrapper, QgsUniqueValuesWidgetWrapper, QgsUuidWidgetWrapper, QgsWebViewWidgetWrapper, QgsColorWidgetWrapper, QgsHiddenWidgetWrapper, QgsClassificationWidgetWrapper, QgsEnumerationWidgetWrapper, and QgsRelationWidgetWrapper.
|
static |
Will return a wrapper for a given widget.
widget | The widget which was created by a wrapper |
Reimplemented in QgsEditorWidgetWrapper.
Definition at line 79 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 QgsValueRelationWidgetWrapper, QgsDateTimeEditWrapper, QgsRangeWidgetWrapper, QgsPhotoWidgetWrapper, QgsRelationReferenceWidgetWrapper, QgsTextEditWrapper, QgsValueMapWidgetWrapper, QgsCheckboxWidgetWrapper, QgsFileNameWidgetWrapper, QgsUniqueValuesWidgetWrapper, QgsUuidWidgetWrapper, QgsWebViewWidgetWrapper, QgsColorWidgetWrapper, QgsHiddenWidgetWrapper, QgsClassificationWidgetWrapper, QgsEnumerationWidgetWrapper, and QgsRelationWidgetWrapper.
Definition at line 84 of file qgswidgetwrapper.cpp.
QgsVectorLayer * QgsWidgetWrapper::layer | ( | ) |
Access the QgsVectorLayer, you are working on.
Definition at line 74 of file qgswidgetwrapper.cpp.
void QgsWidgetWrapper::setConfig | ( | const QgsEditorWidgetConfig & | config | ) |
Will set the config of this wrapper to the specified config.
config | The config for this wrapper |
Definition at line 45 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 50 of file qgswidgetwrapper.cpp.
|
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.
Definition at line 89 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 |
QWidget * QgsWidgetWrapper::widget | ( | ) |
Access the widget managed by this wrapper.
Definition at line 30 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*>();.
Definition at line 66 of file qgswidgetwrapper.h.