QGIS/python/PyQt6/core/auto_generated/qgsmessagelog.sip.in
2025-04-11 10:28:38 +10:00

160 lines
5.0 KiB
Plaintext

/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsmessagelog.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsMessageLog : QObject
{
%Docstring(signature="appended")
Interface for logging messages from QGIS in GUI independent way.
This class provides abstraction of a tabbed window for showing messages
to the user. By default :py:class:`QgsMessageLogOutput` will be used if
not overridden with another message log creator function.
QGIS application uses :py:class:`QgsMessageLog` class for logging
messages in a dockable window for the user.
:py:class:`QgsMessageLog` is not usually directly created, but rather
accessed through :py:func:`QgsApplication.messageLog()`.
%End
%TypeHeaderCode
#include "qgsmessagelog.h"
%End
public:
QgsMessageLog();
static void logMessage( const QString &message, const QString &tag = QString(), Qgis::MessageLevel level = Qgis::MessageLevel::Warning, bool notifyUser = true,
const char *file = __builtin_FILE(), const char *function = __builtin_FUNCTION(), int line = __builtin_LINE() );
%Docstring
Adds a ``message`` to the log instance (and creates it if necessary).
If ``notifyUser`` is ``True``, then the message should be brought to the
user's attention by various UI hints. If it is ``False``, the message
should appear in logs silently. Note that log viewer implementations may
only respect notification hints for certain message levels.
%End
signals:
void messageReceived( const QString &message, const QString &tag, Qgis::MessageLevel level );
%Docstring
Emitted whenever the log receives a ``message``.
This signal is emitted for all messages received by the log, regardless
of the ``notifyUser`` flag's value for the message.
%End
void messageReceived( bool received );
%Docstring
Emitted whenever the log receives a message which is not a
:py:class:`Qgis`.MessageLevel.Info level message and which has the
``notifyUser`` flag as ``True``.
If :py:class:`QgsMessageLogNotifyBlocker` objects have been created then
this signal may be temporarily suppressed.
.. seealso:: :py:class:`QgsMessageLogNotifyBlocker`
%End
};
class QgsMessageLogNotifyBlocker
{
%Docstring(signature="appended")
Temporarily blocks the application :py:class:`QgsMessageLog` (see
:py:func:`QgsApplication.messageLog()`) from emitting the
messageReceived( bool ) signal for the lifetime of the object.
Using this blocker allows messages to be logged without causing user
interface hints flagging message log errors to be created.
:py:class:`QgsMessageLogNotifyBlocker` supports "stacked" blocking, so
two :py:class:`QgsMessageLogNotifyBlocker` created will both need to be
destroyed before the messageReceived( bool ) signal is emitted again.
.. versionadded:: 3.2
%End
%TypeHeaderCode
#include "qgsmessagelog.h"
%End
public:
QgsMessageLogNotifyBlocker();
%Docstring
Constructor for QgsMessageLogNotifyBlocker.
This will block the log from emitting the messageReceived( bool ) signal
for the lifetime of this object.
%End
~QgsMessageLogNotifyBlocker();
private:
QgsMessageLogNotifyBlocker( const QgsMessageLogNotifyBlocker &other );
};
class QgsMessageLogConsole : QObject
{
%Docstring(signature="appended")
Default implementation of message logging interface.
This class outputs log messages to the standard error. Therefore it
might be the right choice for applications without GUI.
%End
%TypeHeaderCode
#include "qgsmessagelog.h"
%End
public:
QgsMessageLogConsole();
%Docstring
Constructor for QgsMessageLogConsole.
%End
protected:
QString formatLogMessage( const QString &message, const QString &tag, Qgis::MessageLevel level = Qgis::MessageLevel::Info ) const;
%Docstring
Formats a log message. Used by child classes.
:param message: the message to format
:param tag: the tag of the message
:param level: the log level of the message
.. versionadded:: 3.4
%End
public slots:
virtual void logMessage( const QString &message, const QString &tag, Qgis::MessageLevel level );
%Docstring
Logs a message to stderr.
:param message: the message to format
:param tag: the tag of the message
:param level: the log level of the message
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsmessagelog.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/