mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
46 lines
1.5 KiB
Plaintext
46 lines
1.5 KiB
Plaintext
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/gui/qgsmapcanvasinteractionblocker.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
class QgsMapCanvasInteractionBlocker
|
|
{
|
|
%Docstring
|
|
An interface for objects which block interactions with a QgsMapCanvas.
|
|
|
|
.. versionadded:: 3.14
|
|
%End
|
|
|
|
%TypeHeaderCode
|
|
#include "qgsmapcanvasinteractionblocker.h"
|
|
%End
|
|
public:
|
|
|
|
enum class Interaction
|
|
{
|
|
MapPanOnSingleClick,
|
|
};
|
|
|
|
virtual ~QgsMapCanvasInteractionBlocker();
|
|
|
|
virtual bool blockCanvasInteraction( Interaction interaction ) const = 0;
|
|
%Docstring
|
|
Returns ``True`` if the specified ``interaction`` should be blocked.
|
|
%End
|
|
|
|
};
|
|
|
|
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/gui/qgsmapcanvasinteractionblocker.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|