QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
qgsdatasourcemanagerdialog.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsdatasourcemanagerdialog.cpp - datasource manager dialog
3
4 ---------------------
5 begin : May 19, 2017
6 copyright : (C) 2017 by Alessandro Pasotti
7 email : apasotti at itopen dot it
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
17#include <QListWidgetItem>
18
20#include "moc_qgsdatasourcemanagerdialog.cpp"
21#include "ui_qgsdatasourcemanagerdialog.h"
23#include "qgssettings.h"
24#include "qgsproviderregistry.h"
28#include "qgsmapcanvas.h"
29#include "qgsmessagelog.h"
30#include "qgsmessagebar.h"
31#include "qgsgui.h"
32#include "qgsbrowserguimodel.h"
33#include "qgsbrowserwidget.h"
34
35QgsDataSourceManagerDialog::QgsDataSourceManagerDialog( QgsBrowserGuiModel *browserModel, QWidget *parent, QgsMapCanvas *canvas, Qt::WindowFlags fl )
36 : QgsOptionsDialogBase( tr( "Data Source Manager" ), parent, fl )
37 , ui( new Ui::QgsDataSourceManagerDialog )
38 , mPreviousRow( -1 )
39 , mMapCanvas( canvas )
40 , mBrowserModel( browserModel )
41{
42 ui->setupUi( this );
43 ui->verticalLayout_2->setSpacing( 6 );
44 ui->verticalLayout_2->setContentsMargins( 0, 0, 0, 0 );
45
46 mMessageBar = new QgsMessageBar( this );
47 mMessageBar->setSizePolicy( QSizePolicy::MinimumExpanding, QSizePolicy::Fixed );
48 static_cast<QVBoxLayout *>( layout() )->insertWidget( 0, mMessageBar );
49
50 // QgsOptionsDialogBase handles saving/restoring of geometry, splitter and current tab states,
51 // switching vertical tabs between icon/text to icon-only modes (splitter collapsed to left),
52 // and connecting QDialogButtonBox's accepted/rejected signals to dialog's accept/reject slots
53 initOptionsBase( false );
54
55 // Bind list index to the stacked dialogs
56 connect( ui->mOptionsListWidget, &QListWidget::currentRowChanged, this, &QgsDataSourceManagerDialog::setCurrentPage );
57
58 // BROWSER Add the browser widget to the first stacked widget page
59 mBrowserWidget = new QgsBrowserDockWidget( QStringLiteral( "Browser" ), mBrowserModel, this );
60 mBrowserWidget->setFeatures( QDockWidget::NoDockWidgetFeatures );
61 mBrowserWidget->setTitleBarWidget( new QWidget( mBrowserWidget ) );
62
63 QWidget *browserWidgetWrapper = new QWidget( this );
64 browserWidgetWrapper->setLayout( new QVBoxLayout( browserWidgetWrapper ) );
65 browserWidgetWrapper->layout()->addWidget( mBrowserWidget );
66 QDialogButtonBox *browserButtonBox = new QDialogButtonBox( QDialogButtonBox::StandardButton::Close | QDialogButtonBox::StandardButton::Help, browserWidgetWrapper );
67 browserWidgetWrapper->layout()->addWidget( browserButtonBox );
68
69 connect( browserButtonBox, &QDialogButtonBox::helpRequested, this, [=] {
70 QgsHelp::openHelp( QStringLiteral( "managing_data_source/opening_data.html#the-browser-panel" ) );
71 } );
72 connect( browserButtonBox, &QDialogButtonBox::rejected, this, &QgsDataSourceManagerDialog::reject );
73
74 ui->mOptionsStackedWidget->addWidget( browserWidgetWrapper );
75 mPageProviderKeys.append( QStringLiteral( "browser" ) );
76 mPageProviderNames.append( QStringLiteral( "browser" ) );
77
78 // Forward all browser signals
83
84 // Add registered source select dialogs
85 const QList<QgsSourceSelectProvider *> sourceSelectProviders = QgsGui::sourceSelectProviderRegistry()->providers();
86 for ( QgsSourceSelectProvider *provider : sourceSelectProviders )
87 {
88 QgsAbstractDataSourceWidget *dlg = provider->createDataSourceWidget( this );
89 if ( !dlg )
90 {
91 QgsMessageLog::logMessage( tr( "Cannot get %1 select dialog from source select provider %2." ).arg( provider->name(), provider->providerKey() ), QStringLiteral( "DataSourceManager" ), Qgis::MessageLevel::Critical );
92 continue;
93 }
94 addProviderDialog( dlg, provider->providerKey(), provider->name(), provider->text(), provider->icon(), provider->toolTip() );
95 }
96
98 if ( QgsSourceSelectProvider *provider = QgsGui::sourceSelectProviderRegistry()->providerByName( name ) )
99 {
100 QgsAbstractDataSourceWidget *dlg = provider->createDataSourceWidget( this );
101 if ( !dlg )
102 {
103 QgsMessageLog::logMessage( tr( "Cannot get %1 select dialog from source select provider %2." ).arg( provider->name(), provider->providerKey() ), QStringLiteral( "DataSourceManager" ), Qgis::MessageLevel::Critical );
104 return;
105 }
106 addProviderDialog( dlg, provider->providerKey(), provider->name(), provider->text(), provider->icon(), provider->toolTip() );
107 }
108 } );
109
111 removeProviderDialog( name );
112 } );
113
114 restoreOptionsBaseUi( tr( "Data Source Manager" ) );
115}
116
121
122void QgsDataSourceManagerDialog::openPage( const QString &pageName )
123{
124 // TODO -- this is actually using provider keys, not provider names!
125 const int pageIdx = mPageProviderKeys.indexOf( pageName );
126 if ( pageIdx != -1 )
127 {
128 QTimer::singleShot( 0, this, [=] { setCurrentPage( pageIdx ); } );
129 }
130}
131
133{
134 return mMessageBar;
135}
136
138{
139 raise();
140 setWindowState( windowState() & ~Qt::WindowMinimized );
141 activateWindow();
142}
143
145{
146 mPreviousRow = ui->mOptionsStackedWidget->currentIndex();
147 ui->mOptionsStackedWidget->setCurrentIndex( index );
148 setWindowTitle( tr( "Data Source Manager | %1" ).arg( ui->mOptionsListWidget->currentItem()->text() ) );
149 resizeAlltabs( index );
150}
151
153{
154 const int prevPage = mPreviousRow != -1 ? mPreviousRow : 0;
155 setCurrentPage( prevPage );
156}
157
163
165{
166 const int pageCount = ui->mOptionsStackedWidget->count();
167 for ( int i = 0; i < pageCount; ++i )
168 {
169 QWidget *widget = ui->mOptionsStackedWidget->widget( i );
170 QgsAbstractDataSourceWidget *dataSourceWidget = qobject_cast<QgsAbstractDataSourceWidget *>( widget );
171 if ( dataSourceWidget )
172 dataSourceWidget->reset();
173 }
174}
175
176void QgsDataSourceManagerDialog::configureFromUri( const QString &pageName, const QString &uri )
177{
178 const int pageIdx = mPageProviderNames.indexOf( pageName );
179 if ( pageIdx != -1 )
180 {
181 QTimer::singleShot( 0, this, [=] {
182 setCurrentPage( pageIdx );
183 if ( QgsAbstractDataSourceWidget *dataSourceWidget = qobject_cast<QgsAbstractDataSourceWidget *>( ui->mOptionsStackedWidget->currentWidget() ) )
184 {
185 dataSourceWidget->configureFromUri( uri );
186 }
187 } );
188 }
189}
190
191void QgsDataSourceManagerDialog::rasterLayersAdded( const QStringList &layersList )
192{
193 emit addRasterLayers( layersList );
194}
195
196void QgsDataSourceManagerDialog::vectorLayersAdded( const QStringList &layerQStringList, const QString &enc, const QString &dataSourceType )
197{
198 emit addVectorLayers( layerQStringList, enc, dataSourceType );
199}
200
201void QgsDataSourceManagerDialog::addProviderDialog( QgsAbstractDataSourceWidget *dlg, const QString &providerKey, const QString &providerName, const QString &text, const QIcon &icon, const QString &toolTip )
202{
203 mPageProviderKeys.append( providerKey );
204 mPageProviderNames.append( providerName );
205 ui->mOptionsStackedWidget->addWidget( dlg );
206 QListWidgetItem *layerItem = new QListWidgetItem( text, ui->mOptionsListWidget );
207 layerItem->setData( Qt::UserRole, providerName );
208 layerItem->setToolTip( toolTip.isEmpty() ? tr( "Add %1 layer" ).arg( text ) : toolTip );
209 layerItem->setIcon( icon );
210 // Set crs and extent from canvas
211 if ( mMapCanvas )
212 {
213 dlg->setMapCanvas( mMapCanvas );
214 }
215 dlg->setBrowserModel( mBrowserModel );
216
217 connect( dlg, &QgsAbstractDataSourceWidget::rejected, this, &QgsDataSourceManagerDialog::reject );
218 connect( dlg, &QgsAbstractDataSourceWidget::accepted, this, &QgsDataSourceManagerDialog::accept );
219 makeConnections( dlg, providerKey );
220}
221
222void QgsDataSourceManagerDialog::removeProviderDialog( const QString &providerName )
223{
224 const int pageIdx = mPageProviderNames.indexOf( providerName );
225 if ( pageIdx != -1 )
226 {
227 ui->mOptionsStackedWidget->removeWidget( ui->mOptionsStackedWidget->widget( pageIdx ) );
228 mPageProviderKeys.removeAt( pageIdx );
229 mPageProviderNames.removeAt( pageIdx );
230 ui->mOptionsListWidget->removeItemWidget( ui->mOptionsListWidget->item( pageIdx ) );
231 }
232}
233
234void QgsDataSourceManagerDialog::makeConnections( QgsAbstractDataSourceWidget *dlg, const QString &providerKey )
235{
236 // DB
239
240 connect( dlg, &QgsAbstractDataSourceWidget::addLayer, this, [=]( Qgis::LayerType type, const QString &url, const QString &baseName, const QString &providerKey ) {
241 Q_UNUSED( url )
242 Q_UNUSED( baseName )
243 Q_UNUSED( providerKey )
244
245 switch ( type )
246 {
255 // for compatibility with older API, we ignore these signals and rely on the older granular signals (eg "addVectorLayer").
256 // otherwise we will be emitting double signals for the old/new signal for these layer types
257 break;
258
260 emit addLayer( type, url, baseName, providerKey );
261 break;
262 }
263 } );
264
265 // Vector
267 connect( dlg, &QgsAbstractDataSourceWidget::addVectorLayer, this, [=]( const QString &vectorLayerPath, const QString &baseName, const QString &specifiedProvider ) {
268 const QString key = specifiedProvider.isEmpty() ? providerKey : specifiedProvider;
269 emit addLayer( Qgis::LayerType::Vector, vectorLayerPath, baseName, key );
270 } );
274
275 // Raster
277 connect( dlg, &QgsAbstractDataSourceWidget::addRasterLayer, this, [=]( const QString &rasterLayerPath, const QString &baseName, const QString &providerKey ) {
278 emit addLayer( Qgis::LayerType::Raster, rasterLayerPath, baseName, providerKey );
279 } );
282
283 // Mesh
285 connect( dlg, &QgsAbstractDataSourceWidget::addMeshLayer, this, [=]( const QString &url, const QString &baseName, const QString &providerKey ) {
286 emit addLayer( Qgis::LayerType::Mesh, url, baseName, providerKey );
287 } );
289 // Vector tile
291 connect( dlg, &QgsAbstractDataSourceWidget::addVectorTileLayer, this, [=]( const QString &url, const QString &baseName ) {
292 emit addLayer( Qgis::LayerType::VectorTile, url, baseName, QString() );
293 } );
295 // Point Cloud
297 connect( dlg, &QgsAbstractDataSourceWidget::addPointCloudLayer, this, [=]( const QString &url, const QString &baseName, const QString &providerKey ) {
298 emit addLayer( Qgis::LayerType::PointCloud, url, baseName, providerKey );
299 } );
301 // Virtual
303 // Common
306
307 // Message
308 connect( dlg, &QgsAbstractDataSourceWidget::pushMessage, this, [=]( const QString &title, const QString &message, const Qgis::MessageLevel level ) {
309 mMessageBar->pushMessage( title, message, level );
310 } );
311}
312
314{
315 ui->mOptionsStackedWidget->currentWidget()->show();
317 resizeAlltabs( ui->mOptionsStackedWidget->currentIndex() );
318}
MessageLevel
Level for messages This will be used both for message log and message bar in application.
Definition qgis.h:154
@ Critical
Critical/error message.
Definition qgis.h:157
LayerType
Types of layers that can be added to a map.
Definition qgis.h:169
@ Group
Composite group layer. Added in QGIS 3.24.
@ Plugin
Plugin based layer.
@ TiledScene
Tiled scene layer. Added in QGIS 3.34.
@ Annotation
Contains freeform, georeferenced annotations. Added in QGIS 3.16.
@ Vector
Vector layer.
@ VectorTile
Vector tile layer. Added in QGIS 3.14.
@ Mesh
Mesh layer. Added in QGIS 3.2.
@ Raster
Raster layer.
@ PointCloud
Point cloud layer. Added in QGIS 3.18.
Abstract base Data Source Widget to create connections and add layers This class provides common func...
void pushMessage(const QString &title, const QString &message, const Qgis::MessageLevel level=Qgis::MessageLevel::Info)
Emitted when a message with title and level must be shown to the user using the parent visible messag...
Q_DECL_DEPRECATED void addPointCloudLayer(const QString &url, const QString &baseName, const QString &providerKey)
Emitted when a point cloud layer has been selected for addition.
Q_DECL_DEPRECATED void addVectorTileLayer(const QString &url, const QString &baseName)
Emitted when a vector tile layer has been selected for addition.
Q_DECL_DEPRECATED void addRasterLayer(const QString &rasterLayerPath, const QString &baseName, const QString &providerKey)
Emitted when a raster layer has been selected for addition.
virtual void setMapCanvas(QgsMapCanvas *mapCanvas)
Sets the dialog map canvas.
void replaceVectorLayer(const QString &oldId, const QString &source, const QString &name, const QString &provider)
Emitted when a layer needs to be replaced.
void connectionsChanged()
Emitted when the provider's connections have changed This signal is normally forwarded the app and us...
void addRasterLayers(const QStringList &layersList)
Emitted when one or more GDAL supported layers are selected for addition.
virtual void refresh()
Triggered when the provider's connections need to be refreshed The default implementation does nothin...
virtual void setBrowserModel(QgsBrowserModel *model)
Sets a browser model to use with the widget.
Q_DECL_DEPRECATED void addMeshLayer(const QString &url, const QString &baseName, const QString &providerKey)
Emitted when a mesh layer has been selected for addition.
void progressMessage(QString message)
Emitted when a progress dialog is shown by the provider dialog.
void addVectorLayers(const QStringList &layerList, const QString &encoding, const QString &dataSourceType)
Emitted when one or more OGR supported layers are selected for addition.
void addDatabaseLayers(const QStringList &paths, const QString &providerKey)
Emitted when a DB layer has been selected for addition.
Q_DECL_DEPRECATED void addVectorLayer(const QString &uri, const QString &layerName, const QString &providerKey=QString())
Emitted when a vector layer has been selected for addition.
virtual void reset()
Called when this source select widget is being shown in a "new and clean" dialog.
void addLayer(Qgis::LayerType type, const QString &url, const QString &baseName, const QString &providerKey)
Emitted when a layer has been selected for addition.
A dock widget containing a QgsBrowserWidget for navigating and managing data sources.
void connectionsChanged()
Connections changed in the browser.
QgsBrowserWidget * browserWidget()
Returns a pointer to the QgsBrowserWidget used by the dock widget.
void handleDropUriList(const QgsMimeDataUtils::UriList &uris)
Emitted when drop uri list needs to be handled.
void openFile(const QString &fileName, const QString &fileTypeHint=QString())
Emitted when a file needs to be opened.
A model for showing available data sources and other items in a structured tree.
void updateProjectHome()
Update project home directory.
void refresh()
Refreshes the browser model and view.
The QgsDataSourceManagerDialog class embeds the browser panel and all the provider dialogs.
void reset()
Resets the interface of the datasource manager after reopening the dialog.
void refresh()
Refresh the browser view.
void addVectorLayers(const QStringList &layerQStringList, const QString &enc, const QString &dataSourceType)
Emitted when a one or more layer were selected for addition: for signal forwarding to QgisApp.
void openFile(const QString &fileName, const QString &fileTypeHint=QString())
Emitted when a file needs to be opened.
QgsMessageBar * messageBar() const
Returns the dialog's message bar.
void rasterLayersAdded(const QStringList &layersList)
One or more raster layer were added: for signal forwarding to QgisApp.
void setPreviousPage()
Reset current page to previously selected page.
QgsDataSourceManagerDialog(QgsBrowserGuiModel *browserModel, QWidget *parent=nullptr, QgsMapCanvas *canvas=nullptr, Qt::WindowFlags fl=Qt::Window)
QgsDataSourceManagerDialog constructor.
void showStatusMessage(const QString &message)
Emitted when a status message needs to be shown: for signal forwarding to QgisApp.
void showEvent(QShowEvent *event) override
void replaceSelectedVectorLayer(const QString &oldId, const QString &uri, const QString &layerName, const QString &provider)
Replace the selected layer by a vector layer defined by uri, layer name, data source uri.
void configureFromUri(const QString &pageName, const QString &uri)
Shows the page pageName and configure the source select widget from the layer uri.
void openPage(const QString &pageName)
Open a given page in the dialog.
void activate()
Raise, unminimize and activate this window.
void connectionsChanged()
Emitted when a connection has changed inside the provider dialogs This signal is normally forwarded t...
void vectorLayersAdded(const QStringList &layerQStringList, const QString &enc, const QString &dataSourceType)
One or more vector layer were added: for signal forwarding to QgisApp.
void addDatabaseLayers(const QStringList &layerPathList, const QString &providerKey)
Emitted when a DB layer was selected for addition: for signal forwarding to QgisApp.
void handleDropUriList(const QgsMimeDataUtils::UriList &)
Emitted when drop uri list needs to be handled from the browser.
void providerDialogsRefreshRequested()
One or more provider connections have changed and the dialogs should be refreshed.
void addLayer(Qgis::LayerType type, const QString &url, const QString &baseName, const QString &providerKey)
Emitted when a layer has been selected for addition.
void updateProjectHome()
Update project home directory.
void setCurrentPage(int index)
Sync current page with the leftbar list.
void addRasterLayers(const QStringList &layersList)
Emitted when a one or more layer were selected for addition: for signal forwarding to QgisApp.
static QgsSourceSelectProviderRegistry * sourceSelectProviderRegistry()
Returns the global source select provider registry, used for managing all known source select widget ...
Definition qgsgui.cpp:110
static void openHelp(const QString &key)
Opens help topic for the given help key using default system web browser.
Definition qgshelp.cpp:39
Map canvas is a class for displaying all GIS data types on a canvas.
A bar for displaying non-blocking messages to the user.
void pushMessage(const QString &text, Qgis::MessageLevel level=Qgis::MessageLevel::Info, int duration=-1)
A convenience method for pushing a message with the specified text to the bar.
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true)
Adds a message to the log instance (and creates it if necessary).
A base dialog for options and properties dialogs that offers vertical tabs.
void resizeAlltabs(int index)
Resizes all tabs when the dialog is resized.
void restoreOptionsBaseUi(const QString &title=QString())
Restore the base ui.
void initOptionsBase(bool restoreUi=true, const QString &title=QString())
Set up the base ui connections for vertical tabs.
void showEvent(QShowEvent *e) override
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.
QList< QgsSourceSelectProvider * > providers()
Gets list of available providers.
This is the interface for those who want to add entries to the QgsDataSourceManagerDialog.
#define Q_NOWARN_DEPRECATED_POP
Definition qgis.h:6601
#define Q_NOWARN_DEPRECATED_PUSH
Definition qgis.h:6600