QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgssourceselectproviderregistry.h
Go to the documentation of this file.
1/***************************************************************************
2 qgssourceselectproviderregistry.h - QgsSourceSelectProviderRegistry
3
4 ---------------------
5 begin : 1.9.2017
6 copyright : (C) 2017 by Alessandro Pasotti
7 email : apasotti at boundlessgeo dot com
8 ***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16#ifndef QGSSOURCESELECTPROVIDERREGISTRY_H
17#define QGSSOURCESELECTPROVIDERREGISTRY_H
18
19#include <QList>
20#include <QObject>
21#include "qgis_gui.h"
22#include "qgis_sip.h"
23
24#include "qgsproviderregistry.h"
25
29
39class GUI_EXPORT QgsSourceSelectProviderRegistry : public QObject
40{
41 Q_OBJECT
42
43 public:
44
47
52
54 QList< QgsSourceSelectProvider *> providers();
55
57 void addProvider( QgsSourceSelectProvider *provider SIP_TRANSFER );
58
63 bool removeProvider( QgsSourceSelectProvider *provider SIP_TRANSFER );
64
70 void initializeFromProviderGuiRegistry( QgsProviderGuiRegistry *providerGuiRegistry );
71
73 QgsSourceSelectProvider *providerByName( const QString &name );
74
76 QList<QgsSourceSelectProvider *> providersByKey( const QString &providerKey );
77
85 QgsAbstractDataSourceWidget *createSelectionWidget(
86 const QString &name,
87 QWidget *parent,
88 Qt::WindowFlags fl,
90 );
91
92 signals:
93
99 void providerAdded( const QString &name );
100
106 void providerRemoved( const QString &name );
107
108 private:
109#ifdef SIP_RUN
111#endif
112
114 QList<QgsSourceSelectProvider *> mProviders;
115
116};
117
118#endif // QGSSOURCESELECTPROVIDERREGISTRY_H
Abstract base Data Source Widget to create connections and add layers This class provides common func...
A registry / canonical manager of GUI parts of data providers.
WidgetMode
Different ways a source select dialog can be used.
This class keeps a list of source select providers that may add items to the QgsDataSourceManagerDial...
QgsSourceSelectProviderRegistry & operator=(const QgsSourceSelectProviderRegistry &rh)=delete
QgsDataItemProviderRegistry cannot be copied.
QgsSourceSelectProviderRegistry(const QgsSourceSelectProviderRegistry &rh)=delete
QgsDataItemProviderRegistry cannot be copied.
void providerRemoved(const QString &name)
Emitted whenever a provider is removed from the registry.
void providerAdded(const QString &name)
Emitted whenever a provider is added to the registry.
This is the interface for those who want to add entries to the QgsDataSourceManagerDialog.
#define SIP_TRANSFER
Definition: qgis_sip.h:36