QGIS API Documentation  3.37.0-Master (a5b4d9743e8)
qgslayoutcustomdrophandler.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgslayoutcustomdrophandler.h
3  ---------------------
4  begin : December 2017
5  copyright : (C) 2017 by 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 QGSLAYOUTCUSTOMDROPHANDLER_H
17 #define QGSLAYOUTCUSTOMDROPHANDLER_H
18 
19 #include "qgis_gui.h"
20 #include "qgis_sip.h"
21 #include <QObject>
22 
24 class QMimeData;
25 class QgsLayoutItem;
26 
32 class GUI_EXPORT QgsLayoutCustomDropHandler : public QObject
33 {
34  Q_OBJECT
35 
36  public:
37 
41  QgsLayoutCustomDropHandler( QObject *parent SIP_TRANSFERTHIS = nullptr );
42 
52  Q_DECL_DEPRECATED virtual bool handleFileDrop( QgsLayoutDesignerInterface *iface, const QString &file ) SIP_DEPRECATED;
53 
66  virtual bool handleFileDrop( QgsLayoutDesignerInterface *iface, QPointF dropPoint, const QString &file );
67 
87  virtual bool handlePaste( QgsLayoutDesignerInterface *iface, QPointF pastePoint, const QMimeData *data, QList< QgsLayoutItem * > &pastedItems SIP_OUT );
88 };
89 
90 
91 #endif // QGSLAYOUTCUSTOMDROPHANDLER_H
Abstract base class that may be implemented to handle new types of data to be dropped or pasted in QG...
A common interface for layout designer dialogs and widgets.
Base class for graphical items within a QgsLayout.
#define SIP_DEPRECATED
Definition: qgis_sip.h:106
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:53
#define SIP_OUT
Definition: qgis_sip.h:58