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
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgseditorwidgetsetup.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsEditorWidgetSetup
{
%Docstring(signature="appended")
Holder for the widget type and its configuration for a field.
%End
%TypeHeaderCode
#include "qgseditorwidgetsetup.h"
%End
public:
QgsEditorWidgetSetup( const QString &type, const QVariantMap &config );
%Docstring
Constructor
%End
QgsEditorWidgetSetup();
QString type() const;
%Docstring
:return: the widget type to use
%End
QVariantMap config() const;
%Docstring
:return: the widget configuration to used
%End
bool isNull() const;
%Docstring
:return: ``True`` if there is no widget configured.
%End
bool operator==( const QgsEditorWidgetSetup &other ) const;
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgseditorwidgetsetup.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|