Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgseptdataitems.h 3 : : -------------------- 4 : : begin : October 2020 5 : : copyright : (C) 2020 by Peter Petrik 6 : : email : zilolv at gmail dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #ifndef QGSEPTDATAITEMS_H 19 : : #define QGSEPTDATAITEMS_H 20 : : 21 : : #include "qgsdataitem.h" 22 : : #include "qgsdataitemprovider.h" 23 : : 24 : : ///@cond PRIVATE 25 : : #define SIP_NO_FILE 26 : : 27 : : class CORE_EXPORT QgsEptLayerItem : public QgsLayerItem 28 : : { 29 : : Q_OBJECT 30 : : public: 31 : : QgsEptLayerItem( QgsDataItem *parent, const QString &name, const QString &path, const QString &uri ); 32 : : QString layerName() const override; 33 : : 34 : : }; 35 : : 36 : : //! Provider for EPT data items 37 : 6 : class QgsEptDataItemProvider : public QgsDataItemProvider 38 : : { 39 : : public: 40 : : 41 : : QgsEptDataItemProvider(); 42 : : 43 : : QString name() override; 44 : : 45 : : int capabilities() const override; 46 : : 47 : : QgsDataItem *createDataItem( const QString &pathIn, QgsDataItem *parentItem ) override; 48 : : 49 : : private: 50 : : 51 : : QString mFileFilter; 52 : : }; 53 : : 54 : : ///@endcond 55 : : #endif // QGSEPTDATAITEMS_H 56 : : 57 : : 58 : :