Skip to content

Commit 169f646

Browse files
committedNov 2, 2013
[Fixes #8982] adds python bindings for actionZoomNext method
update to autocompletion file
1 parent a7a4452 commit 169f646

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed
 

‎python/gui/qgisinterface.sip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,7 @@ class QgisInterface : QObject
414414
virtual QAction *actionZoomToLayer() = 0;
415415
virtual QAction *actionZoomToSelected() = 0;
416416
virtual QAction *actionZoomLast() = 0;
417+
virtual QAction *actionZoomNext() = 0;
417418
virtual QAction *actionZoomActualSize() = 0;
418419
virtual QAction *actionMapTips() = 0;
419420
virtual QAction *actionNewBookmark() = 0;

‎python/qsci_apis/pyqgis.pap

2.47 KB
Binary file not shown.

‎src/gui/qgisinterface.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,8 @@ class GUI_EXPORT QgisInterface : public QObject
485485
virtual QAction *actionZoomToSelected() = 0;
486486
//! Get access to the native zoom last action. Call trigger() on it to zoom to last.
487487
virtual QAction *actionZoomLast() = 0;
488+
//! Get access to the native zoom next action. Call trigger() on it to zoom to next.
489+
virtual QAction *actionZoomNext() = 0;
488490
//! Get access to the native zoom actual size action. Call trigger() on it to zoom to actual size.
489491
virtual QAction *actionZoomActualSize() = 0;
490492
//! Get access to the native map tips action. Call trigger() on it to toggle map tips.

0 commit comments

Comments
 (0)
Please sign in to comment.