QGIS API Documentation  3.20.0-Odense (decaadbb31)
qgsattributetableview.h
Go to the documentation of this file.
1 /***************************************************************************
2  QgsAttributeTableView.h
3  --------------------------------------
4  Date : Feb 2009
5  Copyright : (C) 2009 Vita Cizek
6  Email : weetya (at) gmail.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 
16 #ifndef QGSATTRIBUTETABLEVIEW_H
17 #define QGSATTRIBUTETABLEVIEW_H
18 
19 #include <QTableView>
20 #include <QAction>
21 #include "qgsfeatureid.h"
22 
23 #include "qgis_gui.h"
25 
31 class QgsMapCanvas;
32 class QgsVectorLayer;
34 class QMenu;
35 class QProgressDialog;
37 class QgsFeature;
38 
48 class GUI_EXPORT QgsAttributeTableView : public QTableView
49 {
50  Q_OBJECT
51 
52  public:
53 
55  QgsAttributeTableView( QWidget *parent SIP_TRANSFERTHIS = nullptr );
56 
57  virtual void setModel( QgsAttributeTableFilterModel *filterModel );
58 
63  void setFeatureSelectionManager( QgsIFeatureSelectionManager *featureSelectionManager );
64 
75  bool eventFilter( QObject *object, QEvent *event ) override;
76 
82  void setAttributeTableConfig( const QgsAttributeTableConfig &config );
83 
89  QList<QgsFeatureId> selectedFeaturesIds() const;
90 
98  void scrollToFeature( const QgsFeatureId &fid, int column = -1 );
99 
100  protected:
101 
108  void mousePressEvent( QMouseEvent *event ) override;
109 
116  void mouseReleaseEvent( QMouseEvent *event ) override;
117 
124  void mouseMoveEvent( QMouseEvent *event ) override;
125 
132  void keyPressEvent( QKeyEvent *event ) override;
133 
141  void contextMenuEvent( QContextMenuEvent *event ) override;
142 
147  void closeEvent( QCloseEvent *event ) override;
148 
149  signals:
150 
159  void willShowContextMenu( QMenu *menu, const QModelIndex &atIndex );
160 
167  void columnResized( int column, int width );
168 
169  void finished();
170 
171  public slots:
172  void repaintRequested( const QModelIndexList &indexes );
173  void repaintRequested();
174  void selectAll() override;
175  virtual void selectRow( int row );
176  virtual void _q_selectRow( int row );
177 
178  private slots:
179  void modelDeleted();
180  void showHorizontalSortIndicator();
181  void actionTriggered();
182  void columnSizeChanged( int index, int oldWidth, int newWidth );
183  void onActionColumnItemPainted( const QModelIndex &index );
184  void recreateActionWidgets();
185 
186  private:
187  void updateActionImage( QWidget *widget );
188  QWidget *createActionWidget( QgsFeatureId fid );
189 
190  void selectRow( int row, bool anchor );
191  QgsAttributeTableFilterModel *mFilterModel = nullptr;
192  QgsFeatureSelectionModel *mFeatureSelectionModel = nullptr;
193  QgsIFeatureSelectionManager *mOwnedFeatureSelectionManager = nullptr;
194  QgsIFeatureSelectionManager *mFeatureSelectionManager = nullptr;
195  QgsAttributeTableDelegate *mTableDelegate = nullptr;
196  QMenu *mActionPopup = nullptr;
197  int mRowSectionAnchor = 0;
198  QItemSelectionModel::SelectionFlag mCtrlDragSelectionFlag = QItemSelectionModel::Select;
199  QMap< QModelIndex, QWidget * > mActionWidgets;
200  QgsAttributeTableConfig mConfig;
201 };
202 
203 #endif
This is a container for configuration of the attribute table.
A delegate item class for QgsAttributeTable (see Qt documentation for QItemDelegate).
A model backed by a QgsVectorLayerCache which is able to provide feature/attribute information to a Q...
Provides a table view of features of a QgsVectorLayer.
void willShowContextMenu(QMenu *menu, const QModelIndex &atIndex)
Emitted in order to provide a hook to add additional* menu entries to the context menu.
void columnResized(int column, int width)
Emitted when a column in the view has been resized.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition: qgsfeature.h:56
Is an interface class to abstract feature selection handling.
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:86
This class caches features of a given QgsVectorLayer.
Represents a vector layer which manages a vector based data sets.
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:53
qint64 QgsFeatureId
64 bit feature ids negative numbers are used for uncommitted/newly added features
Definition: qgsfeatureid.h:28