1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsfieldvalueslineedit.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsFieldValuesLineEdit : QgsFilterLineEdit
{
%Docstring(signature="appended")
A line edit with an autocompleter which takes unique values from a
vector layer's fields. The autocompleter is populated from the vector
layer in the background to ensure responsive interaction with the
widget.
%End
%TypeHeaderCode
#include "qgsfieldvalueslineedit.h"
%End
public:
QgsFieldValuesLineEdit( QWidget *parent /TransferThis/ = 0 );
%Docstring
Constructor for QgsFieldValuesLineEdit
:param parent: parent widget
%End
~QgsFieldValuesLineEdit();
void setLayer( QgsVectorLayer *layer );
%Docstring
Sets the layer containing the field that values will be shown from.
:param layer: vector layer
.. seealso:: :py:func:`layer`
.. seealso:: :py:func:`setAttributeIndex`
%End
QgsVectorLayer *layer() const;
%Docstring
Returns the layer containing the field that values will be shown from.
.. seealso:: :py:func:`setLayer`
.. seealso:: :py:func:`attributeIndex`
%End
void setAttributeIndex( int index );
%Docstring
Sets the attribute index for the field containing values to show in the
widget.
:param index: index of attribute
.. seealso:: :py:func:`attributeIndex`
.. seealso:: :py:func:`setLayer`
%End
int attributeIndex() const;
%Docstring
Returns the attribute index for the field containing values shown in the
widget.
.. seealso:: :py:func:`setAttributeIndex`
.. seealso:: :py:func:`layer`
%End
signals:
void layerChanged( QgsVectorLayer *layer );
%Docstring
Emitted when the layer associated with the widget changes.
:param layer: vector layer
%End
void attributeIndexChanged( int index );
%Docstring
Emitted when the field associated with the widget changes.
:param index: new attribute index for field
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsfieldvalueslineedit.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|