QGIS API Documentation
2.8.2-Wien
|
Manages an editor widget Widget and wrapper share the same parent. More...
#include <qgseditorwidgetwrapper.h>
Public Slots | |
void | setFeature (const QgsFeature &feature) override |
Will be called when the feature changes. | |
virtual void | setValue (const QVariant &value)=0 |
Is called, when the value of the widget needs to be changed. | |
Public Slots inherited from QgsWidgetWrapper | |
virtual void | setFeature (const QgsFeature &feature)=0 |
Is called, when the value of the widget needs to be changed. |
Signals | |
void | valueChanged (const QVariant &value) |
Emit this signal, whenever the value changed. |
Public Member Functions | |
QgsEditorWidgetWrapper (QgsVectorLayer *vl, int fieldIdx, QWidget *editor=0, QWidget *parent=0) | |
Create a new widget wrapper. | |
QgsField | field () |
Access the field. | |
int | fieldIdx () |
Access the field index. | |
void | setEnabled (bool enabled) override |
Is used to enable or disable the edit functionality of the managed widget. | |
virtual QVariant | value ()=0 |
Will be used to access the widget's value. | |
Public Member Functions inherited from QgsWidgetWrapper | |
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 QgsEditorWidgetWrapper * | fromWidget (QWidget *widget) |
Will return a wrapper for a given widget. |
Protected Slots | |
void | valueChanged (const QString &value) |
If you emit to this slot in your implementation, an appropriate change notification will be broadcasted. | |
void | valueChanged (int value) |
If you emit to this slot in your implementation, an appropriate change notification will be broadcasted. | |
void | valueChanged (double value) |
If you emit to this slot in your implementation, an appropriate change notification will be broadcasted. | |
void | valueChanged (bool value) |
If you emit to this slot in your implementation, an appropriate change notification will be broadcasted. | |
void | valueChanged (qlonglong value) |
If you emit to this slot in your implementation, an appropriate change notification will be broadcasted. | |
void | valueChanged () |
Will call the value() method to determine the emitted value. |
Additional Inherited Members | |
Protected Member Functions inherited from QgsWidgetWrapper | |
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 41 of file qgseditorwidgetwrapper.h.
|
explicit |
Create a new widget wrapper.
vl | The layer on which the field is |
fieldIdx | The field which will be controlled |
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 22 of file qgseditorwidgetwrapper.cpp.
QgsField QgsEditorWidgetWrapper::field | ( | ) |
Access the field.
Definition at line 33 of file qgseditorwidgetwrapper.cpp.
int QgsEditorWidgetWrapper::fieldIdx | ( | ) |
Access the field index.
Definition at line 28 of file qgseditorwidgetwrapper.cpp.
|
static |
Will return a wrapper for a given widget.
widget | The widget which was created by a wrapper |
Reimplemented from QgsWidgetWrapper.
Definition at line 38 of file qgseditorwidgetwrapper.cpp.
|
overridevirtual |
Is used to enable or disable the edit functionality of the managed widget.
By default this will enable or disable the whole widget
enabled | Enable or Disable? |
Reimplemented from QgsWidgetWrapper.
Definition at line 43 of file qgseditorwidgetwrapper.cpp.
|
overrideslot |
Will be called when the feature changes.
Is forwarded to the slot setValue()
feature | The new feature |
Definition at line 52 of file qgseditorwidgetwrapper.cpp.
|
pure virtualslot |
Is called, when the value of the widget needs to be changed.
Update the widget representation to reflect the new value.
value | The new value of the attribute |
|
pure virtual |
Will be used to access the widget's value.
Read the value from the widget and return it properly formatted to be saved in the attribute.
If an invalid variant is returned this will be interpreted as no change. Be sure to return a NULL QVariant if it should be set to NULL.
Implemented in QgsValueRelationWidgetWrapper, QgsDateTimeEditWrapper, QgsRelationReferenceWidgetWrapper, QgsRangeWidgetWrapper, QgsPhotoWidgetWrapper, QgsTextEditWrapper, QgsValueMapWidgetWrapper, QgsCheckboxWidgetWrapper, QgsFileNameWidgetWrapper, QgsUniqueValuesWidgetWrapper, QgsUuidWidgetWrapper, QgsWebViewWidgetWrapper, QgsColorWidgetWrapper, QgsHiddenWidgetWrapper, QgsClassificationWidgetWrapper, and QgsEnumerationWidgetWrapper.
|
signal |
Emit this signal, whenever the value changed.
value | The new value |
|
protectedslot |
If you emit to this slot in your implementation, an appropriate change notification will be broadcasted.
Helper for string type widgets.
value | The value |
Definition at line 57 of file qgseditorwidgetwrapper.cpp.
|
protectedslot |
If you emit to this slot in your implementation, an appropriate change notification will be broadcasted.
Helper for int type widgets.
value | The value |
Definition at line 62 of file qgseditorwidgetwrapper.cpp.
|
protectedslot |
If you emit to this slot in your implementation, an appropriate change notification will be broadcasted.
Helper for double type widgets.
value | The value |
Definition at line 67 of file qgseditorwidgetwrapper.cpp.
|
protectedslot |
If you emit to this slot in your implementation, an appropriate change notification will be broadcasted.
Helper for bool type widgets.
value | The value |
Definition at line 72 of file qgseditorwidgetwrapper.cpp.
|
protectedslot |
If you emit to this slot in your implementation, an appropriate change notification will be broadcasted.
Helper for longlong type widgets.
value | The value |
Definition at line 77 of file qgseditorwidgetwrapper.cpp.
|
protectedslot |
Will call the value() method to determine the emitted value.
Definition at line 82 of file qgseditorwidgetwrapper.cpp.