mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-04 00:04:25 -05:00 
			
		
		
		
	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
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			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 );
 | 
						|
};
 |