-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqgsattributetabledialog.h
253 lines (197 loc) · 6.34 KB
/
qgsattributetabledialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/***************************************************************************
QgsAttributeTableDialog.h - dialog for attribute table
-------------------
date : Feb 2009
copyright : Vita Cizek
email : weetya (at) gmail.com
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef QGSATTRIBUTETABLEDIALOG_H_
#define QGSATTRIBUTETABLEDIALOG_H_
#include <QDialog>
#include <QModelIndex>
#include <QItemSelectionModel>
#include <time.h>
#include "ui_qgsattributetabledialog.h"
#include "qgssearchwidgetwrapper.h"
#include "qgsdockwidget.h"
#include "qgis_app.h"
class QDialogButtonBox;
class QPushButton;
class QLineEdit;
class QComboBox;
class QMenu;
class QSignalMapper;
class QgsAttributeTableModel;
class QgsAttributeTableFilterModel;
class QgsRubberBand;
class APP_EXPORT QgsAttributeTableDialog : public QDialog, private Ui::QgsAttributeTableDialog, private QgsExpressionContextGenerator
{
Q_OBJECT
public:
/**
* Constructor
* @param layer layer pointer
* @param parent parent object
* @param flags window flags
*/
QgsAttributeTableDialog( QgsVectorLayer *layer, QWidget *parent = nullptr, Qt::WindowFlags flags = Qt::Window );
~QgsAttributeTableDialog();
QgsExpressionContext createExpressionContext() const override;
public slots:
/**
* Toggles editing mode
*/
void editingToggled();
/**
* Sets the filter expression to filter visible features
* @param filterString filter query string. QgsExpression compatible.
*/
void setFilterExpression( const QString &filterString,
QgsAttributeForm::FilterType type = QgsAttributeForm::ReplaceFilter,
bool alwaysShowFilter = false );
private slots:
/**
* Copies selected rows to the clipboard
*/
void on_mActionCopySelectedRows_triggered();
/**
* Paste features from the clipboard
*/
void on_mActionPasteFeatures_triggered();
/**
* Toggles editing mode
*/
void on_mActionToggleEditing_toggled( bool );
/**
* Saves edits
*/
void on_mActionSaveEdits_triggered();
/**
* Reload the data
*/
void on_mActionReload_triggered();
/**
* Inverts selection
*/
void on_mActionInvertSelection_triggered();
/**
* Clears selection
*/
void on_mActionRemoveSelection_triggered();
/**
* Select all
*/
void on_mActionSelectAll_triggered();
/**
* Zooms to selected features
*/
void on_mActionZoomMapToSelectedRows_triggered();
/**
* Pans to selected features
*/
void on_mActionPanMapToSelectedRows_triggered();
/**
* Moves selected lines to the top
*/
void on_mActionSelectedToTop_toggled( bool );
/**
* Opens dialog to add new attribute
*/
void on_mActionAddAttribute_triggered();
/**
* Opens dialog to remove attribute
*/
void on_mActionRemoveAttribute_triggered();
/**
* Opens field calculator dialog
*/
void on_mActionOpenFieldCalculator_triggered();
/**
* deletes the selected features
*/
void on_mActionDeleteSelected_triggered();
/**
* Called when the current index changes in the main view
* i.e. when the view mode is switched from table to form view
* or vice versa.
*
* Will adjust the button state
*/
void on_mMainView_currentChanged( int );
/**
* add feature
*/
void on_mActionAddFeature_triggered();
void on_mActionExpressionSelect_triggered();
void filterColumnChanged( QObject *filterAction );
void filterExpressionBuilder();
void filterShowAll();
void filterSelected();
void filterVisible();
void filterEdited();
void filterQueryChanged( const QString &query );
void filterQueryAccepted();
void openConditionalStyles();
/**
* update window title
*/
void updateTitle();
void updateButtonStatus( const QString &fieldName, bool isValid );
/* replace the search widget with a new one */
void replaceSearchWidget( QWidget *oldw, QWidget *neww );
void layerActionTriggered();
signals:
/**
* Informs that edits should be saved
* @param layer layer whose edits are to be saved
*/
void saveEdits( QgsMapLayer *layer );
protected:
/**
* Handle closing of the window
* @param event unused
*/
void closeEvent( QCloseEvent *event ) override;
/*
* Handle KeyPress event of the window
* @param event
*/
void keyPressEvent( QKeyEvent *event ) override;
private slots:
/**
* Initialize column box
*/
void columnBoxInit();
void runFieldCalculation( QgsVectorLayer *layer, const QString &fieldName, const QString &expression, const QgsFeatureIds &filteredIds = QgsFeatureIds() );
void updateFieldFromExpression();
void updateFieldFromExpressionSelected();
void viewModeChanged( QgsAttributeForm::Mode mode );
void formFilterSet( const QString &filter, QgsAttributeForm::FilterType type );
private:
QMenu *mMenuActions = nullptr;
QgsDockWidget *mDock = nullptr;
QgsDistanceArea *myDa = nullptr;
QMenu *mFilterColumnsMenu = nullptr;
QSignalMapper *mFilterActionMapper = nullptr;
QgsVectorLayer *mLayer = nullptr;
QgsSearchWidgetWrapper *mCurrentSearchWidgetWrapper = nullptr;
QStringList mVisibleFields;
QgsAttributeEditorContext mEditorContext;
void updateMultiEditButtonState();
friend class TestQgsAttributeTable;
};
class QgsAttributeTableDock : public QgsDockWidget
{
Q_OBJECT
public:
QgsAttributeTableDock( const QString &title, QWidget *parent = nullptr, Qt::WindowFlags flags = 0 );
virtual void closeEvent( QCloseEvent *ev ) override;
};
#endif