QGIS API Documentation 3.40.0-Bratislava (b56115d8743)
|
Base class for widgets which allow customization of a provider's source URI. More...
#include <qgsprovidersourcewidget.h>
Signals | |
void | changed () |
Emitted whenever the configuration of the widget changes. | |
void | validChanged (bool isValid) |
Emitted whenever the validation status of the widget changes. | |
Public Member Functions | |
QgsProviderSourceWidget (QWidget *parent=nullptr) | |
Constructor for QgsProviderSourceWidget with the specified parent widget. | |
virtual QString | groupTitle () const |
Returns an optional group title for the source settings, for use in layer properties dialogs. | |
virtual QgsMapCanvas * | mapCanvas () |
Returns the map canvas associated with the widget. | |
virtual void | setMapCanvas (QgsMapCanvas *mapCanvas) |
Sets a map canvas associated with the widget. | |
virtual void | setSourceUri (const QString &uri)=0 |
Sets the source uri to show in the widget. | |
virtual QString | sourceUri () const =0 |
Returns the source URI as currently defined by the widget. | |
Base class for widgets which allow customization of a provider's source URI.
Definition at line 32 of file qgsprovidersourcewidget.h.
QgsProviderSourceWidget::QgsProviderSourceWidget | ( | QWidget * | parent = nullptr | ) |
Constructor for QgsProviderSourceWidget with the specified parent widget.
Definition at line 21 of file qgsprovidersourcewidget.cpp.
|
signal |
Emitted whenever the configuration of the widget changes.
|
inlinevirtual |
Returns an optional group title for the source settings, for use in layer properties dialogs.
If not specified, a default title will be used.
Definition at line 64 of file qgsprovidersourcewidget.h.
|
inlinevirtual |
Returns the map canvas associated with the widget.
Definition at line 78 of file qgsprovidersourcewidget.h.
|
inlinevirtual |
Sets a map canvas associated with the widget.
Reimplemented in QgsOWSSourceWidget.
Definition at line 71 of file qgsprovidersourcewidget.h.
|
pure virtual |
|
pure virtual |
Returns the source URI as currently defined by the widget.
Implemented in QgsOWSSourceWidget.
|
signal |
Emitted whenever the validation status of the widget changes.
If isValid is false
then the widget is not valid, and any dialog using the widget should be prevented from being accepted.