Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgspluginlayer.cpp 3 : : --------------------- 4 : : begin : January 2010 5 : : copyright : (C) 2010 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 "qgspluginlayer.h" 16 : : 17 : : #include "qgsmaplayerlegend.h" 18 : : #include "qgsmaplayerrenderer.h" 19 : : 20 : : 21 : 0 : QgsPluginLayer::QgsPluginLayer( const QString &layerType, const QString &layerName ) 22 : 0 : : QgsMapLayer( QgsMapLayerType::PluginLayer, layerName ) 23 : 0 : , mPluginLayerType( layerType ) 24 : 0 : { 25 : 0 : mDataProvider = new QgsPluginLayerDataProvider( layerType, QgsDataProvider::ProviderOptions(), QgsDataProvider::ReadFlags() ); 26 : 0 : } 27 : : 28 : 0 : QgsPluginLayer::~QgsPluginLayer() 29 : 0 : { 30 : : // TODO: shall we move the responsibility of emitting the signal to plugin 31 : : // layer implementations before they start doing their part of cleanup...? 32 : 0 : emit willBeDeleted(); 33 : 0 : delete mDataProvider; 34 : 0 : } 35 : : 36 : 0 : QString QgsPluginLayer::pluginLayerType() 37 : : { 38 : 0 : return mPluginLayerType; 39 : : } 40 : : 41 : 0 : void QgsPluginLayer::setExtent( const QgsRectangle &extent ) 42 : : { 43 : 0 : QgsMapLayer::setExtent( extent ); 44 : 0 : static_cast<QgsPluginLayerDataProvider *>( mDataProvider )->setExtent( extent ); 45 : 0 : } 46 : : 47 : 0 : void QgsPluginLayer::setSource( const QString &source ) 48 : : { 49 : 0 : mDataSource = source; 50 : 0 : } 51 : : 52 : 0 : QgsDataProvider *QgsPluginLayer::dataProvider() 53 : : { 54 : 0 : return mDataProvider; 55 : : } 56 : : 57 : 0 : const QgsDataProvider *QgsPluginLayer::dataProvider() const 58 : : { 59 : 0 : return mDataProvider; 60 : : } 61 : : 62 : : // 63 : : // QgsPluginLayerDataProvider 64 : : // 65 : : ///@cond PRIVATE 66 : 0 : QgsPluginLayerDataProvider::QgsPluginLayerDataProvider( const QString &layerType, 67 : : const ProviderOptions &options, 68 : : QgsDataProvider::ReadFlags flags ) 69 : 0 : : QgsDataProvider( QString(), options, flags ) 70 : 0 : , mName( layerType ) 71 : 0 : {} 72 : : 73 : 0 : QgsCoordinateReferenceSystem QgsPluginLayerDataProvider::crs() const 74 : : { 75 : 0 : return QgsCoordinateReferenceSystem(); 76 : : } 77 : : 78 : 0 : QString QgsPluginLayerDataProvider::name() const 79 : : { 80 : 0 : return mName; 81 : : } 82 : : 83 : 0 : QString QgsPluginLayerDataProvider::description() const 84 : : { 85 : 0 : return QString(); 86 : : } 87 : : 88 : 0 : QgsRectangle QgsPluginLayerDataProvider::extent() const 89 : : { 90 : 0 : return mExtent; 91 : : } 92 : : 93 : 0 : bool QgsPluginLayerDataProvider::isValid() const 94 : : { 95 : 0 : return true; 96 : : } 97 : : ///@endcond