Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsvectortiledataitems.cpp 3 : : --------------------- 4 : : begin : March 2020 5 : : copyright : (C) 2020 by Martin Dobias 6 : : email : wonder dot sk at gmail dot com 7 : : *************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : #include "qgsvectortiledataitems.h" 16 : : 17 : : #include "qgssettings.h" 18 : : #include "qgsvectortileconnection.h" 19 : : 20 : : ///@cond PRIVATE 21 : : 22 : 0 : QgsVectorTileRootItem::QgsVectorTileRootItem( QgsDataItem *parent, QString name, QString path ) 23 : 0 : : QgsConnectionsRootItem( parent, name, path, QStringLiteral( "vectortile" ) ) 24 : 0 : { 25 : 0 : mCapabilities |= Fast; 26 : 0 : mIconName = QStringLiteral( "mIconVectorTileLayer.svg" ); 27 : 0 : populate(); 28 : 0 : } 29 : : 30 : 0 : QVector<QgsDataItem *> QgsVectorTileRootItem::createChildren() 31 : : { 32 : 0 : QVector<QgsDataItem *> connections; 33 : 0 : const auto connectionList = QgsVectorTileProviderConnection::connectionList(); 34 : 0 : for ( const QString &connName : connectionList ) 35 : : { 36 : 0 : QString uri = QgsVectorTileProviderConnection::encodedLayerUri( QgsVectorTileProviderConnection::connection( connName ) ); 37 : 0 : QgsDataItem *conn = new QgsVectorTileLayerItem( this, connName, mPath + '/' + connName, uri ); 38 : 0 : connections.append( conn ); 39 : 0 : } 40 : 0 : return connections; 41 : 0 : } 42 : : 43 : : 44 : : // --------------------------------------------------------------------------- 45 : : 46 : : 47 : 0 : QgsVectorTileLayerItem::QgsVectorTileLayerItem( QgsDataItem *parent, QString name, QString path, const QString &encodedUri ) 48 : 0 : : QgsLayerItem( parent, name, path, encodedUri, QgsLayerItem::VectorTile, QString() ) 49 : 0 : { 50 : 0 : setState( Populated ); 51 : 0 : mIconName = QStringLiteral( "mIconVectorTileLayer.svg" ); 52 : 0 : } 53 : : 54 : : 55 : : // --------------------------------------------------------------------------- 56 : : 57 : 3 : QString QgsVectorTileDataItemProvider::name() 58 : : { 59 : 6 : return QStringLiteral( "Vector Tiles" ); 60 : : } 61 : : 62 : 6 : QString QgsVectorTileDataItemProvider::dataProviderKey() const 63 : : { 64 : 12 : return QStringLiteral( "vectortile" ); 65 : : } 66 : : 67 : 0 : int QgsVectorTileDataItemProvider::capabilities() const 68 : : { 69 : 0 : return QgsDataProvider::Net; 70 : : } 71 : : 72 : 0 : QgsDataItem *QgsVectorTileDataItemProvider::createDataItem( const QString &path, QgsDataItem *parentItem ) 73 : : { 74 : 0 : if ( path.isEmpty() ) 75 : 0 : return new QgsVectorTileRootItem( parentItem, QStringLiteral( "Vector Tiles" ), QStringLiteral( "vectortile:" ) ); 76 : 0 : return nullptr; 77 : 0 : } 78 : : 79 : : ///@endcond