mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-10-31 00:06:02 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			145 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			145 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| /************************************************************************
 | |
|  * This file has been generated automatically from                      *
 | |
|  *                                                                      *
 | |
|  * src/core/qgserror.h                                                  *
 | |
|  *                                                                      *
 | |
|  * Do not edit manually ! Edit header and run scripts/sipify.pl again   *
 | |
|  ************************************************************************/
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| class QgsErrorMessage
 | |
| {
 | |
| %Docstring
 | |
| QgsErrorMessage represents single error message.
 | |
| %End
 | |
| 
 | |
| %TypeHeaderCode
 | |
| #include "qgserror.h"
 | |
| %End
 | |
|   public:
 | |
|     enum Format
 | |
|     {
 | |
|       Text,
 | |
|       Html
 | |
|     };
 | |
| 
 | |
|     QgsErrorMessage();
 | |
| %Docstring
 | |
| Constructor for QgsErrorMessage
 | |
| %End
 | |
| 
 | |
|     QgsErrorMessage( const QString &message, const QString &tag = QString(), const QString &file = QString(), const QString &function = QString(), int line = 0 );
 | |
| %Docstring
 | |
| Constructor.
 | |
| 
 | |
| :param message: error message string
 | |
| :param tag: error label, for example GDAL, GDAL Provider, Raster layer
 | |
| :param file: the file where error was created
 | |
| :param function: the function where error was created
 | |
| :param line: the line where error was created
 | |
| %End
 | |
| 
 | |
|     QString message() const;
 | |
|     QString tag() const;
 | |
|     QString file() const;
 | |
|     QString function() const;
 | |
|     int line() const;
 | |
| 
 | |
| };
 | |
| 
 | |
| class QgsError
 | |
| {
 | |
| %Docstring
 | |
| QgsError is container for error messages (report). It may contain chain
 | |
| (sort of traceback) of error messages (e.g. GDAL - provider - layer).
 | |
| Higher level messages are appended at the end.
 | |
| %End
 | |
| 
 | |
| %TypeHeaderCode
 | |
| #include "qgserror.h"
 | |
| %End
 | |
|   public:
 | |
| 
 | |
|     QgsError();
 | |
| %Docstring
 | |
| Constructor for QgsError
 | |
| %End
 | |
| 
 | |
|     QgsError( const QString &message, const QString &tag );
 | |
| %Docstring
 | |
| Constructor with single message.
 | |
| 
 | |
| :param message: error message
 | |
| :param tag: short description, e.g. GDAL, Provider, Layer
 | |
| %End
 | |
| 
 | |
|     void append( const QString &message, const QString &tag );
 | |
| %Docstring
 | |
| Append new error message.
 | |
| 
 | |
| :param message: error message string
 | |
| :param tag: error label, for example GDAL, GDAL Provider, Raster layer
 | |
| %End
 | |
| 
 | |
|     void append( const QgsErrorMessage &message );
 | |
| %Docstring
 | |
| Append new error message.
 | |
| 
 | |
| :param message: error message
 | |
| %End
 | |
| 
 | |
|     bool isEmpty() const;
 | |
| %Docstring
 | |
| Test if any error is set.
 | |
| 
 | |
| :return: ``True`` if contains error
 | |
| %End
 | |
| 
 | |
|     QString message( QgsErrorMessage::Format format = QgsErrorMessage::Html ) const;
 | |
| %Docstring
 | |
| Full error messages description
 | |
| 
 | |
| :param format: output format
 | |
| 
 | |
| :return: error report
 | |
| %End
 | |
| 
 | |
|     QString summary() const;
 | |
| %Docstring
 | |
| Short error description, usually the first error in chain, the real error.
 | |
| 
 | |
| :return: error description
 | |
| %End
 | |
| 
 | |
|     void clear();
 | |
| %Docstring
 | |
| Clear error messages
 | |
| %End
 | |
| 
 | |
|     QList<QgsErrorMessage> messageList() const;
 | |
| %Docstring
 | |
| messageList return the list of current error messages
 | |
| 
 | |
| :return: current list of error messages
 | |
| %End
 | |
| 
 | |
| 
 | |
|     SIP_PYOBJECT __repr__();
 | |
| %MethodCode
 | |
|     QString str = QStringLiteral( "<QgsError: %1>" ).arg( sipCpp->message( QgsErrorMessage::Text ) );
 | |
|     sipRes = PyUnicode_FromString( str.toUtf8().constData() );
 | |
| %End
 | |
| 
 | |
| };
 | |
| 
 | |
| /************************************************************************
 | |
|  * This file has been generated automatically from                      *
 | |
|  *                                                                      *
 | |
|  * src/core/qgserror.h                                                  *
 | |
|  *                                                                      *
 | |
|  * Do not edit manually ! Edit header and run scripts/sipify.pl again   *
 | |
|  ************************************************************************/
 |