QGIS/python/core/qgslabelsearchtree.sip

32 lines
1.1 KiB
Plaintext
Raw Normal View History

class QgsLabelSearchTree
{
%TypeHeaderCode
#include <qgslabelsearchtree.h>
%End
public:
QgsLabelSearchTree();
~QgsLabelSearchTree();
/**Removes and deletes all the entries*/
void clear();
2014-01-27 09:22:24 +01:00
/**Returns label position(s) at a given point. QgsLabelSearchTree keeps ownership, don't delete the LabelPositions
* @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;
2014-01-27 09:22:24 +01:00
/**Returns label position(s) in given rectangle. QgsLabelSearchTree keeps ownership, don't delete the LabelPositions
* @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;
/**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
*/
// bool insertLabel( LabelPosition* labelPos, int featureId, const QString& layerName, bool diagram = false, bool pinned = false );
};