Skip to content

Commit

Permalink
[Fixes #8982] adds python bindings for actionZoomNext method
Browse files Browse the repository at this point in the history
update to autocompletion file
  • Loading branch information
slarosa committed Nov 2, 2013
1 parent a7a4452 commit 169f646
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions python/gui/qgisinterface.sip
Expand Up @@ -414,6 +414,7 @@ class QgisInterface : QObject
virtual QAction *actionZoomToLayer() = 0;
virtual QAction *actionZoomToSelected() = 0;
virtual QAction *actionZoomLast() = 0;
virtual QAction *actionZoomNext() = 0;
virtual QAction *actionZoomActualSize() = 0;
virtual QAction *actionMapTips() = 0;
virtual QAction *actionNewBookmark() = 0;
Expand Down
Binary file modified python/qsci_apis/pyqgis.pap
Binary file not shown.
2 changes: 2 additions & 0 deletions src/gui/qgisinterface.h
Expand Up @@ -485,6 +485,8 @@ class GUI_EXPORT QgisInterface : public QObject
virtual QAction *actionZoomToSelected() = 0;
//! Get access to the native zoom last action. Call trigger() on it to zoom to last.
virtual QAction *actionZoomLast() = 0;
//! Get access to the native zoom next action. Call trigger() on it to zoom to next.
virtual QAction *actionZoomNext() = 0;
//! Get access to the native zoom actual size action. Call trigger() on it to zoom to actual size.
virtual QAction *actionZoomActualSize() = 0;
//! Get access to the native map tips action. Call trigger() on it to toggle map tips.
Expand Down

0 comments on commit 169f646

Please sign in to comment.