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
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/editform/qgsattributeeditortextelement.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsAttributeEditorTextElement : QgsAttributeEditorElement
{
%Docstring(signature="appended")
An attribute editor widget that will represent arbitrary text code.
.. versionadded:: 3.30
%End
%TypeHeaderCode
#include "qgsattributeeditortextelement.h"
%End
public:
QgsAttributeEditorTextElement( const QString &name, QgsAttributeEditorElement *parent );
%Docstring
Creates a new element which can display text
:param name: The name of the widget
:param parent: The parent (used as container)
%End
virtual QgsAttributeEditorElement *clone( QgsAttributeEditorElement *parent ) const /Factory/;
QString text() const;
%Docstring
The Text that will be represented within this widget.
%End
void setText( const QString &text );
%Docstring
Sets the text that will be represented within this widget to ``text``
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/editform/qgsattributeeditortextelement.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|