Public Member Functions |
| QgsValueRelationWidgetWrapper (QgsVectorLayer *vl, int fieldIdx, QWidget *editor=0, QWidget *parent=0) |
QVariant | value () |
| Will be used to access the widget's value.
|
| QgsEditorWidgetWrapper (QgsVectorLayer *vl, int fieldIdx, QWidget *editor=0, QWidget *parent=0) |
| Create a new widget wrapper.
|
int | fieldIdx () |
| Access the field index.
|
QgsField | field () |
| Access the field.
|
void | setEnabled (bool enabled) |
| Is used to enable or disable the edit functionality of the managed widget.
|
| QgsWidgetWrapper (QgsVectorLayer *vl, QWidget *editor=0, QWidget *parent=0) |
| Create a new widget wrapper.
|
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*>();.
|
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.
|
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.
|
Additional Inherited Members |
void | valueChanged (const QVariant &value) |
| Emit this signal, whenever the value changed.
|
static QgsEditorWidgetWrapper * | fromWidget (QWidget *widget) |
| Will return a wrapper for a given widget.
|
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.
|
Wraps a value relation widget.
This widget will offer a combobox with values from another layer referenced by a foreign key (a constraint may be set but is not required on data level). This is useful for having value lists on a separate layer containing codes and their translation to human readable names.
Options:
-
Layer The id of the referenced layer.
-
Key The key field on the referenced layer (code).
-
Value The value field on the referenced layer (human readable name).
-
AllowMulti If set to True, will allow multiple selections. This requires the data type to be a string. This does NOT work with normalized database structures.
-
AllowNull Will offer NULL as a possible value.
-
FilterExpression If not empty, will be used as expression. Only if this evaluates to True, the value will be shown.
-
OrderByValue Will order by value instead of key.
QWidget * QgsValueRelationWidgetWrapper::createWidget |
( |
QWidget * |
parent | ) |
|
|
protectedvirtual |
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*).
- Parameters
-
parent | You should set this parent on the created widget. |
- Returns
- A new widget
Implements QgsWidgetWrapper.