QGIS API Documentation 3.39.0-Master (3aed037ce22)
Loading...
Searching...
No Matches
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
50
52 QList< QgsSourceSelectProvider *> providers();
53
55 void addProvider( QgsSourceSelectProvider *provider SIP_TRANSFER );
56
61 bool removeProvider( QgsSourceSelectProvider *provider SIP_TRANSFER );
62
68 void initializeFromProviderGuiRegistry( QgsProviderGuiRegistry *providerGuiRegistry );
69
71 QgsSourceSelectProvider *providerByName( const QString &name );
72
74 QList<QgsSourceSelectProvider *> providersByKey( const QString &providerKey );
75
83 QgsAbstractDataSourceWidget *createSelectionWidget(
84 const QString &name,
85 QWidget *parent,
86 Qt::WindowFlags fl,
88 );
89
90 signals:
91
97 void providerAdded( const QString &name );
98
104 void providerRemoved( const QString &name );
105
106 private:
107#ifdef SIP_RUN
109#endif
110
112 QList<QgsSourceSelectProvider *> mProviders;
113
114};
115
116#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
QgsSourceSelectProviderRegistry(const QgsSourceSelectProviderRegistry &rh)=delete
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