mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
Add missing doxymentation
This commit is contained in:
parent
7fb3a4eb66
commit
bdc47a48d9
@ -147,6 +147,9 @@ class QgsAggregateCalculator
|
||||
|
||||
static QList< QgsAggregateCalculator::AggregateInfo > aggregates();
|
||||
%Docstring
|
||||
Structured information for available aggregates.
|
||||
|
||||
.. versionadded:: 3.2
|
||||
:rtype: list of QgsAggregateCalculator.AggregateInfo
|
||||
%End
|
||||
|
||||
|
@ -71,7 +71,7 @@ class QgsAggregateToolButton : QToolButton
|
||||
|
||||
void activeChanged();
|
||||
%Docstring
|
||||
A function has been selected or unselected.
|
||||
A function has been selected or deselected.
|
||||
%End
|
||||
|
||||
};
|
||||
|
@ -33,6 +33,9 @@ class QgsAttributeFormWidget : QWidget /Abstract/
|
||||
};
|
||||
|
||||
explicit QgsAttributeFormWidget( QgsWidgetWrapper *widget, QgsAttributeForm *form );
|
||||
%Docstring
|
||||
A new form widget for the wrapper ``widget`` on ``form``.
|
||||
%End
|
||||
|
||||
virtual void createSearchWidgetWrappers() = 0;
|
||||
%Docstring
|
||||
@ -96,6 +99,10 @@ class QgsAttributeFormWidget : QWidget /Abstract/
|
||||
%End
|
||||
|
||||
void addAdditionalSearchWidgetWrapper( QgsSearchWidgetWrapper *wrapper );
|
||||
%Docstring
|
||||
Adds an additional search widget wrapper.
|
||||
Used to register a secondary search widget as used for "between" searches.
|
||||
%End
|
||||
|
||||
QList< QgsSearchWidgetWrapper * > searchWidgetWrappers();
|
||||
%Docstring
|
||||
|
@ -167,6 +167,11 @@ class CORE_EXPORT QgsAggregateCalculator
|
||||
*/
|
||||
static Aggregate stringToAggregate( const QString &string, bool *ok = nullptr );
|
||||
|
||||
/**
|
||||
* Structured information for available aggregates.
|
||||
*
|
||||
* \since QGIS 3.2
|
||||
*/
|
||||
static QList< QgsAggregateCalculator::AggregateInfo > aggregates();
|
||||
|
||||
private:
|
||||
|
@ -79,7 +79,7 @@ class GUI_EXPORT QgsAggregateToolButton : public QToolButton
|
||||
void aggregateChanged();
|
||||
|
||||
/**
|
||||
* A function has been selected or unselected.
|
||||
* A function has been selected or deselected.
|
||||
*/
|
||||
void activeChanged();
|
||||
|
||||
|
@ -36,6 +36,9 @@ class GUI_EXPORT QgsAttributeFormWidget : public QWidget // SIP_ABSTRACT
|
||||
AggregateSearchMode, //!< Embedded in a search form, show additional aggregate function toolbutton
|
||||
};
|
||||
|
||||
/**
|
||||
* A new form widget for the wrapper \a widget on \a form.
|
||||
*/
|
||||
explicit QgsAttributeFormWidget( QgsWidgetWrapper *widget, QgsAttributeForm *form );
|
||||
|
||||
/**
|
||||
@ -98,6 +101,10 @@ class GUI_EXPORT QgsAttributeFormWidget : public QWidget // SIP_ABSTRACT
|
||||
*/
|
||||
void setSearchWidgetWrapper( QgsSearchWidgetWrapper *wrapper );
|
||||
|
||||
/**
|
||||
* Adds an additional search widget wrapper.
|
||||
* Used to register a secondary search widget as used for "between" searches.
|
||||
*/
|
||||
void addAdditionalSearchWidgetWrapper( QgsSearchWidgetWrapper *wrapper );
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user