QGIS/python/core/qgsmaphittest.sip

73 lines
2.6 KiB
Plaintext
Raw Normal View History

2017-05-14 09:48:41 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsmaphittest.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
class QgsMapHitTest
{
2017-05-14 09:48:41 +02:00
%Docstring
Class that runs a hit test with given map settings. Based on the hit test it returns which symbols
will be visible on the map - this is useful for content based legend.
.. versionadded:: 2.6
%End
2017-05-14 09:48:41 +02:00
%TypeHeaderCode
#include "qgsmaphittest.h"
%End
public:
typedef QMap<QString, QString> LayerFilterExpression;
2017-05-14 18:24:07 +02:00
QgsMapHitTest( const QgsMapSettings &settings, const QgsGeometry &polygon = QgsGeometry(), const QgsMapHitTest::LayerFilterExpression &layerFilterExpression = QgsMapHitTest::LayerFilterExpression() );
2017-05-14 09:48:41 +02:00
%Docstring
\param settings Map settings used to evaluate symbols
\param polygon Polygon geometry to refine the hit test
\param layerFilterExpression Expression string for each layer id to evaluate in order to refine the symbol selection
2017-05-14 09:48:41 +02:00
%End
2017-05-14 18:24:07 +02:00
QgsMapHitTest( const QgsMapSettings &settings, const QgsMapHitTest::LayerFilterExpression &layerFilterExpression );
2017-05-14 09:48:41 +02:00
%Docstring
Constructor version used with only expressions to filter symbols (no extent or polygon intersection)
%End
void run();
2017-05-14 09:48:41 +02:00
%Docstring
Runs the map hit test
%End
bool symbolVisible( QgsSymbol *symbol, QgsVectorLayer *layer ) const;
2017-05-14 09:48:41 +02:00
%Docstring
Tests whether a symbol is visible for a specified layer.
\param symbol symbol to find
\param layer vector layer
.. versionadded:: 2.12
.. seealso:: legendKeyVisible()
:rtype: bool
%End
bool legendKeyVisible( const QString &ruleKey, QgsVectorLayer *layer ) const;
2017-05-14 09:48:41 +02:00
%Docstring
Tests whether a given legend key is visible for a specified layer.
\param ruleKey legend rule key
\param layer vector layer
.. versionadded:: 2.14
.. seealso:: symbolVisible()
:rtype: bool
%End
};
2017-05-14 09:48:41 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsmaphittest.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/