mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-04 00:04:25 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			95 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
/************************************************************************
 | 
						|
 * This file has been generated automatically from                      *
 | 
						|
 *                                                                      *
 | 
						|
 * src/core/raster/qgsrasteridentifyresult.h                            *
 | 
						|
 *                                                                      *
 | 
						|
 * Do not edit manually ! Edit header and run scripts/sipify.py again   *
 | 
						|
 ************************************************************************/
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
class QgsRasterIdentifyResult
 | 
						|
{
 | 
						|
%Docstring(signature="appended")
 | 
						|
Raster identify results container.
 | 
						|
%End
 | 
						|
 | 
						|
%TypeHeaderCode
 | 
						|
#include "qgsrasteridentifyresult.h"
 | 
						|
%End
 | 
						|
  public:
 | 
						|
 | 
						|
    QgsRasterIdentifyResult();
 | 
						|
 | 
						|
    QgsRasterIdentifyResult( Qgis::RasterIdentifyFormat format, const QMap<int, QVariant> &results );
 | 
						|
%Docstring
 | 
						|
Constructor. Creates valid result.
 | 
						|
 | 
						|
:param format: the result format
 | 
						|
:param results: the results
 | 
						|
%End
 | 
						|
 | 
						|
    QgsRasterIdentifyResult( const QgsError &error );
 | 
						|
%Docstring
 | 
						|
Constructor. Creates invalid result with error.
 | 
						|
 | 
						|
:param error: the error
 | 
						|
%End
 | 
						|
 | 
						|
    virtual ~QgsRasterIdentifyResult();
 | 
						|
 | 
						|
    bool isValid() const;
 | 
						|
%Docstring
 | 
						|
Returns ``True`` if valid
 | 
						|
%End
 | 
						|
 | 
						|
    Qgis::RasterIdentifyFormat format() const;
 | 
						|
%Docstring
 | 
						|
Returns the results format.
 | 
						|
%End
 | 
						|
 | 
						|
    QMap<int, QVariant> results() const;
 | 
						|
%Docstring
 | 
						|
Returns the identify results. Results are different for each format:
 | 
						|
 | 
						|
- :py:class:`Qgis`.RasterIdentifyFormat.Value: a map of values for each
 | 
						|
  band, where keys are band numbers (from 1).
 | 
						|
- :py:class:`Qgis`.RasterIdentifyFormat.Feature: a map of WMS sublayer
 | 
						|
  keys and lists of :py:class:`QgsFeatureStore` values.
 | 
						|
- :py:class:`Qgis`.RasterIdentifyFormat.Html: a map of WMS sublayer keys
 | 
						|
  and HTML strings.
 | 
						|
%End
 | 
						|
 | 
						|
    void setParams( const QMap<QString, QVariant> ¶ms );
 | 
						|
%Docstring
 | 
						|
Sets map of optional parameters
 | 
						|
%End
 | 
						|
 | 
						|
    QMap<QString, QVariant> params() const;
 | 
						|
%Docstring
 | 
						|
Gets map of optional parameters
 | 
						|
%End
 | 
						|
 | 
						|
    QgsError error() const;
 | 
						|
%Docstring
 | 
						|
Returns the last error
 | 
						|
%End
 | 
						|
 | 
						|
    void setError( const QgsError &error );
 | 
						|
%Docstring
 | 
						|
Sets the last error
 | 
						|
%End
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
 | 
						|
/************************************************************************
 | 
						|
 * This file has been generated automatically from                      *
 | 
						|
 *                                                                      *
 | 
						|
 * src/core/raster/qgsrasteridentifyresult.h                            *
 | 
						|
 *                                                                      *
 | 
						|
 * Do not edit manually ! Edit header and run scripts/sipify.py again   *
 | 
						|
 ************************************************************************/
 |