File tree Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Expand file tree Collapse file tree 4 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,10 @@ class QgisInterface : QObject
182
182
virtual QAction *actionMoveVertex() = 0;
183
183
virtual QAction *actionAddRing() = 0;
184
184
virtual QAction *actionAddIsland() = 0;
185
+ virtual QAction *actionSimplifyFeature() = 0;
186
+ virtual QAction *actionDeleteRing() = 0;
187
+ virtual QAction *actionDeletePart() = 0;
188
+ virtual QAction *actionNodeTool() = 0;
185
189
virtual QAction *actionEditSeparator2() = 0;
186
190
187
191
//! View menu actions
Original file line number Diff line number Diff line change @@ -274,6 +274,10 @@ QAction *QgisAppInterface::actionDeleteVertex() { return 0; }
274
274
QAction *QgisAppInterface::actionMoveVertex () { return 0 ; }
275
275
QAction *QgisAppInterface::actionAddRing () { return qgis->actionAddRing (); }
276
276
QAction *QgisAppInterface::actionAddIsland () { return qgis->actionAddIsland (); }
277
+ QAction *QgisAppInterface::actionSimplifyFeature () { return qgis->actionSimplifyFeature (); }
278
+ QAction *QgisAppInterface::actionDeleteRing () { return qgis->actionDeleteRing (); }
279
+ QAction *QgisAppInterface::actionDeletePart () { return qgis->actionDeletePart (); }
280
+ QAction *QgisAppInterface::actionNodeTool () { return qgis->actionNodeTool (); }
277
281
QAction *QgisAppInterface::actionEditSeparator2 () { return qgis->actionEditSeparator2 (); }
278
282
279
283
// ! View menu actions
Original file line number Diff line number Diff line change @@ -187,6 +187,10 @@ class QgisAppInterface : public QgisInterface
187
187
virtual QAction *actionMoveVertex ();
188
188
virtual QAction *actionAddRing ();
189
189
virtual QAction *actionAddIsland ();
190
+ virtual QAction *actionSimplifyFeature ();
191
+ virtual QAction *actionDeleteRing ();
192
+ virtual QAction *actionDeletePart ();
193
+ virtual QAction *actionNodeTool ();
190
194
virtual QAction *actionEditSeparator2 ();
191
195
192
196
// ! View menu actions
Original file line number Diff line number Diff line change @@ -228,6 +228,10 @@ class GUI_EXPORT QgisInterface : public QObject
228
228
virtual QAction *actionMoveVertex () = 0;
229
229
virtual QAction *actionAddRing () = 0;
230
230
virtual QAction *actionAddIsland () = 0;
231
+ virtual QAction *actionSimplifyFeature () = 0;
232
+ virtual QAction *actionDeleteRing () = 0;
233
+ virtual QAction *actionDeletePart () = 0;
234
+ virtual QAction *actionNodeTool () = 0;
231
235
virtual QAction *actionEditSeparator2 () = 0;
232
236
233
237
// ! View menu actions
You can’t perform that action at this time.
0 commit comments