mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
Add binding to iface for action to show composer manager
This commit is contained in:
parent
6e2f613382
commit
f28ca59632
@ -300,6 +300,7 @@ class QgisInterface : QObject
|
||||
virtual QAction *actionSaveMapAsImage() = 0;
|
||||
virtual QAction *actionProjectProperties() = 0;
|
||||
virtual QAction *actionPrintComposer() = 0;
|
||||
virtual QAction *actionShowComposerManager() = 0;
|
||||
virtual QAction *actionExit() = 0;
|
||||
|
||||
//! Edit menu actions
|
||||
|
@ -394,6 +394,7 @@ QAction *QgisAppInterface::actionSaveProjectAs() { return qgis->actionSaveProjec
|
||||
QAction *QgisAppInterface::actionSaveMapAsImage() { return qgis->actionSaveMapAsImage(); }
|
||||
QAction *QgisAppInterface::actionProjectProperties() { return qgis->actionProjectProperties(); }
|
||||
QAction *QgisAppInterface::actionPrintComposer() { return qgis->actionNewPrintComposer(); }
|
||||
QAction *QgisAppInterface::actionShowComposerManager() { return qgis->actionShowComposerManager(); }
|
||||
QAction *QgisAppInterface::actionExit() { return qgis->actionExit(); }
|
||||
|
||||
//! Edit menu actions
|
||||
|
@ -250,6 +250,7 @@ class QgisAppInterface : public QgisInterface
|
||||
virtual QAction *actionSaveMapAsImage();
|
||||
virtual QAction *actionProjectProperties();
|
||||
virtual QAction *actionPrintComposer();
|
||||
virtual QAction *actionShowComposerManager();
|
||||
virtual QAction *actionExit();
|
||||
|
||||
//! Edit menu actions
|
||||
|
@ -349,6 +349,7 @@ class GUI_EXPORT QgisInterface : public QObject
|
||||
virtual QAction *actionSaveMapAsImage() = 0;
|
||||
virtual QAction *actionProjectProperties() = 0;
|
||||
virtual QAction *actionPrintComposer() = 0;
|
||||
virtual QAction *actionShowComposerManager() = 0;
|
||||
virtual QAction *actionExit() = 0;
|
||||
|
||||
//! Edit menu actions
|
||||
|
Loading…
x
Reference in New Issue
Block a user