mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-27 00:33:48 -05:00
Merge pull request #194 from dakcarto/binding_labelsWithinRect
sip binding for QgsLabelingEngineInterface::labelsWithinRect()
This commit is contained in:
commit
408d2669a1
@ -28,6 +28,9 @@ public:
|
|||||||
//! return infos about labels at a given (map) position
|
//! return infos about labels at a given (map) position
|
||||||
//! @note: this method was added in version 1.7
|
//! @note: this method was added in version 1.7
|
||||||
virtual QList<QgsLabelPosition> labelsAtPosition( const QgsPoint& p )= 0;
|
virtual QList<QgsLabelPosition> labelsAtPosition( const QgsPoint& p )= 0;
|
||||||
|
//! return infos about labels within a given (map) rectangle
|
||||||
|
//! @note: this method was added in version 1.9
|
||||||
|
virtual QList<QgsLabelPosition> labelsWithinRect( const QgsRectangle& r ) = 0;
|
||||||
|
|
||||||
|
|
||||||
//! called when passing engine among map renderers
|
//! called when passing engine among map renderers
|
||||||
|
@ -89,6 +89,9 @@ class QgsLabelingEngineInterface
|
|||||||
//! return infos about labels at a given (map) position
|
//! return infos about labels at a given (map) position
|
||||||
//! @note: this method was added in version 1.7
|
//! @note: this method was added in version 1.7
|
||||||
virtual QList<QgsLabelPosition> labelsAtPosition( const QgsPoint& p ) = 0;
|
virtual QList<QgsLabelPosition> labelsAtPosition( const QgsPoint& p ) = 0;
|
||||||
|
//! return infos about labels within a given (map) rectangle
|
||||||
|
//! @note: this method was added in version 1.9
|
||||||
|
virtual QList<QgsLabelPosition> labelsWithinRect( const QgsRectangle& r ) = 0;
|
||||||
|
|
||||||
//! called when passing engine among map renderers
|
//! called when passing engine among map renderers
|
||||||
virtual QgsLabelingEngineInterface* clone() = 0;
|
virtual QgsLabelingEngineInterface* clone() = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user