QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgsmaplayercombobox.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsmaplayercombobox.h
3  --------------------------------------
4  Date : 01.04.2014
5  Copyright : (C) 2014 Denis Rouzaud
6  Email : [email protected]
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 
16 #ifndef QGSMAPLAYERCOMBOBOX_H
17 #define QGSMAPLAYERCOMBOBOX_H
18 
19 #include <QComboBox>
20 
21 #include "qgsmaplayerproxymodel.h"
22 #include "qgis_gui.h"
23 
24 #include "qgis.h"
25 
26 class QgsMapLayer;
27 class QgsVectorLayer;
28 
34 class GUI_EXPORT QgsMapLayerComboBox : public QComboBox
35 {
36  Q_OBJECT
37  Q_PROPERTY( QgsMapLayerProxyModel::Filters filters READ filters WRITE setFilters )
38  Q_PROPERTY( bool allowEmptyLayer READ allowEmptyLayer WRITE setAllowEmptyLayer )
39  Q_PROPERTY( bool showCrs READ showCrs WRITE setShowCrs )
40  Q_PROPERTY( QStringList excludedProviders READ excludedProviders WRITE setExcludedProviders )
41 
42  public:
43 
48  explicit QgsMapLayerComboBox( QWidget *parent SIP_TRANSFERTHIS = nullptr );
49 
51  void setFilters( QgsMapLayerProxyModel::Filters filters ) { mProxyModel->setFilters( filters ); }
52 
54  QgsMapLayerProxyModel::Filters filters() const { return mProxyModel->filters(); }
55 
57  void setExceptedLayerList( const QList<QgsMapLayer *> &layerList ) { mProxyModel->setExceptedLayerList( layerList );}
58 
60  QList<QgsMapLayer *> exceptedLayerList() const {return mProxyModel->exceptedLayerList();}
61 
67  void setExcludedProviders( const QStringList &providers );
68 
74  QStringList excludedProviders() const;
75 
81  void setAllowEmptyLayer( bool allowEmpty );
82 
88  bool allowEmptyLayer() const;
89 
95  void setShowCrs( bool showCrs );
96 
102  bool showCrs() const;
103 
111  void setAdditionalItems( const QStringList &items );
112 
118  QStringList additionalItems() const;
119 
124  QgsMapLayer *currentLayer() const;
125 
132  QgsMapLayer *layer( int layerIndex ) const;
133 
134  public slots:
136  void setLayer( QgsMapLayer *layer );
137 
138  signals:
140  void layerChanged( QgsMapLayer *layer );
141 
142  protected slots:
143  void indexChanged( int i );
144  void rowsChanged();
145 
146  private:
147  QgsMapLayerProxyModel *mProxyModel = nullptr;
148 };
149 
150 #endif // QGSMAPLAYERCOMBOBOX_H
QList< QgsMapLayer * > exceptedLayerList() const
returns the list of excepted layers
Base class for all map layer types.
Definition: qgsmaplayer.h:63
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:46
void setExceptedLayerList(const QList< QgsMapLayer * > &layerList)
except a list of layers not to be listed
void setFilters(QgsMapLayerProxyModel::Filters filters)
setFilters allows fitering according to layer type and/or geometry type.
The QgsMapLayerComboBox class is a combo box which displays the list of layers.
The QgsMapLayerProxyModel class provides an easy to use model to display the list of layers in widget...
QgsMapLayerProxyModel::Filters filters() const
currently used filter on list layers
Represents a vector layer which manages a vector based data sets.