QGIS/python/core/qgslabelsearchtree.sip
Nyall Dawson 752f6bd150 Fix classes which violate rule of three, by implementing required
copy/= operators or making them private

This revealed (and fixes) some issues, including a potential crash
using server access control (refs #13919), and a potential crash with
diagrams
2016-01-22 18:45:45 +11:00

36 lines
1.2 KiB
Plaintext

class QgsLabelSearchTree
{
%TypeHeaderCode
#include <qgslabelsearchtree.h>
%End
public:
QgsLabelSearchTree();
~QgsLabelSearchTree();
/** Removes and deletes all the entries*/
void clear();
/** 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>?
*/
// void label( const QgsPoint& p, QList<QgsLabelPosition*>& posList ) const;
/** 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>?
*/
// void labelsInRect( const QgsRectangle& r, QList<QgsLabelPosition*>& posList ) const;
/** Inserts label position. Does not take ownership of labelPos
* @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 );
private:
QgsLabelSearchTree( const QgsLabelSearchTree& rh );
};