QGIS API Documentation  3.14.0-Pi (9f7028fd23)
qgslayoutdesignerinterface.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgslayoutdesignerinterface.h
3  ---------------------
4  Date : July 2017
5  Copyright : (C) 2017 Nyall Dawson
6  Email : nyall dot dawson at gmail dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #ifndef QGSLAYOUTDESIGNERINTERFACE_H
17 #define QGSLAYOUTDESIGNERINTERFACE_H
18 
19 #include "qgis_gui.h"
20 #include "qgis_sip.h"
21 #include <QObject>
22 
23 class QgsLayout;
24 class QgsLayoutView;
25 class QgsLayoutItem;
26 class QgsMessageBar;
27 class QgsFeature;
29 class QMenu;
30 class QDockWidget;
31 class QToolBar;
32 
54 class GUI_EXPORT QgsLayoutDesignerInterface: public QObject
55 {
56 
57 #ifdef SIP_RUN
59  if ( qobject_cast<QgsLayoutDesignerInterface *>( sipCpp ) )
60  sipType = sipType_QgsLayoutDesignerInterface;
61  else
62  sipType = NULL;
63  SIP_END
64 #endif
65 
66  Q_OBJECT
67 
68  public:
69 
72  {
75  };
76 
80  QgsLayoutDesignerInterface( QObject *parent SIP_TRANSFERTHIS = nullptr )
81  : QObject( parent )
82  {}
83 
88  virtual QgsLayout *layout() = 0;
89 
94  virtual QgsMasterLayoutInterface *masterLayout() = 0;
95 
101  virtual QWidget *window() = 0;
102 
107  virtual QgsLayoutView *view() = 0;
108 
112  virtual QgsMessageBar *messageBar() = 0;
113 
117  virtual void selectItems( const QList< QgsLayoutItem * > &items ) = 0;
118 
125  virtual void setAtlasPreviewEnabled( bool enabled ) = 0;
126 
133  virtual bool atlasPreviewEnabled() const = 0;
134 
140  virtual void setAtlasFeature( const QgsFeature &feature ) = 0;
141 
150  virtual void showItemOptions( QgsLayoutItem *item, bool bringPanelToFront = true ) = 0;
151 
152  // Menus and toolbars
153 
168  virtual QMenu *layoutMenu() = 0;
169 
184  virtual QMenu *editMenu() = 0;
185 
200  virtual QMenu *viewMenu() = 0;
201 
216  virtual QMenu *itemsMenu() = 0;
217 
234  virtual QMenu *atlasMenu() = 0;
235 
252  virtual QMenu *reportMenu() = 0;
253 
268  virtual QMenu *settingsMenu() = 0;
269 
281  virtual QToolBar *layoutToolbar() = 0;
282 
294  virtual QToolBar *navigationToolbar() = 0;
295 
307  virtual QToolBar *actionsToolbar() = 0;
308 
323  virtual QToolBar *atlasToolbar() = 0;
324 
334  virtual void addDockWidget( Qt::DockWidgetArea area, QDockWidget *dock ) = 0;
335 
345  virtual void removeDockWidget( QDockWidget *dock ) = 0;
346 
352  virtual void activateTool( StandardTool tool ) = 0;
353 
354  public slots:
355 
359  virtual void close() = 0;
360 
366  virtual void showRulers( bool visible ) = 0;
367 
368 
369 };
370 
371 #endif // QGSLAYOUTDESIGNERINTERFACE_H
QgsLayoutDesignerInterface::ToolMoveItemNodes
@ ToolMoveItemNodes
Move item nodes tool.
Definition: qgslayoutdesignerinterface.h:74
QgsLayoutDesignerInterface::QgsLayoutDesignerInterface
QgsLayoutDesignerInterface(QObject *parent=nullptr)
Constructor for QgsLayoutDesignerInterface.
Definition: qgslayoutdesignerinterface.h:80
QgsLayoutDesignerInterface::ToolMoveItemContent
@ ToolMoveItemContent
Move item content tool.
Definition: qgslayoutdesignerinterface.h:73
SIP_CONVERT_TO_SUBCLASS_CODE
#define SIP_CONVERT_TO_SUBCLASS_CODE(code)
Definition: qgis_sip.h:172
qgis_sip.h
QgsMessageBar
Definition: qgsmessagebar.h:60
QgsLayoutDesignerInterface::StandardTool
StandardTool
Standard designer tools which are always available for use.
Definition: qgslayoutdesignerinterface.h:71
QgsLayoutItem
Base class for graphical items within a QgsLayout.
Definition: qgslayoutitem.h:112
QgsLayout
Base class for layouts, which can contain items such as maps, labels, scalebars, etc.
Definition: qgslayout.h:49
QgsLayoutDesignerInterface
Definition: qgslayoutdesignerinterface.h:54
QgsLayoutView
Definition: qgslayoutview.h:49
QgsFeature
Definition: qgsfeature.h:55
QgsMasterLayoutInterface
Interface for master layout type objects, such as print layouts and reports.
Definition: qgsmasterlayoutinterface.h:42
SIP_END
#define SIP_END
Definition: qgis_sip.h:189
SIP_TRANSFERTHIS
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:53