mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-17 00:04:02 -04:00
Fix non-compliant docstrings
This commit is contained in:
parent
8b1bbfe8ae
commit
afa04d9b5b
@ -187,16 +187,17 @@ Add a hint text on the widget
|
||||
|
||||
ConstraintResult constraintResult() const;
|
||||
%Docstring
|
||||
Getter of constraintResult
|
||||
It's the current result of the constraint on the widget influencing it's visualization.
|
||||
Returns the constraint result, which is the current result of the constraint
|
||||
on the widget influencing its visualization.
|
||||
|
||||
.. versionadded:: 3.0
|
||||
%End
|
||||
|
||||
bool constraintResultVisible() const;
|
||||
%Docstring
|
||||
Getter of constraintResultVisible
|
||||
Defines if the constraint result should be visualized on the widget (with color).
|
||||
Returns whether the constraint result is visible.
|
||||
|
||||
Returns true if the constraint result will be visualized on the widget (with color).
|
||||
This will be disabled when the form is not editable.
|
||||
|
||||
.. versionadded:: 3.0
|
||||
@ -204,8 +205,9 @@ This will be disabled when the form is not editable.
|
||||
|
||||
void setConstraintResultVisible( bool constraintResultVisible );
|
||||
%Docstring
|
||||
Setter of constraintResultVisible
|
||||
Defines if the constraint result should be visualized on the widget (with color).
|
||||
Sets whether the constraint result is visible.
|
||||
|
||||
Controls if the constraint result should be visualized on the widget (with color).
|
||||
This will be disabled when the form is not editable.
|
||||
|
||||
:param constraintResultVisible: if constraintResult should be displayed (mostly editable status)
|
||||
@ -213,7 +215,6 @@ This will be disabled when the form is not editable.
|
||||
.. versionadded:: 3.0
|
||||
%End
|
||||
|
||||
|
||||
signals:
|
||||
|
||||
void valueChanged( const QVariant &value );
|
||||
|
@ -35,7 +35,7 @@ Sets predefined vector layer for selection of data
|
||||
|
||||
QMap<QString, QVariant> &valueMap();
|
||||
%Docstring
|
||||
Getter to value map which is currently active
|
||||
Returns the value map which is currently active.
|
||||
|
||||
:return: value map of vlues selected from layer
|
||||
%End
|
||||
|
@ -190,30 +190,34 @@ class GUI_EXPORT QgsEditorWidgetWrapper : public QgsWidgetWrapper
|
||||
virtual void setHint( const QString &hintText );
|
||||
|
||||
/**
|
||||
* Getter of constraintResult
|
||||
* It's the current result of the constraint on the widget influencing it's visualization.
|
||||
* Returns the constraint result, which is the current result of the constraint
|
||||
* on the widget influencing its visualization.
|
||||
*
|
||||
* \since QGIS 3.0
|
||||
*/
|
||||
ConstraintResult constraintResult() const;
|
||||
|
||||
/**
|
||||
* Getter of constraintResultVisible
|
||||
* Defines if the constraint result should be visualized on the widget (with color).
|
||||
* Returns whether the constraint result is visible.
|
||||
*
|
||||
* Returns true if the constraint result will be visualized on the widget (with color).
|
||||
* This will be disabled when the form is not editable.
|
||||
*
|
||||
* \since QGIS 3.0
|
||||
*/
|
||||
bool constraintResultVisible() const;
|
||||
|
||||
/**
|
||||
* Setter of constraintResultVisible
|
||||
* Defines if the constraint result should be visualized on the widget (with color).
|
||||
* Sets whether the constraint result is visible.
|
||||
*
|
||||
* Controls if the constraint result should be visualized on the widget (with color).
|
||||
* This will be disabled when the form is not editable.
|
||||
*
|
||||
* \param constraintResultVisible if constraintResult should be displayed (mostly editable status)
|
||||
* \since QGIS 3.0
|
||||
*/
|
||||
void setConstraintResultVisible( bool constraintResultVisible );
|
||||
|
||||
|
||||
signals:
|
||||
|
||||
/**
|
||||
|
@ -52,7 +52,8 @@ class GUI_EXPORT QgsAttributeTypeLoadDialog: public QDialog, private Ui::QgsAttr
|
||||
void setVectorLayer( QgsVectorLayer *layer );
|
||||
|
||||
/**
|
||||
* Getter to value map which is currently active
|
||||
* Returns the value map which is currently active.
|
||||
*
|
||||
* \returns value map of vlues selected from layer
|
||||
*/
|
||||
QMap<QString, QVariant> &valueMap();
|
||||
|
Loading…
x
Reference in New Issue
Block a user