2012-09-24 02:28:15 +02:00
|
|
|
class QgsLabelSearchTree
|
|
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
|
|
#include <qgslabelsearchtree.h>
|
|
|
|
%End
|
|
|
|
|
|
|
|
public:
|
|
|
|
QgsLabelSearchTree();
|
|
|
|
~QgsLabelSearchTree();
|
|
|
|
|
2015-07-29 11:52:14 +02:00
|
|
|
/** Removes and deletes all the entries*/
|
2012-09-24 02:28:15 +02:00
|
|
|
void clear();
|
|
|
|
|
2015-07-29 11:52:14 +02:00
|
|
|
/** Returns label position(s) at a given point. QgsLabelSearchTree keeps ownership, don't delete the LabelPositions
|
2014-01-27 09:22:24 +01:00
|
|
|
* @note not available in python bindings
|
|
|
|
* TODO: why does this break bindings with QList<QgsLabelPosition>?
|
|
|
|
*/
|
2014-05-27 23:22:50 +02:00
|
|
|
// void label( const QgsPoint& p, QList<QgsLabelPosition*>& posList ) const;
|
2012-09-24 02:28:15 +02:00
|
|
|
|
2015-07-29 11:52:14 +02:00
|
|
|
/** Returns label position(s) in given rectangle. QgsLabelSearchTree keeps ownership, don't delete the LabelPositions
|
2014-01-27 09:22:24 +01:00
|
|
|
* @note not available in python bindings
|
|
|
|
* TODO: why does this break bindings with QList<QgsLabelPosition>?
|
|
|
|
*/
|
2014-05-27 23:22:50 +02:00
|
|
|
// void labelsInRect( const QgsRectangle& r, QList<QgsLabelPosition*>& posList ) const;
|
2012-09-24 02:28:15 +02:00
|
|
|
|
2015-07-29 11:52:14 +02:00
|
|
|
/** Inserts label position. Does not take ownership of labelPos
|
2014-01-27 09:22:24 +01:00
|
|
|
* @return true in case of success
|
|
|
|
* @note not available in python bindings
|
|
|
|
*/
|
2012-09-24 02:28:15 +02:00
|
|
|
// bool insertLabel( LabelPosition* labelPos, int featureId, const QString& layerName, bool diagram = false, bool pinned = false );
|
2016-01-22 18:45:45 +11:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
QgsLabelSearchTree( const QgsLabelSearchTree& rh );
|
2012-09-24 02:28:15 +02:00
|
|
|
};
|