[Fixes #8982] adds python bindings for actionZoomNext method

update to autocompletion file
This commit is contained in:
Salvatore Larosa 2013-11-02 16:57:12 +01:00
parent a7a4452e79
commit 169f646f7c
3 changed files with 3 additions and 0 deletions

View File

@ -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;

Binary file not shown.

View File

@ -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.