QGIS API Documentation 3.41.0-Master (fda2aa46e9a)
Loading...
Searching...
No Matches
qgsdatasourcemanagerdialog.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsdatasourcemanagerdialog.h - 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#ifndef QGSDATASOURCEMANAGERDIALOG_H
18#define QGSDATASOURCEMANAGERDIALOG_H
19
20#include <QList>
21#include <QDialog>
22#include "ui_qgsdatasourcemanagerdialog.h"
24#include "qgsguiutils.h"
25#include "qgsmimedatautils.h"
26#include "qgshelp.h"
27#include "qgis_gui.h"
28
29#define SIP_NO_FILE
30
32class QgsRasterLayer;
33class QgsMapCanvas;
36class QgsMessageBar;
37
46class GUI_EXPORT QgsDataSourceManagerDialog : public QgsOptionsDialogBase, private Ui::QgsDataSourceManagerDialog
47{
48 Q_OBJECT
49
50 public:
51
59 explicit QgsDataSourceManagerDialog( QgsBrowserGuiModel *browserModel, QWidget *parent = nullptr, QgsMapCanvas *canvas = nullptr, Qt::WindowFlags fl = Qt::Window );
61
67 void openPage( const QString &pageName );
68
70 QgsMessageBar *messageBar() const;
71
72 public slots:
73
79 void activate();
80
82 void setCurrentPage( int index );
83
84 // TODO: use this with an internal source select dialog instead of forwarding the whole raster selection to app
85
90 void rasterLayersAdded( const QStringList &layersList );
91
93 void vectorLayersAdded( const QStringList &layerQStringList, const QString &enc, const QString &dataSourceType );
95 void setPreviousPage();
97 void refresh();
98
106 void reset();
107
108
113 void configureFromUri( const QString &pageName, const QString &uri );
114
115
116 protected:
117 void showEvent( QShowEvent *event ) override;
118
119 signals:
120
128 void addLayer( Qgis::LayerType type, const QString &url, const QString &baseName, const QString &providerKey );
129
134 void addRasterLayers( const QStringList &layersList );
135
137 void replaceSelectedVectorLayer( const QString &oldId, const QString &uri, const QString &layerName, const QString &provider );
139 void addVectorLayers( const QStringList &layerQStringList, const QString &enc, const QString &dataSourceType );
140
142 void showStatusMessage( const QString &message );
144 void addDatabaseLayers( const QStringList &layerPathList, const QString &providerKey );
146 void openFile( const QString &fileName, const QString &fileTypeHint = QString() );
151
158
164
165 private:
166 void addProviderDialog( QgsAbstractDataSourceWidget *dlg, const QString &providerKey, const QString &providerName, const QString &text, const QIcon &icon, const QString &toolTip = QString() );
167 void removeProviderDialog( const QString &providerName );
168 void makeConnections( QgsAbstractDataSourceWidget *dlg, const QString &providerKey );
169 Ui::QgsDataSourceManagerDialog *ui = nullptr;
170 QgsBrowserDockWidget *mBrowserWidget = nullptr;
171 int mPreviousRow;
172 QStringList mPageProviderKeys;
173 QStringList mPageProviderNames;
174 // Map canvas
175 QgsMapCanvas *mMapCanvas = nullptr;
176 QgsMessageBar *mMessageBar = nullptr;
177 QgsBrowserGuiModel *mBrowserModel = nullptr;
178
179};
180
181#endif // QGSDATASOURCEMANAGERDIALOG_H
LayerType
Types of layers that can be added to a map.
Definition qgis.h:169
Abstract base Data Source Widget to create connections and add layers This class provides common func...
A dock widget containing a QgsBrowserWidget for navigating and managing data sources.
A model for showing available data sources and other items in a structured tree.
The QgsDataSourceManagerDialog class embeds the browser panel and all the provider dialogs.
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.
void showStatusMessage(const QString &message)
Emitted when a status message needs to be shown: for signal forwarding to QgisApp.
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 connectionsChanged()
Emitted when a connection has changed inside the provider dialogs This signal is normally forwarded t...
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 addRasterLayers(const QStringList &layersList)
Emitted when a one or more layer were selected for addition: for signal forwarding to QgisApp.
Map canvas is a class for displaying all GIS data types on a canvas.
A bar for displaying non-blocking messages to the user.
QList< QgsMimeDataUtils::Uri > UriList
A base dialog for options and properties dialogs that offers vertical tabs.
void showEvent(QShowEvent *e) override
void setCurrentPage(const QString &page)
Sets the dialog page (by object name) to show.
Represents a raster layer.