mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-26 00:02:08 -05:00
* Remove deprecated Qgis::WKBType and API cleanup Renames QgsWKBTypes to QgsWkbTypes Replaces usage of the enums: * Qgis::WKBType with QgsWkbTypes::Type * Qgis::GeometryType with QgsWkbTypes::GeometryType Their values should be forward compatible (a fact that was already explited up to now by casting between the types) Renames some SSLxxx to SslXxx and URIxxx to UriXxx * Fix build warnings and simplify type handling * Add a fixer to rewrite imports * The forgotten rebase conflictThe forgotten rebase conflicts * QgsDataSourcURI > QgsDataSourceUri * QgsWKBTypes > QgsWkbTypes * Qgis.WKBGeom > QgsWkbTypes.Geom * Further python fixes * Guess what... Qgis::wkbDimensions != QgsWkbTypes::wkbDimensions * Fix tests * Python 3 updates * [travis] pull request caching cannot be disabled so at least use it in r/w mode * Fix python3 print in plugins
37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
class QgsOwsConnection : QObject
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsowsconnection.h>
|
|
%End
|
|
|
|
public:
|
|
/**
|
|
* Constructor
|
|
* @param theService service name: WMS,WFS,WCS
|
|
* @param theConnName connection name
|
|
*/
|
|
QgsOwsConnection( const QString & theService, const QString & theConnName );
|
|
|
|
//! Destructor
|
|
~QgsOwsConnection();
|
|
|
|
/** Returns the list of connections for the specified service */
|
|
static QStringList connectionList( const QString & theService );
|
|
|
|
/** Deletes the connection for the specified service with the specified name */
|
|
static void deleteConnection( const QString & theService, const QString & name );
|
|
|
|
/** Retreives the selected connection for the specified service */
|
|
static QString selectedConnection( const QString & theService );
|
|
/** Marks the specified connection for the specified service as selected */
|
|
static void setSelectedConnection( const QString & theService, const QString & name );
|
|
|
|
QString mConnName;
|
|
/** Returns the connection uri */
|
|
QgsDataSourceUri uri() const;
|
|
QString mConnectionInfo;
|
|
|
|
//! @deprecated use mConnectionInfo instead
|
|
QString connectionInfo() /Deprecated/;
|
|
};
|