QAbstractMessageHandler¶
The
QAbstractMessageHandler
class provides a callback interface for handling messages. More…
Synopsis¶
Functions¶
def
message
(type, description[, identifier=QUrl()[, sourceLocation=QSourceLocation()]])
Virtual functions¶
def
handleMessage
(type, description, identifier, sourceLocation)
Detailed Description¶
QAbstractMessageHandler
is an abstract base class that provides a callback interface for handling messages. For example, classQXmlQuery
parses and runs an XQuery . When it detects a compile or runtime error, it generates an appropriate error message, but rather than output the message itself, it passes the message to themessage()
function of itsQAbstractMessageHandler
. SeesetMessageHandler()
.You create a message handler by subclassing
QAbstractMessageHandler
and implementinghandleMessage()
. You then pass a pointer to an instance of your subclass to any classes that must generate messages. The messages are sent to the message handler via themessage()
function, which forwards them to your handleMessge().A single instance of
QAbstractMessageHandler
can be called on to handle messages from multiple sources. Hence, the content of a message, which is the description parameter passed tomessage()
andhandleMessage()
, must be interpreted in light of the context that required the message to be sent. That context is specified by the identifier and sourceLocation parameters tomessage()
handleMessage()
.
- class PySide2.QtXmlPatterns.QAbstractMessageHandler([parent=None])¶
- param parent:
Constructs a
QAbstractMessageHandler
. Theparent
is passed to theQObject
base class constructor.
- PySide2.QtXmlPatterns.QAbstractMessageHandler.handleMessage(type, description, identifier, sourceLocation)¶
- Parameters:
type –
QtMsgType
description – str
identifier –
PySide2.QtCore.QUrl
sourceLocation –
PySide2.QtXmlPatterns.QSourceLocation
This function must be implemented by the sub-class.
message()
will call this function, passing in its parameters,type
,description
,identifier
andsourceLocation
unmodified.This function can potentially be called from multiple threads. It’s the reimplementation’s responsibility to ensure thread safety.
- PySide2.QtXmlPatterns.QAbstractMessageHandler.message(type, description[, identifier=QUrl()[, sourceLocation=QSourceLocation()]])¶
- Parameters:
type –
QtMsgType
description – str
identifier –
PySide2.QtCore.QUrl
sourceLocation –
PySide2.QtXmlPatterns.QSourceLocation
Sends a message to this message handler.
type
is the kind of message being sent.description
is the message content. Theidentifier
is a URI that identifies the message and is the key to interpreting the other arguments.Typically, this class is used for reporting errors, as is the case for
QXmlQuery
, which uses aQAbstractMessageHandler
to report compile and runtime XQuery errors. Hence, using aQUrl
as the messageidentifier
is was inspired by the explanation of error handling in the XQuery language. Because theidentifier
is composed of a namespace URI and a local part, identifiers with the same local part are unique. The caller is responsible for ensuring thatidentifier
is either a validQUrl
or a default constructedQUrl
.sourceLocation
identifies a location in a resource (i.e., file or document) where the need for reporting a message was detected.This function unconditionally calls
handleMessage()
, passing all its parameters unmodified.See also
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.