QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgscustomdrophandler.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgscustomdrophandler.cpp
3  ---------------------
4  begin : August 2016
5  copyright : (C) 2016 by Martin Dobias
6  email : wonder dot sk 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 #include "qgscustomdrophandler.h"
17 
19 {
20  return QString();
21 }
22 
24 {
25  Q_UNUSED( uri );
26 }
27 
28 void QgsCustomDropHandler::handleMimeData( const QMimeData *data )
29 {
30  Q_UNUSED( data );
31 }
32 
33 bool QgsCustomDropHandler::handleFileDrop( const QString &file )
34 {
35  Q_UNUSED( file );
36  return false;
37 }
virtual void handleCustomUriDrop(const QgsMimeDataUtils::Uri &uri) const
Called from QGIS after a drop event with custom URI known by the handler.
virtual QString customUriProviderKey() const
Type of custom URI recognized by the handler.
virtual void handleMimeData(const QMimeData *data)
Called when the specified mime data has been dropped onto QGIS.
virtual bool handleFileDrop(const QString &file)
Called when the specified file has been dropped onto QGIS.