Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsgdaldataitems.h 3 : : --------------------- 4 : : begin : October 2011 5 : : copyright : (C) 2011 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 : : #ifndef QGSGDALDATAITEMS_H 16 : : #define QGSGDALDATAITEMS_H 17 : : 18 : : #include "qgsdataitem.h" 19 : : #include "qgsdataitemprovider.h" 20 : : #include "qgsdataprovider.h" 21 : : #include "qgis_sip.h" 22 : : 23 : : #include "qgis_sip.h" 24 : : 25 : : ///@cond PRIVATE 26 : : #define SIP_NO_FILE 27 : : 28 : : Q_NOWARN_DEPRECATED_PUSH // setCrs is deprecated 29 : : class CORE_EXPORT QgsGdalLayerItem : public QgsLayerItem 30 : : { 31 : : Q_OBJECT 32 : : 33 : : private: 34 : : 35 : : QStringList mSublayers; 36 : : 37 : : public: 38 : : QgsGdalLayerItem( QgsDataItem *parent, 39 : : const QString &name, const QString &path, const QString &uri, 40 : : QStringList *mSublayers = nullptr ); 41 : : 42 : : bool setCrs( const QgsCoordinateReferenceSystem &crs ) override; 43 : : 44 : : QVector<QgsDataItem *> createChildren() override; 45 : : 46 : : QString layerName() const override; 47 : : }; 48 : : Q_NOWARN_DEPRECATED_POP 49 : : 50 : : //! Provider for GDAL root data item 51 : 9 : class QgsGdalDataItemProvider : public QgsDataItemProvider 52 : : { 53 : : public: 54 : : QString name() override; 55 : : 56 : : int capabilities() const override; 57 : : 58 : : QgsDataItem *createDataItem( const QString &pathIn, QgsDataItem *parentItem ) override; 59 : : }; 60 : : 61 : : ///@endcond 62 : : #endif // QGSGDALDATAITEMS_H