Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsvectortiledataitems.h 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 : : #ifndef QGSVECTORTILEDATAITEMS_H 16 : : #define QGSVECTORTILEDATAITEMS_H 17 : : 18 : : #include "qgsdataitem.h" 19 : : #include "qgsdataitemprovider.h" 20 : : 21 : : ///@cond PRIVATE 22 : : #define SIP_NO_FILE 23 : : 24 : : //! Root item for XYZ tile layers 25 : : class CORE_EXPORT QgsVectorTileRootItem : public QgsConnectionsRootItem 26 : : { 27 : : Q_OBJECT 28 : : public: 29 : : QgsVectorTileRootItem( QgsDataItem *parent, QString name, QString path ); 30 : : 31 : : QVector<QgsDataItem *> createChildren() override; 32 : : 33 : : QVariant sortKey() const override { return 8; } 34 : : 35 : : }; 36 : : 37 : : //! Item implementation for XYZ tile layers 38 : : class CORE_EXPORT QgsVectorTileLayerItem : public QgsLayerItem 39 : : { 40 : : Q_OBJECT 41 : : public: 42 : : QgsVectorTileLayerItem( QgsDataItem *parent, QString name, QString path, const QString &encodedUri ); 43 : : 44 : : }; 45 : : 46 : : 47 : : //! Provider for XYZ root data item 48 : 9 : class QgsVectorTileDataItemProvider : public QgsDataItemProvider 49 : : { 50 : : public: 51 : : QString name() override; 52 : : QString dataProviderKey() const override; 53 : : int capabilities() const override; 54 : : 55 : : QgsDataItem *createDataItem( const QString &path, QgsDataItem *parentItem ) override; 56 : : }; 57 : : 58 : : ///@endcond 59 : : 60 : : #endif // QGSVECTORTILEDATAITEMS_H