mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-08 00:05:09 -04:00
[Fixes #8982] adds python bindings for actionZoomNext method
update to autocompletion file
This commit is contained in:
parent
a7a4452e79
commit
169f646f7c
@ -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.
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user